fix:修复

20240912_adapter
chenhc 2 months ago
parent 5212a6986f
commit ac928a91ef

@ -140,7 +140,7 @@
<el-tab-pane>
<span slot="label">单据 {{ orderData.billNo }}-业务详情</span>
<el-table :data="busDataList" style="width: 100%;" highlight-current-row="true" border ref="multipleTable"
:row-style="rowStyle"
:row-style="rowStyleBiz"
>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="产品通用名称" prop="cpmctymc" width="120"></el-table-column>
@ -321,17 +321,17 @@ export default {
},
methods: {
getScanActCountStyle(row) {
const progress = row.scanActCount / row.count;
let color;
if (progress < 0.5) {
color = 'red'; // 50%
} else if (progress < 1.0) {
color = 'orange'; // 50%100%
} else {
color = 'green'; // 100%绿
}
// const progress = row.scanActCount / row.count;
// let color;
// if (progress < 0.5) {
// color = 'red'; // 50%
// } else if (progress < 1.0) {
// color = 'orange'; // 50%100%
// } else {
// color = 'green'; // 100%绿
// }
return {
color,
// color,
fontWeight: 'bold', //
};
},
@ -982,6 +982,20 @@ export default {
return rowBackground
}
},
rowStyleBiz({row, rowIndex}) {
let rowBackground = {}
const progress = row.scanActCount / row.count;
if (row.scanActCount == null || row.scanActCount == 0) {
rowBackground.color = 'red'; // 50%
} else if (progress < 1.0) {
rowBackground.color = 'orange'; // 50%100%
} else {
rowBackground.color = 'green'; // 100%绿
}
rowBackground.height = '38px'
return rowBackground
},
watch: {
resetKey(newVal, oldVal) {
this.$refs.inputRef.focus()

Loading…
Cancel
Save