You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.6 KiB
52 lines
1.6 KiB
2 months ago
|
import request from '@/config/axios'
|
||
|
|
||
|
// 企业 VO
|
||
|
export interface EnterprisesVO {
|
||
|
id: number // 企业ID,主键
|
||
|
departmentId: number // 所属部门ID
|
||
|
userId: number // 邀请人
|
||
|
type: string // 企业类型
|
||
|
region: string // 企业所属区域
|
||
|
enterprisesName: string // 企业名称
|
||
|
address: string // 企业地址
|
||
|
contactName: string // 环保负责人姓名
|
||
|
environmentalContactPhone: string // 企业环保负责人联系电话
|
||
|
registrationNumber: string // 企业注册号
|
||
|
introduction: string // 企业图文介绍
|
||
|
establishmentDate: Date // 企业成立时间
|
||
|
gpsLocation: string // 企业经纬度
|
||
|
managerDeptId: number // 管理部门
|
||
|
}
|
||
|
|
||
|
// 企业 API
|
||
|
export const EnterprisesApi = {
|
||
|
// 查询企业分页
|
||
|
getEnterprisesPage: async (params: any) => {
|
||
|
return await request.get({ url: `/system/enterprises/page`, params })
|
||
|
},
|
||
|
|
||
|
// 查询企业详情
|
||
|
getEnterprises: async (id: number) => {
|
||
|
return await request.get({ url: `/system/enterprises/get?id=` + id })
|
||
|
},
|
||
|
|
||
|
// 新增企业
|
||
|
createEnterprises: async (data: EnterprisesVO) => {
|
||
|
return await request.post({ url: `/system/enterprises/create`, data })
|
||
|
},
|
||
|
|
||
|
// 修改企业
|
||
|
updateEnterprises: async (data: EnterprisesVO) => {
|
||
|
return await request.put({ url: `/system/enterprises/update`, data })
|
||
|
},
|
||
|
|
||
|
// 删除企业
|
||
|
deleteEnterprises: async (id: number) => {
|
||
|
return await request.delete({ url: `/system/enterprises/delete?id=` + id })
|
||
|
},
|
||
|
|
||
|
// 导出企业 Excel
|
||
|
exportEnterprises: async (params) => {
|
||
|
return await request.download({ url: `/system/enterprises/export-excel`, params })
|
||
|
},
|
||
|
}
|