| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import request from '@/utils/request'
- // 查询企业社会保险费缴纳信息列表
- export function listInfo(query) {
- return request({
- url: '/crmEnterpriseSocialSecurityInfo/findByPage',
- method: 'get',
- params: query
- })
- }
- // 查询企业社会保险费缴纳信息详细
- export function getInfo(id) {
- return request({
- url: '/basicData/info/' + id,
- method: 'get'
- })
- }
- // 新增企业社会保险费缴纳信息
- export function addInfo(data) {
- return request({
- url: '/basicData/info',
- method: 'post',
- data: data
- })
- }
- // 修改企业社会保险费缴纳信息
- export function updateInfo(data) {
- return request({
- url: '/basicData/info',
- method: 'put',
- data: data
- })
- }
- // 删除企业社会保险费缴纳信息
- export function delInfo(id) {
- return request({
- url: '/crmEnterpriseSocialSecurityInfo/deleteAll',
- method: 'delete'
- })
- }
|