Commit fe41afac authored by xieyishang's avatar xieyishang

~~

parent d4dc3425
......@@ -20,8 +20,8 @@
</view>
<view class="list_02">
<view class="list_01_l">{{item.time}}</view>
<!-- <view class="list_01_r" v-if="item.state==0">处理中</view>
<view class="" v-if="item.state==1">交易成功</view> -->
<view class="list_01_r" >{{item.status | parsestart}}</view>
</view>
</view>
</block>
......@@ -68,6 +68,16 @@
countdata:{},
};
},
filters:{
parsestart(val){
let obj = {"0":"审核中","1":"已通过","2":"已驳回"};
if(obj[val]){
return obj[val];
}else{
return "";
}
}
},
computed:{
userinfo(){
return this.$store.state.userInfo;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment