From 7ec0b6ddb14897fa47769b14cc4cb36049bb5ebb Mon Sep 17 00:00:00 2001
From: 云 <2163098428@qq.com>
Date: 星期一, 22 六月 2026 09:11:53 +0800
Subject: [PATCH] 1、报价系统中,需将付款方式改为选择项(现金、电汇、微信、支付宝等),不能做成手工输入;4、退货单未明确退货规则;5、客户往来信息过于简单,只做总结性信息,无多维度明细信息;

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

diff --git a/src/api/personnelManagement/socialSecuritySet.js b/src/api/personnelManagement/socialSecuritySet.js
index bea19cd..29637f0 100644
--- a/src/api/personnelManagement/socialSecuritySet.js
+++ b/src/api/personnelManagement/socialSecuritySet.js
@@ -4,7 +4,7 @@
 // 鍒嗛〉鏌ヨ鍒楄〃
 export function socialSecurityListPage(query) {
   return request({
-    url: "/socialSecurity/plan/listPage",
+    url: "/schemeApplicableStaff/listPage",
     method: "get",
     params: query,
   });
@@ -13,7 +13,7 @@
 // 鏌ヨ璇︽儏
 export function socialSecurityInfo(id) {
   return request({
-    url: "/socialSecurity/plan/" + id,
+    url: "/schemeApplicableStaff/" + id,
     method: "get",
   });
 }
@@ -21,7 +21,7 @@
 // 鏂板
 export function socialSecurityAdd(data) {
   return request({
-    url: "/socialSecurity/plan/add",
+    url: "/schemeApplicableStaff/add",
     method: "post",
     data,
   });
@@ -30,7 +30,7 @@
 // 淇敼
 export function socialSecurityUpdate(data) {
   return request({
-    url: "/socialSecurity/plan/update",
+    url: "/schemeApplicableStaff/updateSchemeApplicableStaff",
     method: "post",
     data,
   });
@@ -39,7 +39,7 @@
 // 鍒犻櫎
 export function socialSecurityDelete(ids) {
   return request({
-    url: "/socialSecurity/plan/delete",
+    url: "/schemeApplicableStaff/delete",
     method: "delete",
     data: ids,
   });

--
Gitblit v1.9.3