From 09a293cfd5bb30a91d9930999fff7711606e8183 Mon Sep 17 00:00:00 2001 From: ruanqi Date: Thu, 17 Nov 2022 17:04:10 +0800 Subject: [PATCH] =?UTF-8?q?0412=20=E6=96=B0=E7=9C=8B=E6=9D=BF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/production.js | 6 + .../modules/production/dailyPlanReport.vue | 463 ++++++++++-------- .../production/dailyPlanReport_old.vue | 377 ++++++++++++++ .../modules/production/scheduleForSOTask.vue | 15 + .../modules/production/searchHunlianTask.vue | 287 +++++++++++ 5 files changed, 931 insertions(+), 217 deletions(-) create mode 100644 src/views/modules/production/dailyPlanReport_old.vue create mode 100644 src/views/modules/production/searchHunlianTask.vue diff --git a/src/api/production.js b/src/api/production.js index 89628b8..8407824 100644 --- a/src/api/production.js +++ b/src/api/production.js @@ -51,5 +51,11 @@ export const scheduleForSOTask=data => createAPI(`dailyPlan/scheduleForSOTask`, export const saveHunlianTask=data => createAPI(`dailyPlan/saveHunlianTask`, 'post', data); +export const getHunlianTaskData=data => createAPI(`dailyPlan/getHunlianTaskData`, 'post', data); +export const getHunlianTaskDetailData=data => createAPI(`dailyPlan/getHunlianTaskDetailData`, 'post', data); +export const cancelTask=data => createAPI(`dailyPlan/cancelTask`, 'post', data); +export const reportTask=data => createAPI(`dailyPlan/reportTask`, 'post', data); + +export const cancelReportTask=data => createAPI(`dailyPlan/cancelReportTask`, 'post', data); diff --git a/src/views/modules/production/dailyPlanReport.vue b/src/views/modules/production/dailyPlanReport.vue index 42e2896..996c17b 100644 --- a/src/views/modules/production/dailyPlanReport.vue +++ b/src/views/modules/production/dailyPlanReport.vue @@ -1,20 +1,17 @@