From 6d213775d14a63d18d9eb17b44ba14bd3bb220da Mon Sep 17 00:00:00 2001 From: Crunchy <3114200645@qq.com> Date: 星期四, 07 十二月 2023 10:35:53 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- src/api/plan/productionschedul.js | 24 ++++++++++++++++++++++++ 1 files changed, 24 insertions(+), 0 deletions(-) diff --git a/src/api/plan/productionschedul.js b/src/api/plan/productionschedul.js new file mode 100644 index 0000000..5c56f9a --- /dev/null +++ b/src/api/plan/productionschedul.js @@ -0,0 +1,24 @@ +import request from '@/router/axios' + +export function fetchScheduleList(query) { + return request({ + url: '/mes/productionSchedul/page', + method: 'get', + params: query + }) +} + +export function fetchScheduleById(id) { + return request({ + url: '/mes/productionSchedul/'+id, + method: 'get', + }) +} + +export function fillTime(data) { + return request({ + url: '/mes/productionSchedul/fillTime', + method: 'put', + data: data + }) +} \ No newline at end of file -- Gitblit v1.9.3