gaoluyang
10 天以前 fe167dd71a1300aeae07522db990d6b3fdb77a0e
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,
  });
}