liudan 5 months ago
parent 09ea7964c0
commit a57874273f
  1. 6
      pages/users/order_confirm/index.vue
  2. 13
      pages/users/user_spread_money/index.vue

@ -375,6 +375,9 @@
<block v-if="item.value == 'balance'">
{{userInfo.now_money}}
</block>
<block v-if="item.value == 'brokerage'">
{{userInfo.brokerage_price}}
</block>
</view>
</view>
<!-- #endif -->
@ -391,6 +394,9 @@
<block v-if="item.value == 'balance'">
{{userInfo.now_money}}
</block>
<block v-if="item.value == 'brokerage'">
{{userInfo.brokerage_price}}
</block>
</view>
</view>
<!-- #endif -->

@ -120,7 +120,7 @@
start: "",
stop: "",
activeIndex:0,
status:null,
statusParams:1,
pm:1
};
},
@ -155,16 +155,19 @@
getStatus(val){
if(val!=2){
this.status=null;
this.statusParams=1;
this.pm=val;
if(val==1){this.activeIndex=0;}
if(val==0){this.activeIndex=1;}
}else{
this.status=0;
this.statusParams=0;
this.pm=null;
this.activeIndex=2
}
this.page = 1
this.status = false;
this.recordList=[]
this.getRecordList();
},
spreadInfo(){
@ -202,7 +205,7 @@
limit: limit,
start: start,
stop: stop,
status:that.status,
status:that.statusParams,
pm:that.pm
}, recordType).then(res => {
let len = res.data.list.length;
@ -219,7 +222,7 @@
limit: limit,
start: start,
stop: stop,
status:that.status,
status:that.statusParams,
pm:that.pm
}).then(res => {
let len = res.data.list.length;

Loading…
Cancel
Save