调拨渠道查看

This commit is contained in:
老叶
2021-12-29 17:05:51 +08:00
parent 7b11b0df0b
commit dbc25ea37f
3 changed files with 18 additions and 3 deletions
+8 -1
View File
@@ -7,6 +7,8 @@ Page({
note:'',
isShowReport:false,
transport:[],//请上传运输单
id:'',
tran_id:'',
},
onLoad: function (options) {
for (let key in options) {
@@ -25,7 +27,12 @@ Page({
//获取订单详情
getAppTransfer(){
let params = {};
params['id'] = this.data.id;
if(this.data.id != ''){
params['id'] = this.data.id;
}
if(this.data.tran_id != ''){
params['tran_id'] = this.data.tran_id;
}
_.apiQuery.getAppTransfer(params).then(res=>{
this.setData({
info:res.data,
+5 -1
View File
@@ -48,12 +48,12 @@ Page({
this.getUserInfo()
this.getAppCity()
this.getAppTransferRemind()
},
onShow: function () {
this.getHoursTip()
this.getAppTransferRemind()
},
//候取时间
@@ -92,6 +92,10 @@ Page({
this.setData({
isShowReport:true,
})
}else{
this.setData({
isShowReport:false,
})
}
});
},
+5 -1
View File
@@ -57,13 +57,13 @@ Page({
this.getAppStatisticsHcust()
this.getAppStatisticsHorder()
this.getAppTransferRemind()
},
onShow: function () {
this.getAppUserCal()
this.getHoursTip()
this.getAppTransferRemind()
},
//候取时间
@@ -103,6 +103,10 @@ Page({
isShowReport:true,
isShowNotice:false,
})
}else{
this.setData({
isShowReport:false,
})
}
});
},