|
@@ -217,16 +217,16 @@ export default {
|
|
|
if (label.indexOf('成本') !== -1) return "bg__warning_1"
|
|
|
},
|
|
|
getCurrentRateStyle(current) {
|
|
|
- const days = dayjs().daysInMonth();
|
|
|
+ const days = dayjs(this.daytime).daysInMonth();
|
|
|
const oneDay = Number(division(100, days)).toFixed(2);
|
|
|
- const currentDay = dayjs().date();
|
|
|
+ const currentDay = dayjs(this.daytime).date();
|
|
|
const currentTotalTip = Number(multiplication(currentDay, oneDay)).toFixed(2);
|
|
|
return Number(currentTotalTip) > Number(current) ? 'color:red' : ''
|
|
|
},
|
|
|
getCurrentValueStyle(current, total) {
|
|
|
- const days = dayjs().daysInMonth();
|
|
|
+ const days = dayjs(this.daytime).daysInMonth();
|
|
|
const oneDay = Number(division(total, days)).toFixed(2);
|
|
|
- const currentDay = dayjs().date();
|
|
|
+ const currentDay = dayjs(this.daytime).date();
|
|
|
const currentTotalTip = Number(multiplication(currentDay, oneDay)).toFixed(2);
|
|
|
return Number(currentTotalTip) > Number(current) ? 'color: red' : '';
|
|
|
},
|