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.
53 lines
1.4 KiB
53 lines
1.4 KiB
import request from '@/config/axios'
|
|
|
|
export interface CustomerdockVO {
|
|
code: string
|
|
name: string
|
|
description: string
|
|
city: string
|
|
address: string
|
|
contactPerson: string
|
|
contactPhone: string
|
|
customerCode: string
|
|
warehouseCode: string
|
|
defaultLocationCode: string
|
|
available: number
|
|
activeTime: Date
|
|
expireTime: Date
|
|
remark: string
|
|
}
|
|
|
|
// 查询客户月台列表
|
|
export const getCustomerdockPage = async (params) => {
|
|
return await request.get({ url: `/wms/customerdock/page`, params })
|
|
}
|
|
|
|
// 查询客户月台详情
|
|
export const getCustomerdock = async (id: number) => {
|
|
return await request.get({ url: `/wms/customerdock/get?id=` + id })
|
|
}
|
|
|
|
// 新增客户月台
|
|
export const createCustomerdock = async (data: CustomerdockVO) => {
|
|
return await request.post({ url: `/wms/customerdock/create`, data })
|
|
}
|
|
|
|
// 修改客户月台
|
|
export const updateCustomerdock = async (data: CustomerdockVO) => {
|
|
return await request.put({ url: `/wms/customerdock/update`, data })
|
|
}
|
|
|
|
// 删除客户月台
|
|
export const deleteCustomerdock = async (id: number) => {
|
|
return await request.delete({ url: `/wms/customerdock/delete?id=` + id })
|
|
}
|
|
|
|
// 导出客户月台 Excel
|
|
export const exportCustomerdock = async (params) => {
|
|
return await request.download({ url: `/wms/customerdock/export-excel`, params })
|
|
}
|
|
|
|
// 下载用户导入模板
|
|
export const importTemplate = () => {
|
|
return request.download({ url: '/wms/customerdock/get-import-template' })
|
|
}
|
|
|