xiongyubin 2 hónapja
szülő
commit
65034eb7f8

+ 1 - 1
src/views/deviceCfg/chargingStationDetail.vue

@@ -154,7 +154,7 @@ export default {
         this.listLoading = false
         if (res.succeed) {
           if (index) {
-            this.dtlData.chrpannel_list[index] = res.body
+            this.dtlData.chrpannel_list[index] = res.body[0]
           } else {
             this.dtlData.chrpannel_list = res.body
           }

+ 3 - 3
src/views/orderCfg/chargingOrder.vue

@@ -81,12 +81,12 @@
             ¥{{ (scope.row.money / 100).toFixed(2) }}
             (电费{{ ((scope.row.charge_fee || 0) / 100).toFixed(2) }}元
             + 服务费{{ (scope.row.service_fee / 100).toFixed(2) || 0 }}元)
-            <span v-if="scope.row.refund_money" style="color: #67C23A;">
-              已退款 {{ (scope.row.refund_money / 100).toFixed(2) }}
-            </span>
           </div>
           <div v-else-if="item.prop === 'prepay_money'">
             ¥{{ (scope.row.prepay_money / 100).toFixed(2) }}
+            <div v-if="scope.row.refund_money" style="color: #67C23A;">
+              已退款 {{ (scope.row.refund_money / 100).toFixed(2) }}
+            </div>
           </div>
           <div v-else-if="item.prop === 'billing_standard_name'">
             <el-link type="primary" @click="showOrderFeeDetail(scope.row)">{{ scope.row.billing_standard_name }}</el-link>