shish 3 anos atrás
pai
commit
f29852b319
1 arquivos alterados com 5 adições e 5 exclusões
  1. 5 5
      hdApp/src/admin/member/detail.vue

+ 5 - 5
hdApp/src/admin/member/detail.vue

@@ -44,7 +44,7 @@
     
     <view class="module-com content_box user-open_bx">
       <view class="input-line-wrap">
-        <tui-list-cell @click="pageTo({ url: '/pagesStore/me/shopYeChange' })" class="line-cell" :hover="false" :arrow="true" >
+        <tui-list-cell class="line-cell" :hover="false" :arrow="true" >
             <view class="tui-title">待结订单</view>
         </tui-list-cell>
       </view>
@@ -204,7 +204,7 @@ export default {
           value: 0
         },
         {
-          name: "消费次数",
+          name: "欠款",
           value: 0
         },
         {
@@ -292,9 +292,9 @@ export default {
           return false;
         }
         this.data = res.data;
-        this.fundsData[0].value = res.data.growth;
-        this.fundsData[1].value = res.data.buyNum;
-        this.fundsData[2].value = res.data.buyAmount;
+        this.fundsData[0].value = res.data.growth?parseFloat(res.data.growth):0;
+        this.fundsData[1].value = res.data.debtAmount?parseFloat(res.data.debtAmount):0;
+        this.fundsData[2].value = res.data.buyAmount?parseFloat(res.data.buyAmount):0;
       });
     },
     _rechargeB() {