1
This commit is contained in:
parent
1047964d8e
commit
56b9a76ac2
@ -127,3 +127,12 @@ export const getWareHouseLanePage = async (params) => {
|
||||
export const deleteWareLaneArea = async (id: number) => {
|
||||
return await request.delete({ url: `/system/ware/house-area/delete?id=` + id })
|
||||
}
|
||||
// 获取仓库点位连线
|
||||
export const mapLineGet = async (params) => {
|
||||
return await request.get({ url: `/system/position-map-line/get`, params })
|
||||
}
|
||||
|
||||
//通过地图id获取连线列表
|
||||
export const mapLineListGet = async (params) => {
|
||||
return await request.get({ url: `/system/position-map-line/list`, params })
|
||||
}
|
@ -48,7 +48,7 @@ export const vDrag = {
|
||||
}
|
||||
},
|
||||
updated(el, binding) {
|
||||
console.log('会走这边吗');
|
||||
// console.log('会走这边吗');
|
||||
const enableDrag = binding.value;
|
||||
const prevEnableDrag = binding.oldValue;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user