|
@@ -405,14 +405,14 @@ export default {
|
|
const currentTotalTip = Number(multiplication(currentDay, oneDay)).toFixed(2);
|
|
const currentTotalTip = Number(multiplication(currentDay, oneDay)).toFixed(2);
|
|
return Number(currentTotalTip) > Number(current) ? 'color: red' : '';
|
|
return Number(currentTotalTip) > Number(current) ? 'color: red' : '';
|
|
},
|
|
},
|
|
- setCellClassName({ column, row }) {
|
|
|
|
|
|
+ setCellClassName({ column, row, columnIndex }) {
|
|
|
|
+ console.log(columnIndex)
|
|
|
|
|
|
const { label } = column;
|
|
const { label } = column;
|
|
let base = ''
|
|
let base = ''
|
|
|
|
|
|
- // console.log(label === '', row.order_type)
|
|
|
|
if(
|
|
if(
|
|
- (label === '' && row.order_type === '自营订单' || row.order_type === undefined) &&
|
|
|
|
|
|
+ (columnIndex === 0 && (row.order_type === '自营订单' || row.order_type === undefined)) &&
|
|
row.companyName !== this.lastSupportCompany
|
|
row.companyName !== this.lastSupportCompany
|
|
) {
|
|
) {
|
|
base += 'no-border-bottom '
|
|
base += 'no-border-bottom '
|