|
|
@@ -12,7 +12,7 @@ export function listInformation(query) {
|
|
|
// 查询股东信息详细
|
|
|
export function getInformation(id) {
|
|
|
return request({
|
|
|
- url: '/basicData/information/' + id,
|
|
|
+ url: '/crmShareholderInformation/information/' + id,
|
|
|
method: 'get'
|
|
|
})
|
|
|
}
|
|
|
@@ -20,7 +20,7 @@ export function getInformation(id) {
|
|
|
// 新增股东信息
|
|
|
export function addInformation(data) {
|
|
|
return request({
|
|
|
- url: '/basicData/information',
|
|
|
+ url: '/crmShareholderInformation/information',
|
|
|
method: 'post',
|
|
|
data: data
|
|
|
})
|
|
|
@@ -29,7 +29,7 @@ export function addInformation(data) {
|
|
|
// 修改股东信息
|
|
|
export function updateInformation(data) {
|
|
|
return request({
|
|
|
- url: '/basicData/information',
|
|
|
+ url: '/crmShareholderInformation/information',
|
|
|
method: 'put',
|
|
|
data: data
|
|
|
})
|
|
|
@@ -41,4 +41,9 @@ export function delInformation(id) {
|
|
|
url: '/crmShareholderInformation/deleteAll',
|
|
|
method: 'delete'
|
|
|
})
|
|
|
-}
|
|
|
+}
|
|
|
+// 批量删除行政许可
|
|
|
+export function delInformationBatch(ids) {
|
|
|
+ console.log(ids);
|
|
|
+ return request.post('/crmShareholderInformation/delete',ids)
|
|
|
+}
|