Browse Source

no message

feature/v1.4
xpz2018 4 years ago
parent
commit
40c7a7bab5
2 changed files with 2 additions and 2 deletions
  1. 2
      pages/process/order-check/index.js
  2. 2
      pages/storage/order-info/index.js

2
pages/process/order-check/index.js

@ -151,7 +151,7 @@ Scene({
data.productId = this.data.form.productId
data.sign = this.data.form.sign
data.unitPrice = Number(this.data.form.unitPrice)
checkingOrder(data).then(result => {
checkingOrder({ id: this.data.form.id, editOrderPriceDto: data }).then(result => {
wx.hideLoading()
event.emit('OrderMessage', { what: 12, desc: 'checkingOrder' })
util.showBackToast('订单审核已通过')

2
pages/storage/order-info/index.js

@ -72,7 +72,7 @@ Scene({
poundInfo: result.data.weightNote,
orderInfo: result.data.outboundDeliveryOrder,
auditable: this.data.auditable,
activeNames: result.data.outboundDeliveryOrder.status >= 2 ? ['2'] : ['1'],
activeNames: result.data.outboundDeliveryOrder.status >= 2 ? ['2'] : ['1']
})
}
wx.hideLoading()

Loading…
Cancel
Save