From 84d7b5e9b0a31c1e18dc52b3d69b1cadf96938e7 Mon Sep 17 00:00:00 2001
From: wwl <xchao828@163.com>
Date: 星期五, 06 十二月 2024 17:47:57 +0800
Subject: [PATCH] 报错提示

---
 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