选煤厂生产管理平台前端代码
dongyukun
2024-12-11 0b04a185a54444b72151eabf71164008712fb80d
提交 | 用户 | 时间
5cc1d9 1 import request from '@/config/axios'
D 2
3 export interface RawCoalToWashVO {
4
5 }
6
7 export interface RawCoalToWashPageReqVO extends PageParam {
8
9 }
10
11 // 查询RawCoalToWash列表
12 export const getRawCoalToWashPage = (params: RawCoalToWashPageReqVO) => {
0b04a1 13   return request.get({ url: '/xmcpms/prod/wash/toWash/page', params })
5cc1d9 14 }
D 15
16 // 查询RawCoalToWash列表
17 export const getPointList = (params: RawCoalToWashPageReqVO) => {
0b04a1 18   return request.get({ url: '/xmcpms/prod/wash/toWash/list', params })
5cc1d9 19 }
D 20
21 // 查询RawCoalToWash详情
22 export const getRawCoalToWash = (id: number) => {
0b04a1 23   return request.get({ url: `/xmcpms/prod/wash/toWash/info/${id}`})
5cc1d9 24 }
D 25
26 // 新增RawCoalToWash
27 export const createRawCoalToWash = (data: RawCoalToWashVO) => {
0b04a1 28   return request.post({ url: '/xmcpms/prod/wash/toWash/create', data })
5cc1d9 29 }
D 30
31 // 修改RawCoalToWash
32 export const updateRawCoalToWash = (data: RawCoalToWashVO) => {
0b04a1 33   return request.put({ url: '/xmcpms/prod/wash/toWash/update', data })
5cc1d9 34 }
D 35
36 // 删除RawCoalToWash
37 export const deleteRawCoalToWash = (id: number) => {
0b04a1 38   return request.delete({ url: '/xmcpms/prod/wash/toWash/delete?id=' + id })
5cc1d9 39 }
D 40
41 //导出RawCoalToWashList
42 export const exportRawCoalToWash = (params) => {
0b04a1 43   return request.download({ url: '/xmcpms/prod/wash/toWash/export', params })
5cc1d9 44 }
D 45
46 // 下载用户导入模板
47 export const importPointTemplate = () => {
0b04a1 48   return request.download({ url: '/xmcpms/prod/wash/toWash/get-import-template' })
5cc1d9 49 }