From 0000e935d6c7f74cb6682aea1bbf24d8deade390 Mon Sep 17 00:00:00 2001 From: wwl <xchao828@163.com> Date: 星期四, 03 七月 2025 17:49:18 +0800 Subject: [PATCH] 1 --- src/api/system/jcycpdgjz.js | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 44 insertions(+), 0 deletions(-) diff --git a/src/api/system/jcycpdgjz.js b/src/api/system/jcycpdgjz.js new file mode 100644 index 0000000..68d2fe0 --- /dev/null +++ b/src/api/system/jcycpdgjz.js @@ -0,0 +1,44 @@ +import request from '@/utils/request' + +// 鏌ヨ鍏抽敭瀛楀垪琛� +export function listJcycpdgjz(query) { + return request({ + url: '/system/jcycpdgjz/list', + method: 'get', + params: query + }) +} + +// 鏌ヨ鍏抽敭瀛楄缁� +export function getJcycpdgjz(id) { + return request({ + url: '/system/jcycpdgjz/' + id, + method: 'get' + }) +} + +// 鏂板鍏抽敭瀛� +export function addJcycpdgjz(data) { + return request({ + url: '/system/jcycpdgjz', + method: 'post', + data: data + }) +} + +// 淇敼鍏抽敭瀛� +export function updateJcycpdgjz(data) { + return request({ + url: '/system/jcycpdgjz', + method: 'put', + data: data + }) +} + +// 鍒犻櫎鍏抽敭瀛� +export function delJcycpdgjz(id) { + return request({ + url: '/system/jcycpdgjz/' + id, + method: 'delete' + }) +} -- Gitblit v1.8.0