From f68fa3bc5fc0a286c88d82ee6eb95e8ad6be0d16 Mon Sep 17 00:00:00 2001 From: qinxianzhangyao <11053546+qinxianzhangyao@user.noreply.gitee.com> Date: 星期四, 27 六月 2024 15:21:55 +0800 Subject: [PATCH] qxtj --- src/api/system/package.js | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 43 insertions(+), 0 deletions(-) diff --git a/src/api/system/package.js b/src/api/system/package.js index 5ff75d7..f4b4e22 100644 --- a/src/api/system/package.js +++ b/src/api/system/package.js @@ -142,3 +142,46 @@ params: data }) } + + + +export function getZhList(query) { + return request({ + url: '/system/zhxm/getZhList', + method: 'get', + params: query + }) +} + +export function addzhxm(data) { + return request({ + url: '/system/zhxm', + method: 'post', + data: data + }) +} + +export function modifyzhxm(data) { + return request({ + url: '/system/zhxm', + method: 'put', + data: data + }) +} + + +export function delzhxm(pacIds) { + return request({ + url: '/system/zhxm/' + pacIds, + method: 'delete' + }) +} + + +export function getlistByZhId(query) { + return request({ + url: '/system/zhxm/listByZhId', + method: 'get', + params: query + }) +} \ No newline at end of file -- Gitblit v1.8.0