- {{
- scope.row.shouldCount === 0
- ? '无需扫码'
- : `${scope.row.scanCount}/${scope.row.shouldCount}`
- }}
+
+ 无需扫码
+
+
+ {{ scope.row.scanCount }}/{{ scope.row.shouldCount }}
@@ -384,6 +383,14 @@ export default {
return rowBackground
},
+ getCellStyle1(row) {
+ let cellStyle = {}
+ if (row.autoTagStatus == 2) {
+ cellStyle.fontSize = '30px'
+ cellStyle.color = '#E6A23C'
+ return cellStyle
+ }
+ },
getCellStyle(row) {
let cellStyle = {
fontSize: '50px'
@@ -404,13 +411,14 @@ export default {
// return { height: '60px' };
// },
getTagColor(row) {
+ if (row.autoTagStatus == 2) {
+ this.codingStatus = '预赋码'
+ return 'warning' // 黄色
+ }
if (row.scanActCount < row.count) {
this.codingStatus = '未赋码'
return 'danger' // 红色
- } else if (row.autoTagStatus == 2) {
- this.codingStatus = '预赋码'
- return 'warning' // 黄色
- } else if (row.scanActCount >= row.count) {
+ } else if (row.scanActCount >= row.count) {
this.codingStatus = '已赋码'
return 'success' // 绿色
}