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.
56 lines
1.5 KiB
56 lines
1.5 KiB
import request from '@/config/axios'
|
|
|
|
export interface ConditionVO {
|
|
strategyCode: string
|
|
ruleCode: string
|
|
paramCode: string
|
|
operator: string
|
|
value: string
|
|
groupCode: string
|
|
}
|
|
|
|
// 查询条件列表
|
|
export const getConditionPage = async (params) => {
|
|
if (params.isSearch) {
|
|
delete params.isSearch
|
|
const data = {...params}
|
|
return request.post({ url: '/wms/condition/senior', data })
|
|
} else {
|
|
return await request.get({ url: `/wms/condition/page`, params })
|
|
}
|
|
}
|
|
|
|
// 查询条件详情
|
|
export const getCondition = async (id: number) => {
|
|
return await request.get({ url: `/wms/condition/get?id=` + id })
|
|
}
|
|
|
|
// 新增条件
|
|
export const createCondition = async (data: ConditionVO) => {
|
|
return await request.post({ url: `/wms/condition/create`, data })
|
|
}
|
|
|
|
// 修改条件
|
|
export const updateCondition = async (data: ConditionVO) => {
|
|
return await request.put({ url: `/wms/condition/update`, data })
|
|
}
|
|
|
|
// 删除条件
|
|
export const deleteCondition = async (id: number) => {
|
|
return await request.delete({ url: `/wms/condition/delete?id=` + id })
|
|
}
|
|
|
|
// 导出条件 Excel
|
|
export const exportCondition = async (params) => {
|
|
if (params.isSearch) {
|
|
const data = {...params}
|
|
return await request.downloadPost({ url: `/wms/condition/export-excel-senior`, data })
|
|
} else {
|
|
return await request.download({ url: `/wms/condition/export-excel`, params })
|
|
}
|
|
}
|
|
|
|
// 下载用户导入模板
|
|
export const importTemplate = () => {
|
|
return request.download({ url: '/wms/condition/get-import-template' })
|
|
}
|