|
|
@@ -243,7 +243,7 @@ const columns = [
|
|
|
prop: "costExternalTypeAdds", label: "交强险费用", width: '300', formatter: (row: any) => {
|
|
|
let info = row.costExternalTypeAdds.find((val: any) => val.costType == '交强险');
|
|
|
if (info) {
|
|
|
- return `入口:${info.inlet?.toFixed(2)}% 出口:${info.export?.toFixed(2)}%\n一级:${info.level1?.toFixed(2)}% 五级:${info.level5?.toFixed(2)}%`
|
|
|
+ return `入口:${info.inlet?.toFixed(2)}% 出口:${info.export?.toFixed(2)}%\n加投:${info.addThrow?.toFixed(2)}% 出口留点:${info.keepPointRatio?.toFixed(2)}%`
|
|
|
} else {
|
|
|
return '-'
|
|
|
}
|
|
|
@@ -253,7 +253,7 @@ const columns = [
|
|
|
prop: "costExternalTypeAdds", label: "商业险费用", width: '300', formatter: (row: any) => {
|
|
|
let info = row.costExternalTypeAdds.find((val: any) => val.costType == '商业险');
|
|
|
if (info) {
|
|
|
- return `入口:${info.inlet?.toFixed(2)}% 出口:${info.export?.toFixed(2)}%\n一级:${info.level1?.toFixed(2)}% 五级:${info.level5?.toFixed(2)}%`
|
|
|
+ return `入口:${info.inlet?.toFixed(2)}% 出口:${info.export?.toFixed(2)}%\n加投:${info.addThrow?.toFixed(2)}% 出口留点:${info.keepPointRatio?.toFixed(2)}%`
|
|
|
} else {
|
|
|
return '-'
|
|
|
}
|
|
|
@@ -263,7 +263,7 @@ const columns = [
|
|
|
prop: "costExternalTypeAdds", label: "驾意险费用", width: '300', formatter: (row: any) => {
|
|
|
let info = row.costExternalTypeAdds.find((val: any) => val.costType == '驾意险');
|
|
|
if (info) {
|
|
|
- return `入口:${info.inlet?.toFixed(2)}% 出口:${info.export?.toFixed(2)}%\n一级:${info.level1?.toFixed(2)}% 五级:${info.level5?.toFixed(2)}%`
|
|
|
+ return `入口:${info.inlet?.toFixed(2)}% 出口:${info.export?.toFixed(2)}%\n加投:${info.addThrow?.toFixed(2)}% 出口留点:${info.keepPointRatio?.toFixed(2)}%`
|
|
|
} else {
|
|
|
return '-'
|
|
|
}
|