From bc365ef47ae4e01754aeadbae26170e11c9bb80e Mon Sep 17 00:00:00 2001
From: gaoluyang <2820782392@qq.com>
Date: 星期一, 22 六月 2026 16:56:12 +0800
Subject: [PATCH] 新疆马铃薯 1.删除按钮添加操作权限

---
 src/api/personnelManagement/socialSecuritySet.js |   46 ++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 46 insertions(+), 0 deletions(-)

diff --git a/src/api/personnelManagement/socialSecuritySet.js b/src/api/personnelManagement/socialSecuritySet.js
new file mode 100644
index 0000000..29637f0
--- /dev/null
+++ b/src/api/personnelManagement/socialSecuritySet.js
@@ -0,0 +1,46 @@
+// 绀句細淇濋櫓璁剧疆
+import request from "@/utils/request";
+
+// 鍒嗛〉鏌ヨ鍒楄〃
+export function socialSecurityListPage(query) {
+  return request({
+    url: "/schemeApplicableStaff/listPage",
+    method: "get",
+    params: query,
+  });
+}
+
+// 鏌ヨ璇︽儏
+export function socialSecurityInfo(id) {
+  return request({
+    url: "/schemeApplicableStaff/" + id,
+    method: "get",
+  });
+}
+
+// 鏂板
+export function socialSecurityAdd(data) {
+  return request({
+    url: "/schemeApplicableStaff/add",
+    method: "post",
+    data,
+  });
+}
+
+// 淇敼
+export function socialSecurityUpdate(data) {
+  return request({
+    url: "/schemeApplicableStaff/updateSchemeApplicableStaff",
+    method: "post",
+    data,
+  });
+}
+
+// 鍒犻櫎
+export function socialSecurityDelete(ids) {
+  return request({
+    url: "/schemeApplicableStaff/delete",
+    method: "delete",
+    data: ids,
+  });
+}

--
Gitblit v1.9.3