|
@@ -764,6 +764,7 @@ export default {
|
|
|
viewBtn: false,
|
|
viewBtn: false,
|
|
|
delBtn: false,
|
|
delBtn: false,
|
|
|
editBtn: false,
|
|
editBtn: false,
|
|
|
|
|
+ // stripe: true,
|
|
|
menuWidth: "auto",
|
|
menuWidth: "auto",
|
|
|
align: "center",
|
|
align: "center",
|
|
|
showSummary: true,
|
|
showSummary: true,
|
|
@@ -941,7 +942,7 @@ export default {
|
|
|
label: "realName",
|
|
label: "realName",
|
|
|
value: "id"
|
|
value: "id"
|
|
|
},
|
|
},
|
|
|
- hide:true,
|
|
|
|
|
|
|
+ hide: true,
|
|
|
search: true,
|
|
search: true,
|
|
|
span: 6,
|
|
span: 6,
|
|
|
searchOrder: 7
|
|
searchOrder: 7
|
|
@@ -950,7 +951,7 @@ export default {
|
|
|
label: "OP",
|
|
label: "OP",
|
|
|
prop: "operatorName",
|
|
prop: "operatorName",
|
|
|
width: 120,
|
|
width: 120,
|
|
|
- overHidden: true,
|
|
|
|
|
|
|
+ overHidden: true
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
label: this.$t("sea118n.etd"),
|
|
label: this.$t("sea118n.etd"),
|
|
@@ -1721,7 +1722,7 @@ export default {
|
|
|
"quantityV48"
|
|
"quantityV48"
|
|
|
].includes(prop)
|
|
].includes(prop)
|
|
|
) {
|
|
) {
|
|
|
- let values = this.data.filter(item => item.billType == "MH"||item.billType == "DD").map(item => Number(item[prop] || 0));
|
|
|
|
|
|
|
+ let values = this.data.filter(item => item.billType == "MH" || item.billType == "DD").map(item => Number(item[prop] || 0));
|
|
|
let all =
|
|
let all =
|
|
|
values.length !== 0
|
|
values.length !== 0
|
|
|
? (sums[index] = values.reduce((a, b) => {
|
|
? (sums[index] = values.reduce((a, b) => {
|
|
@@ -1995,22 +1996,9 @@ export default {
|
|
|
});
|
|
});
|
|
|
},
|
|
},
|
|
|
rowStyle({ row, column, rowIndex, columnIndex }) {
|
|
rowStyle({ row, column, rowIndex, columnIndex }) {
|
|
|
- if (row.status == 2) {
|
|
|
|
|
- return {
|
|
|
|
|
- // color: '#fff',
|
|
|
|
|
- backgroundColor: "#fbd26a"
|
|
|
|
|
- };
|
|
|
|
|
- }
|
|
|
|
|
- if (row.status == 3) {
|
|
|
|
|
- return {
|
|
|
|
|
- // color: '#fff',
|
|
|
|
|
- backgroundColor: "#ced094"
|
|
|
|
|
- };
|
|
|
|
|
- }
|
|
|
|
|
- if (row.status == 4) {
|
|
|
|
|
|
|
+ if (rowIndex % 2 != 0) {
|
|
|
return {
|
|
return {
|
|
|
- // color: '#fff',
|
|
|
|
|
- backgroundColor: "#fbc4c4"
|
|
|
|
|
|
|
+ backgroundColor: "#ecf5ff"
|
|
|
};
|
|
};
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|