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

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

Loading…
Cancel
Save