This commit is contained in:
xhf 2025-02-21 11:02:38 +08:00
parent 1047964d8e
commit 56b9a76ac2
2 changed files with 10 additions and 1 deletions

View File

@ -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 })
}

View File

@ -48,7 +48,7 @@ export const vDrag = {
}
},
updated(el, binding) {
console.log('会走这边吗');
// console.log('会走这边吗');
const enableDrag = binding.value;
const prevEnableDrag = binding.oldValue;