Shannon_mu 3 years ago
parent
commit
11b4fc6857

+ 0 - 2
operationSupport/src/store/store.js

@@ -188,8 +188,6 @@ const store = new Vuex.Store({
          * @return {null} null:
          */
         addPopup(ctx, args) {
-            console.log('ctx', ctx);
-            console.log('args', args);
             const params = { ...args };
             const list = ctx.getters.getPopups;
             params.id = 'modal_' + +new Date();

+ 0 - 1
operationSupport/src/views/payService/propertyFee/stepPage/bulk.vue

@@ -155,7 +155,6 @@ export default {
                         item.sumTotle = '';
                     });
                     this.tabList = res;
-                    console.log(res);
                 })
                 .catch(() => {
                     loading.close();

+ 5 - 5
operationSupport/src/views/payService/propertyFee/stepPage/single.vue

@@ -189,17 +189,17 @@ export default {
             let type = this.thisItem['chargeType'];
             if (val == 'assetsArea') {
                 if (type == 2) {
-                    lab = '用量(吨)';
+                    lab = '用量(吨):';
                 } else if (type == 3) {
-                    lab = '用量(度)';
+                    lab = '用量(度):';
                 } else if (type == 4) {
-                    lab = '车位';
+                    lab = '车位:';
                 }
             } else if (val == 'chargePrice') {
                 if (type == 2) {
-                    lab = '价格(元/吨)';
+                    lab = '价格(元/吨):';
                 } else if (type == 3) {
-                    lab = '价格(元/度)';
+                    lab = '价格(元/度):';
                 }
             }
             return lab;