From bd25d9a8a058e8c618ee4188ed5f15a898c0f7e8 Mon Sep 17 00:00:00 2001 From: jiangping <jp@doumee.com> Date: 星期六, 27 一月 2024 11:43:37 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- platform/src/api/business/dispatchUnit.js | 23 +++++++++++++++++++++++ 1 files changed, 23 insertions(+), 0 deletions(-) diff --git a/platform/src/api/business/dispatchUnit.js b/platform/src/api/business/dispatchUnit.js new file mode 100644 index 0000000..22a2e2a --- /dev/null +++ b/platform/src/api/business/dispatchUnit.js @@ -0,0 +1,23 @@ +import request from '../../utils/request' + +// 鏌ヨ +export function fetchList (data) { + return request.post('/business/dispatchUnit/page', data, { + trim: true + }) +} + +// 鍒涘缓 +export function create (data) { + return request.post('/business/dispatchUnit/create', data) +} + +// 淇敼 +export function updateById (data) { + return request.post('/business/dispatchUnit/updateById', data) +} + +// 鏍规嵁ID鏌ヨ +export function getById (id) { + return request.get(`/business/dispatchUnit/${id}`) +} -- Gitblit v1.9.3