fix:修复

20240912_adapter
chenhc 2 months ago
parent 5212a6986f
commit ac928a91ef

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

Loading…
Cancel
Save