diff --git a/src/views/modules/operation-management/order/index.vue b/src/views/modules/operation-management/order/index.vue index 63fe127..4e57a85 100644 --- a/src/views/modules/operation-management/order/index.vue +++ b/src/views/modules/operation-management/order/index.vue @@ -82,19 +82,19 @@ 订单金额(元) - ¥ {{ (stats.totalMoney / 100).toFixed(2) || '0.00' }} + ¥ {{ stats.totalMoney }} 订单完成率 - {{ (stats.completeRate * 100).toFixed(2) || '0.00' }}% + {{ stats.completeRate }}% 代理商抽成(元) - ¥ {{ (stats.agentCommission / 100).toFixed(2) || '0.00' }} + ¥ {{ stats.agentCommission }} @@ -214,27 +214,27 @@ - ¥ {{ (scope.row.unitOrderMoney / 100).toFixed(2) || '0.00' }} + ¥ {{ scope.row.unitOrderMoney }} - ¥ {{ (scope.row.productMoney / 100).toFixed(2) || '0.00' }} + ¥ {{ scope.row.productMoney }} - ¥ {{ (scope.row.deliveryMoney / 100).toFixed(2) || '0.00' }} + ¥ {{ scope.row.deliveryMoney }} - ¥ {{ (scope.row.dispatchMoney / 100).toFixed(2) || '0.00' }} + ¥ {{ scope.row.dispatchMoney }} - ¥ {{ (scope.row.packageMoney / 100).toFixed(2) || '0.00' }} + ¥ {{ scope.row.packageMoney }}