|
|
|
@ -116,15 +116,15 @@
|
|
|
|
|
:row-style="{ height: '60px' }"
|
|
|
|
|
:cell-style="{ padding: '0' }"
|
|
|
|
|
>
|
|
|
|
|
<!--<el-table-column label="赋码状态" prop="cpmctymc">-->
|
|
|
|
|
<!-- <template v-slot="scope">-->
|
|
|
|
|
<!-- <div style="text-align: center;">-->
|
|
|
|
|
<!-- <el-tag :type="getTagColor(scope.row)" size="26">-->
|
|
|
|
|
<!-- {{ codingStatus }}-->
|
|
|
|
|
<!-- </el-tag>-->
|
|
|
|
|
<!-- </div>-->
|
|
|
|
|
<!-- </template>-->
|
|
|
|
|
<!--</el-table-column>-->
|
|
|
|
|
<el-table-column label="赋码状态" prop="cpmctymc">
|
|
|
|
|
<template v-slot="scope">
|
|
|
|
|
<div style="text-align: center;">
|
|
|
|
|
<el-tag :type="getTagColor(scope.row)" size="26">
|
|
|
|
|
{{ codingStatus }}
|
|
|
|
|
</el-tag>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="产品通用名" prop="cpmctymc">
|
|
|
|
|
<template v-slot="scope">
|
|
|
|
|
<div :style="{ fontSize: '16px' }">{{ scope.row.cpmctymc }}</div>
|
|
|
|
@ -417,13 +417,13 @@ export default {
|
|
|
|
|
return 'warning' // 黄色
|
|
|
|
|
}
|
|
|
|
|
if (row.scanActCount == null){
|
|
|
|
|
this.codingStatus = '未赋码'
|
|
|
|
|
return 'danger' //
|
|
|
|
|
this.codingStatus = '未赋码'
|
|
|
|
|
return 'danger' //
|
|
|
|
|
}
|
|
|
|
|
if (row.scanActCount < row.count) {
|
|
|
|
|
if (row.scanActCount < row.count) {
|
|
|
|
|
this.codingStatus = '未赋码'
|
|
|
|
|
return 'danger' // 红色
|
|
|
|
|
} else if (row.scanActCount >= row.count) {
|
|
|
|
|
} else if (row.scanActCount >= row.count) {
|
|
|
|
|
this.codingStatus = '已赋码'
|
|
|
|
|
return 'success' // 绿色
|
|
|
|
|
}
|
|
|
|
|