9b7e125f
monkeyhouyi
属地页面
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// 公司信息
import request from "@/utils/request";
// 获取公司信息列表
export async function getCompanyInfoList() {
return await request({
url: '/Extend/basecomapnyinfo',
method: 'get',
});
}
// 获取公司信息
export async function getCompanyInfoById(id) {
return await request({
url: `/Extend/basecomapnyinfo/${id}`,
method: 'get',
});
}
|
5330d757
monkeyhouyi
公司信息管理完成
|
18
19
20
21
22
23
24
25
26
27
28
29
30
|
export async function delCompanyInfo(id) {
return await request({
url: `/Extend/BaseComapnyInfo/${id}`,
method: 'DELETE',
});
}
export async function exportCompanyInfo(data) {
return await request({
url: `/Extend/BaseComapnyInfo/Actions/Export`,
method: 'GET',
data
});
}
|