|
@@ -623,14 +623,16 @@ export default {
|
|
|
},
|
|
|
// 表格-设置单元格样式
|
|
|
cellClass ({ row, column, rowIndex, columnIndex }) {
|
|
|
+ const classes = []
|
|
|
if (this.authBtnColName.includes(column.property) && Number(row[column.property]) !== 0) {
|
|
|
- return 'is-click-btn'
|
|
|
+ classes.push('is-click-btn')
|
|
|
}
|
|
|
if (this.$route.path == '/newDeparture') {
|
|
|
- if (column.property === 'NO_check_number' && Number(row['NO_check_number']) > 0) {
|
|
|
- return 'cell-toUnload'
|
|
|
+ if (column.property === 'NO_check_number' && row['NO_check_number'] != 0) {
|
|
|
+ classes.push('cell-toUnload')
|
|
|
}
|
|
|
}
|
|
|
+ return classes.join(' ')
|
|
|
},
|
|
|
// 表格-设置行样式
|
|
|
rowClass ({ row, rowIndex }) {
|