|
|
|
@ -66,6 +66,12 @@ Scene({ |
|
|
|
imageList.push({url: result.data.orderImageList[index]}) |
|
|
|
} |
|
|
|
} |
|
|
|
var paymentImageList = [] |
|
|
|
if(result.data.paymentImageList && result.data.paymentImageList.length){ |
|
|
|
for (let index = 0; index < result.data.paymentImageList.length; index++) { |
|
|
|
paymentImageList.push({url: result.data.paymentImageList[index]}) |
|
|
|
} |
|
|
|
} |
|
|
|
if(this.data.status || this.data.status == 0){ |
|
|
|
result.data.paymentOrderInfo.receivableStatus = this.data.status |
|
|
|
} |
|
|
|
@ -80,7 +86,9 @@ Scene({ |
|
|
|
form: result.data, |
|
|
|
admin: app.userInfo.type && app.userInfo.type.indexOf('ADMIN') >= 0, |
|
|
|
agent: this.data.agent, |
|
|
|
imageList,safeBottom: app.globalData.safeBottom |
|
|
|
imageList, |
|
|
|
paymentImageList, |
|
|
|
safeBottom: app.globalData.safeBottom |
|
|
|
}) |
|
|
|
}).catch(err => { |
|
|
|
wx.hideLoading() |
|
|
|
|