12/14
parent
a19141423b
commit
0073fdeaf6
@ -0,0 +1,27 @@
|
||||
import { axios } from '@/utils/request'
|
||||
|
||||
/**
|
||||
* 获取箱型信息
|
||||
*
|
||||
* @author Myshipping
|
||||
*/
|
||||
export function CommondbList(parameter) {
|
||||
return axios({
|
||||
url: '/commondb/ctn',
|
||||
method: 'get',
|
||||
params: parameter
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增箱型
|
||||
*
|
||||
* @author Myshipping
|
||||
*/
|
||||
export function CommondbAdd(parameter) {
|
||||
return axios({
|
||||
url: '/commondb/addctn',
|
||||
method: 'post',
|
||||
data: parameter
|
||||
})
|
||||
}
|
@ -0,0 +1,27 @@
|
||||
import { axios } from '@/utils/request'
|
||||
|
||||
/**
|
||||
* 获取包装信息
|
||||
*
|
||||
* @author Myshipping
|
||||
*/
|
||||
export function CommondbList(parameter) {
|
||||
return axios({
|
||||
url: '/commondb/package',
|
||||
method: 'get',
|
||||
params: parameter
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增包装信息
|
||||
*
|
||||
* @author Myshipping
|
||||
*/
|
||||
export function CommondbAdd(parameter) {
|
||||
return axios({
|
||||
url: '/commondb/addpackage',
|
||||
method: 'post',
|
||||
data: parameter
|
||||
})
|
||||
}
|
@ -0,0 +1,27 @@
|
||||
import { axios } from '@/utils/request'
|
||||
|
||||
/**
|
||||
* 获取包装信息
|
||||
*
|
||||
* @author Myshipping
|
||||
*/
|
||||
export function CommondbList(parameter) {
|
||||
return axios({
|
||||
url: '/commondb/service',
|
||||
method: 'get',
|
||||
params: parameter
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 新增包装信息
|
||||
*
|
||||
* @author Myshipping
|
||||
*/
|
||||
export function CommondbAdd(parameter) {
|
||||
return axios({
|
||||
url: '/commondb/addservice',
|
||||
method: 'post',
|
||||
data: parameter
|
||||
})
|
||||
}
|
Loading…
Reference in New Issue