update other api

This commit is contained in:
cmxdd
2020-08-05 17:42:06 +08:00
parent ec2bbcdc29
commit df1bad0a31
10 changed files with 1217 additions and 246 deletions

View File

@@ -29,8 +29,19 @@ export default {
},
methods: {
toDetailsPage() {
let type =0
let info = this.info
if(info.goods_try_order_status==0){
type=1
}else if(info.goods_try_order_status==20){
type=2
}else if(info.goods_try_order_status==40){
type=3
}else if(info.goods_try_order_status==50){
type=4
}
uni.navigateTo({
url: '/pages/index/details?id=' + this.info.order_id
url: '/pages/index/otherdetails?id=' + this.info.goods_try_id+"&type="+type
});
},
},