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.
 
 
 

41 lines
1.0 KiB

import request from '@/config/axios'
export interface StrategyVO {
remark: string
code: string
name: string
description: string
type: string
priority: number
isActive: string
}
// 查询策略列表
export const getStrategyPage = async (params) => {
return await request.get({ url: `/wms/strategy/page`, params })
}
// 查询策略详情
export const getStrategy = async (id: number) => {
return await request.get({ url: `/wms/strategy/get?id=` + id })
}
// 新增策略
export const createStrategy = async (data: StrategyVO) => {
return await request.post({ url: `/wms/strategy/create`, data })
}
// 修改策略
export const updateStrategy = async (data: StrategyVO) => {
return await request.put({ url: `/wms/strategy/update`, data })
}
// 删除策略
export const deleteStrategy = async (id: number) => {
return await request.delete({ url: `/wms/strategy/delete?id=` + id })
}
// 导出策略 Excel
export const exportStrategy = async (params) => {
return await request.download({ url: `/wms/strategy/export-excel`, params })
}