5 changed files with 64 additions and 48 deletions
After Width: | Height: | Size: 122 KiB |
@ -1,41 +1,42 @@ |
|||||||
import request from '@/config/axios' |
import request from '@/config/axios' |
||||||
|
|
||||||
// 政策法规 VO
|
// 政策法规 VO
|
||||||
export interface PolicyVO { |
export interface PolicyVO { |
||||||
id: number // id
|
id: number // id
|
||||||
name: string // 名称
|
name: string // 名称
|
||||||
context: string // 内容
|
context: string // 内容
|
||||||
} |
effectiveDate: Date // 生效日期
|
||||||
|
} |
||||||
// 政策法规 API
|
|
||||||
export const PolicyApi = { |
// 政策法规 API
|
||||||
// 查询政策法规分页
|
export const PolicyApi = { |
||||||
getPolicyPage: async (params: any) => { |
// 查询政策法规分页
|
||||||
return await request.get({ url: `/system/policy/page`, params }) |
getPolicyPage: async (params: any) => { |
||||||
}, |
return await request.get({ url: `/system/policy/page`, params }) |
||||||
|
}, |
||||||
// 查询政策法规详情
|
|
||||||
getPolicy: async (id: number) => { |
// 查询政策法规详情
|
||||||
return await request.get({ url: `/system/policy/get?id=` + id }) |
getPolicy: async (id: number) => { |
||||||
}, |
return await request.get({ url: `/system/policy/get?id=` + id }) |
||||||
|
}, |
||||||
// 新增政策法规
|
|
||||||
createPolicy: async (data: PolicyVO) => { |
// 新增政策法规
|
||||||
return await request.post({ url: `/system/policy/create`, data }) |
createPolicy: async (data: PolicyVO) => { |
||||||
}, |
return await request.post({ url: `/system/policy/create`, data }) |
||||||
|
}, |
||||||
// 修改政策法规
|
|
||||||
updatePolicy: async (data: PolicyVO) => { |
// 修改政策法规
|
||||||
return await request.put({ url: `/system/policy/update`, data }) |
updatePolicy: async (data: PolicyVO) => { |
||||||
}, |
return await request.put({ url: `/system/policy/update`, data }) |
||||||
|
}, |
||||||
// 删除政策法规
|
|
||||||
deletePolicy: async (id: number) => { |
// 删除政策法规
|
||||||
return await request.delete({ url: `/system/policy/delete?id=` + id }) |
deletePolicy: async (id: number) => { |
||||||
}, |
return await request.delete({ url: `/system/policy/delete?id=` + id }) |
||||||
|
}, |
||||||
// 导出政策法规 Excel
|
|
||||||
exportPolicy: async (params) => { |
// 导出政策法规 Excel
|
||||||
return await request.download({ url: `/system/policy/export-excel`, params }) |
exportPolicy: async (params) => { |
||||||
}, |
return await request.download({ url: `/system/policy/export-excel`, params }) |
||||||
} |
}, |
||||||
|
} |
||||||
|
Loading…
Reference in new issue