Commit 4b3098af authored by wanghao's avatar wanghao

1 标定浓度值 为 0 时 不显示问题修复

parent 9bf6ed22
...@@ -131,7 +131,7 @@ ...@@ -131,7 +131,7 @@
<!-- </el-table-column>--> <!-- </el-table-column>-->
<el-table-column label="标定浓度值" align="center" width="150"> <el-table-column label="标定浓度值" align="center" width="150">
<template slot-scope="scope"> <template slot-scope="scope">
<div class="device-code">{{ scope.row.calibrationConcentration || '-' }}</div> {{ scope.row.calibrationConcentration != null ? scope.row.calibrationConcentration : '-' }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="标定状态" align="center" width="120"> <el-table-column label="标定状态" align="center" width="120">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment