From c1b5f6edeacfa0326931d06de6773b936dbabe27 Mon Sep 17 00:00:00 2001 From: maven <2163098428@qq.com> Date: 星期二, 26 八月 2025 15:18:44 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/dev_JLMY' into dev_JLMY --- src/api/productionScheduling/index.js | 38 ++++++++++++++++++++++++++++++++++++++ 1 files changed, 38 insertions(+), 0 deletions(-) diff --git a/src/api/productionScheduling/index.js b/src/api/productionScheduling/index.js new file mode 100644 index 0000000..3a2adb5 --- /dev/null +++ b/src/api/productionScheduling/index.js @@ -0,0 +1,38 @@ +// 鐢熶骇浠诲姟锛屾姤宸� +import request from '@/utils/request' + +// 鏌ヨ鐢熶骇鍔犲伐-姝e紡搴撶叅绉嶅垪琛� +export function listPage(query) { + return request({ + url: '/productionScheduling/list', + method: 'get', + params: query + }) +} + +// 鎺掍骇 +export function addProductionScheduling(data) { + return request({ + url: '/productionScheduling/addProductionScheduling', + method: 'post', + data: data + }) +} + +// 鍒犻櫎 +export function delProductionScheduling(data) { + return request({ + url: '/productionScheduling/delProductionScheduling', + method: 'delete', + data: data + }) +} + +//鎶ュ伐 +export function work(data) { + return request({ + url: '/productionScheduling/work', + method: 'post', + data: data + }) +} \ No newline at end of file -- Gitblit v1.9.3