Merge branch 'master' of http://60.209.125.238:13080/whm/BookingHeChuanFront
commit
5ca150a872
@ -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