|
|
@@ -220,6 +220,7 @@ const finish = () => {
|
|
|
)}分钟`
|
|
|
: `${parseInt(`${diff / 60}`)}分钟`;
|
|
|
const endFormat = format("y-M-d h:m:s");
|
|
|
+ const totalMoney = (res.totalMoney / 100).toFixed(2);
|
|
|
const _chargeInfo = [
|
|
|
{
|
|
|
label: "累计充电量",
|
|
|
@@ -227,7 +228,7 @@ const finish = () => {
|
|
|
},
|
|
|
{
|
|
|
label: "累计费用",
|
|
|
- value: `${res.totalMoney}元`,
|
|
|
+ value: `${totalMoney}元`,
|
|
|
},
|
|
|
{
|
|
|
label: "开始时间",
|
|
|
@@ -303,6 +304,7 @@ const setChargeData = (res: any) => {
|
|
|
`${min - parseInt(`${min / 60}`) * 60}`
|
|
|
)}分钟`
|
|
|
: `${parseInt(`${diff / 60}`)}分钟`;
|
|
|
+ const totalMoney = (res.totalMoney / 100).toFixed(2);
|
|
|
const _chargeInfo = [
|
|
|
{
|
|
|
label: "累计充电量",
|
|
|
@@ -310,7 +312,7 @@ const setChargeData = (res: any) => {
|
|
|
},
|
|
|
{
|
|
|
label: "累计费用",
|
|
|
- value: `${res.totalMoney}元`,
|
|
|
+ value: `${totalMoney}元`,
|
|
|
},
|
|
|
{
|
|
|
label: "开始时间",
|