| | |
| | | v-el-drag-dialog |
| | | title="工序检验明细" |
| | | :visible.sync="dialogVisible" |
| | | width="900px" |
| | | width="1100px" |
| | | :close-on-click-modal="false" |
| | | top="15vh" |
| | | @closed="handleClose" |
| | |
| | | <!-- />--> |
| | | <el-table-column |
| | | prop="checkitem_name" |
| | | label="检验项目名称" |
| | | label="检验项目" |
| | | fixed |
| | | show-tooltip-when-overflow |
| | | /> |
| | |
| | | <template slot-scope="{row}"> |
| | | <div style="display: flex;align-items: center"> |
| | | <i |
| | | :class="row.check_result==='OK'?'el-icon-success':'el-icon-error'" |
| | | :style="{color:row.check_result==='OK'?$store.state.settings.theme:'red'}" |
| | | :class="row[(index + 1) + '/' + dialogTableNumberCol].split('_')[1]==='OK'?'el-icon-success':'el-icon-error'" |
| | | :style="{color:row[(index + 1) + '/' + dialogTableNumberCol].split('_')[1]==='OK'?$store.state.settings.theme:'red'}" |
| | | style="margin-right: 2px" |
| | | /> |
| | | {{ row[(index + 1) + '/' + dialogTableNumberCol] }} |
| | | {{ row[(index + 1) + '/' + dialogTableNumberCol].split('_')[0] }} |
| | | </div> |
| | | |
| | | <!-- <!– ~当三个值都有 –>--> |