Explorar o código

修改入账页面服务费

LiFei %!s(int64=6) %!d(string=hai) anos
pai
achega
9341ae5f87

+ 9 - 1
src/views/saasmanager/HwPlatformCompanyAccountDetailList.vue

@@ -155,7 +155,15 @@
           {
             title:'服务费',
             align:"center",
-            dataIndex: 'subServiceFee',
+            dataIndex: 'serviceFee',
+            customRender:function (text) {
+              if(text==null){
+                return "补发"
+              }else{
+                return text;
+              }
+            }
+
           },
           {
             title:'时间',

+ 3 - 3
src/views/saasmanager/HwPlatformCompanyAccountDetailZSList.vue

@@ -139,10 +139,10 @@
             align:"center",
             dataIndex: 'serviceFee',
             customRender:function (text) {
-              if(text==null){
-                return "补发"
+              if(record.isThroughPlatform==1){
+                return record.subServiceFee
               }else{
-                return text;
+                return record.serviceFee
               }
             }