问题修改

This commit is contained in:
cwchen 2025-01-24 17:28:42 +08:00
parent 78b92fa238
commit f8f12c72a6
1 changed files with 2 additions and 2 deletions

View File

@ -619,7 +619,7 @@ function initOneCharts(list) {
// 租赁金额(运输车辆)
function initTwoCharts(obj) {
const dataInfo = {
status: '¥' + obj.payMoney,
status: '¥' + ((obj.payMoney + '').indexOf('.') > -1 ? obj.payMoney :obj.payMoney + '.00'),
value: obj.progress
}
const color = '#3592FE'
@ -770,7 +770,7 @@ function initTwoCharts(obj) {
// 租赁金额(吊车)
function initThreeCharts(obj) {
const dataInfo = {
status: '¥' + obj.payMoney,
status: '¥' + ((obj.payMoney + '').indexOf('.') > -1 ? obj.payMoney :obj.payMoney + '.00'),
value: obj.progress
}
const color = '#3592FE'