| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- import request from '@/utils/request'
- // 查询破产信息列表
- export function listInformation(query) {
- return request({
- url: '/crmBankruptcyInformation/findByPage',
- method: 'get',
- params: query
- })
- }
- // 查询破产信息详细
- export function getInformation(id) {
- return request({
- url: '/basicData/information/' + id,
- method: 'get'
- })
- }
- // 新增破产信息
- export function addInformation(data) {
- return request({
- url: '/basicData/information',
- method: 'post',
- data: data
- })
- }
- // 修改破产信息
- export function updateInformation(data) {
- return request({
- url: '/basicData/information',
- method: 'put',
- data: data
- })
- }
- // 删除破产信息
- export function delInformation(id) {
- return request({
- url: '/crmBankruptcyInformation/deleteAll',
- method: 'delete'
- })
- }
- // 批量删除行政许可
- export function delInformationBatch(ids) {
- console.log(ids);
- return request.post('/crmBankruptcyInformation/delete',ids)
- }
|