Commit 8e992031 authored by dcy's avatar dcy

Merge remote-tracking branch 'origin/dev' into dev

parents 52df6313 d51359b4
...@@ -183,7 +183,7 @@ export default { ...@@ -183,7 +183,7 @@ export default {
}).then((res) => { }).then((res) => {
const { data } = res; const { data } = res;
const { titleZh = "", contentZh = "" } = data?.ladingTemplate ?? {}; const { titleZh = "", contentZh = "" } = data?.ladingTemplate ?? {};
let billContent = `${titleZh}${contentZh}`, let billContent = `${titleZh}${data.orderInfo}${contentZh}`,
orderNo = data.orderInfo?.orderNo ?? ""; orderNo = data.orderInfo?.orderNo ?? "";
this.currData = { this.currData = {
billContent, billContent,
......
...@@ -241,8 +241,12 @@ export default { ...@@ -241,8 +241,12 @@ export default {
break; break;
case 4: case 4:
// 入仓修改 // 入仓修改
getWarehouseUpdateApprovalInfo(this.processInstanceID).then(r => { getWarehouseUpdateApprovalInfo(this.processInstanceID).then(res => {
this.FeeDetails.details = r.data.details getOrder(res.data.orderIds).then(r =>{
this.FeeDetails = r.data
this.FeeDetails.details = JSON.parse(res.data.details)
// this.FeeDetails.details = res.data.details
})
}) })
break break
} }
......
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