界面修改

20240912_adapter_z
yewj 7 months ago
parent 4d4b7995e5
commit 6aebccf9bc

@ -385,7 +385,7 @@ export default {
if (res.code == 20000) {
return this.$message.success(res.data)
} else {
return this.$message.error("获取错误")
return this.$message.error(res.message)
}
})
},
@ -521,8 +521,7 @@ export default {
_this.options.getBusType = getWorkPlace
if (_this.options.getBusType.length == 1) {
_this.filterQuery.busType = _this.options.getBusType[0].code
}
else {
} else {
_this.filterQuery.busType = null
}
}

@ -297,16 +297,16 @@ export default {
rowStyle({row, rowIndex}) {
let rowBackground = {};
if (row.autoTagStatus == 2) {
rowBackground.color = '#fffb00';
}else
if (row.scanActCount > row.count) {
rowBackground.color = '#000000';
}else
if (row.scanActCount < row.count) {
rowBackground.color = '#f60303';
rowBackground.color = '#F56C6C';
}
if (row.autoTagStatus == 2) {
rowBackground.color = '#E6A23C';
}
if (row.scanActCount >= row.count) {
rowBackground.color = '#67C23A';
}
rowBackground.height = "38px"
return rowBackground;
},

Loading…
Cancel
Save