|
|
@ -506,8 +506,17 @@ |
|
|
|
}) |
|
|
|
} |
|
|
|
//待报工页面跳转 |
|
|
|
function reportHandle(detail) { |
|
|
|
proxy.$tab.navigateTo(`/pages/mes/workScheduling/waitReport?obj=${JSON.stringify(detail)}`) |
|
|
|
function reportHandle(item) { |
|
|
|
|
|
|
|
const getParams = { |
|
|
|
planNoDay:item.planNoDay, |
|
|
|
nodeCode:item.nodeCode, |
|
|
|
id:item.id, |
|
|
|
schedulingCode: item.schedulingCode, |
|
|
|
planCount:item.planCount |
|
|
|
} |
|
|
|
const objString = JSON.stringify(getParams); |
|
|
|
proxy.$tab.navigateTo(`/pages/mes/workScheduling/waitReport?obj=${encodeURIComponent(objString)}`) |
|
|
|
// proxy.$modal.loading("加载中") |
|
|
|
// await workSchedulingApi.getConfigProcessWorker({ |
|
|
|
// planDayCode: item.planMasterCode, |
|
|
@ -529,8 +538,17 @@ |
|
|
|
} |
|
|
|
//待质检页面跳转 |
|
|
|
function waitCheck(item){ |
|
|
|
console.log(item) |
|
|
|
proxy.$tab.navigateTo(`/pages/mes/workScheduling/waitQuality?obj=${JSON.stringify(item)}`) |
|
|
|
// console.log(item) |
|
|
|
// proxy.$tab.navigateTo(`/pages/mes/workScheduling/waitQuality?obj=${JSON.stringify(item)}`) |
|
|
|
const getParams = { |
|
|
|
planNoDay:item.planNoDay, |
|
|
|
nodeCode:item.nodeCode, |
|
|
|
id:item.id, |
|
|
|
planCount:item.planCount |
|
|
|
} |
|
|
|
const objString = JSON.stringify(getParams); |
|
|
|
|
|
|
|
proxy.$tab.navigateTo(`/pages/mes/workScheduling/waitQuality?obj=${encodeURIComponent(objString)}`) |
|
|
|
} |
|
|
|
|
|
|
|
// 叫料 |
|
|
|