10 changed files with 1828 additions and 1557 deletions
@ -1,113 +1,118 @@
|
||||
import request from '@/axios'; |
||||
|
||||
export const getList = (current, size, params) => { |
||||
/** 列表数据 */ |
||||
export const getList = params => { |
||||
return request({ |
||||
url: '/api/logpm-basicdata/goodsAllocation/list', |
||||
method: 'get', |
||||
params: { |
||||
...params, |
||||
current, |
||||
size, |
||||
} |
||||
}) |
||||
} |
||||
params, |
||||
}); |
||||
}; |
||||
|
||||
export const getDetail = (id) => { |
||||
export const getDetail = id => { |
||||
return request({ |
||||
url: '/api/logpm-basicdata/goodsAllocation/detail', |
||||
method: 'get', |
||||
params: { |
||||
id |
||||
} |
||||
}) |
||||
} |
||||
id, |
||||
}, |
||||
}); |
||||
}; |
||||
|
||||
export const remove = (ids) => { |
||||
/** 移除 */ |
||||
export const remove = ids => { |
||||
return request({ |
||||
url: '/api/logpm-basicdata/goodsAllocation/remove', |
||||
method: 'post', |
||||
params: { |
||||
ids, |
||||
} |
||||
}) |
||||
} |
||||
export const disable = (ids) => { |
||||
}, |
||||
}); |
||||
}; |
||||
|
||||
/** 禁用 */ |
||||
export const disable = ids => { |
||||
return request({ |
||||
url: '/api/logpm-basicdata/goodsAllocation/disable', |
||||
method: 'post', |
||||
params: { |
||||
ids, |
||||
} |
||||
}) |
||||
} |
||||
export const enable = (ids) => { |
||||
}, |
||||
}); |
||||
}; |
||||
|
||||
/** 启用 */ |
||||
export const enable = ids => { |
||||
return request({ |
||||
url: '/api/logpm-basicdata/goodsAllocation/enable', |
||||
method: 'post', |
||||
params: { |
||||
ids, |
||||
} |
||||
}) |
||||
} |
||||
export const downAllocation = (ids) => { |
||||
}, |
||||
}); |
||||
}; |
||||
|
||||
/** 批量下架 */ |
||||
export const downAllocation = ids => { |
||||
return request({ |
||||
url: '/api/logpm-warehouse/warehouseGoodsAllocation/downAllocation', |
||||
method: 'post', |
||||
params: { |
||||
ids, |
||||
} |
||||
}) |
||||
} |
||||
export const shelf = (ids) => { |
||||
}, |
||||
}); |
||||
}; |
||||
|
||||
export const shelf = ids => { |
||||
return request({ |
||||
url: '/api/logpm-warehouse/warehouseGoodsAllocation/downAllocation', |
||||
method: 'post', |
||||
params: { |
||||
ids, |
||||
} |
||||
}) |
||||
} |
||||
}, |
||||
}); |
||||
}; |
||||
|
||||
export const add = (row) => { |
||||
export const add = row => { |
||||
return request({ |
||||
url: '/api/logpm-basicdata/goodsAllocation/save', |
||||
method: 'post', |
||||
data: row |
||||
}) |
||||
} |
||||
data: row, |
||||
}); |
||||
}; |
||||
|
||||
export const update = (row) => { |
||||
export const update = row => { |
||||
return request({ |
||||
url: '/api/logpm-warehouse/warehouseGoodsAllocation/update', |
||||
method: 'post', |
||||
data: row |
||||
}) |
||||
} |
||||
export const getPrintTemplate = (params) => { |
||||
data: row, |
||||
}); |
||||
}; |
||||
|
||||
/** 获取库位码 */ |
||||
export const getPrintTemplate = params => { |
||||
return request({ |
||||
url: '/logpm-basicdata/goodsAllocation/getPrintTemplate', |
||||
method: 'get', |
||||
params |
||||
}) |
||||
} |
||||
export const getTemplate = (row) => { |
||||
params, |
||||
}); |
||||
}; |
||||
export const getTemplate = row => { |
||||
return request({ |
||||
url: '/api/logpm-basicdata/goodsAllocation/getTemplate', |
||||
method: 'post', |
||||
responseType: 'blob', |
||||
data: row |
||||
}) |
||||
} |
||||
|
||||
data: row, |
||||
}); |
||||
}; |
||||
|
||||
export const getQRCode = (qrCode) => { |
||||
export const getQRCode = qrCode => { |
||||
return request({ |
||||
url: '/api/logpm-basicdata/goodsAllocation/QRCodeImg', |
||||
method: 'get', |
||||
responseType: 'blob', |
||||
params:{ |
||||
qrCode |
||||
} |
||||
}) |
||||
} |
||||
|
||||
params: { |
||||
qrCode, |
||||
}, |
||||
}); |
||||
}; |
||||
|
@ -1,331 +1,121 @@
|
||||
export default { |
||||
height: 'auto', |
||||
calcHeight: 30, |
||||
tip: false, |
||||
searchShow: false, //搜索展开
|
||||
searchMenuSpan: 6, |
||||
border: true, |
||||
index: true, |
||||
viewBtn: false, |
||||
selection: true, |
||||
editBtn: false, |
||||
delBtn: false, |
||||
addBtn: false, |
||||
indexWidth: '100', |
||||
indexLabel: '序号', |
||||
dialogClickModal: false, |
||||
column: [ |
||||
{ |
||||
label: '租户号', |
||||
prop: 'tenantId', |
||||
type: 'input', |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '创建人', |
||||
prop: 'createUser', |
||||
type: 'input', |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '创建时间', |
||||
prop: 'createTime', |
||||
type: 'input', |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '更新人', |
||||
prop: 'updateUser', |
||||
type: 'input', |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '更新时间', |
||||
prop: 'updateTime', |
||||
type: 'input', |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '状态', |
||||
prop: 'status', |
||||
type: 'input', |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '是否已删除;1-未删除,2-已删除', |
||||
prop: 'isDeleted', |
||||
type: 'input', |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '创建部门', |
||||
prop: 'createDept', |
||||
type: 'input', |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '主键', |
||||
prop: 'id', |
||||
type: 'input', |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
width: 'fit-content', |
||||
}, |
||||
// {
|
||||
// label: "预留1",
|
||||
// prop: "reserve1",
|
||||
// type: "input",
|
||||
// },
|
||||
// {
|
||||
// label: "预留2",
|
||||
// prop: "reserve2",
|
||||
// type: "input",
|
||||
// },
|
||||
// {
|
||||
// label: "预留3",
|
||||
// prop: "reserve3",
|
||||
// type: "input",
|
||||
// },
|
||||
// {
|
||||
// label: "预留4",
|
||||
// prop: "reserve4",
|
||||
// type: "input",
|
||||
// },
|
||||
// {
|
||||
// label: "预留5",
|
||||
// prop: "reserve5",
|
||||
// type: "input",
|
||||
// },
|
||||
{ |
||||
label: '仓库名称', |
||||
prop: 'warehouseName', |
||||
type: 'input', |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
align: 'center', |
||||
labelWidth: '100', |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '货区名称', |
||||
prop: 'goodsAreaName', |
||||
type: 'input', |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
align: 'center', |
||||
labelWidth: '100', |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '货架名称', |
||||
prop: 'goodsShelfName', |
||||
type: 'input', |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
align: 'center', |
||||
labelWidth: '100', |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '货架', |
||||
prop: 'nodeInfo', |
||||
type: 'cascader', |
||||
width: 'fit-content', |
||||
search: true, |
||||
labelWidth: '100', |
||||
clearable: true, |
||||
placeholder: '仓库/货区/货架', |
||||
dicUrl: '/api/logpm-basicdata/goodsAllocation/getNode', |
||||
// dicData:dicData ,
|
||||
props: { |
||||
label: 'label', |
||||
value: 'value', |
||||
children: 'children', |
||||
leaf: 'leaf', |
||||
}, |
||||
addDisplay: true, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: '货位名称', |
||||
prop: 'goodsAllocationName', |
||||
type: 'input', |
||||
addDisplay: true, |
||||
editDisplay: true, |
||||
align: 'center', |
||||
labelWidth: '100', |
||||
width: 'fit-content', |
||||
rules: [ |
||||
{ |
||||
required: true, |
||||
message: '请输入货位名称', |
||||
trigger: 'blur', |
||||
}, |
||||
], |
||||
}, |
||||
{ |
||||
label: '所在层', |
||||
prop: 'layerNum', |
||||
type: 'input', |
||||
align: 'center', |
||||
labelWidth: '100', |
||||
addDisplay: true, |
||||
editDisplay: true, |
||||
viewDisplay: true, |
||||
hide: false, |
||||
search: true, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '所在列', |
||||
prop: 'columnNum', |
||||
type: 'input', |
||||
align: 'center', |
||||
labelWidth: '100', |
||||
addDisplay: true, |
||||
editDisplay: true, |
||||
viewDisplay: true, |
||||
hide: false, |
||||
search: true, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '启用状态', |
||||
prop: 'enableStatus', |
||||
type: 'select', |
||||
search: false, |
||||
labelWidth: '100', |
||||
dicUrl: '/api/blade-system/dict-biz/dictionary?code=enable_status', |
||||
props: { |
||||
label: 'dictValue', |
||||
value: 'dictKey', |
||||
}, |
||||
addDisplay: false, |
||||
align: 'center', |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: false, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '货位状态', |
||||
prop: 'allocationStatus', |
||||
type: 'select', |
||||
search: true, |
||||
labelWidth: '100', |
||||
dicUrl: '/api/blade-system/dict-biz/dictionary?code=allocation_status', |
||||
props: { |
||||
label: 'dictValue', |
||||
value: 'dictKey', |
||||
}, |
||||
addDisplay: false, |
||||
align: 'center', |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '货位码', |
||||
prop: 'qrCode', |
||||
type: 'input', |
||||
align: 'center', |
||||
labelWidth: '100', |
||||
viewDisplay: true, |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
hide: true, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '旧ID', |
||||
prop: 'oldId', |
||||
type: 'input', |
||||
align: 'center', |
||||
labelWidth: '100', |
||||
viewDisplay: true, |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
hide: true, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '旧货位码', |
||||
prop: 'oldQrCode', |
||||
type: 'input', |
||||
align: 'center', |
||||
labelWidth: '100', |
||||
viewDisplay: true, |
||||
addDisplay: false, |
||||
editDisplay: true, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '模 板', |
||||
prop: 'templateId', |
||||
type: 'select', |
||||
align: 'center', |
||||
labelWidth: '100', |
||||
dicUrl: '/api/logpm-basic/printTemplate/getTemplate?templateType=8', |
||||
props: { |
||||
label: 'templateName', |
||||
value: 'id', |
||||
}, |
||||
viewDisplay: true, |
||||
addDisplay: true, |
||||
editDisplay: false, |
||||
width: 'fit-content', |
||||
hide: true, |
||||
}, |
||||
// {
|
||||
// label: "二维码图片",
|
||||
// prop: "qrCodeUrl",
|
||||
// type: "upload",
|
||||
// dataType: 'string',
|
||||
// listType: 'picture-img',
|
||||
// hide: true,
|
||||
// labelWidth:'100',
|
||||
// span:11,
|
||||
// multiple:false,
|
||||
// width:"200px",
|
||||
// align:'left',
|
||||
//
|
||||
// viewDisplay: true,
|
||||
// addDisplay: false,
|
||||
// editDisplay: false,
|
||||
// },
|
||||
], |
||||
}; |
||||
export const columnList = [ |
||||
{ |
||||
prop: '', |
||||
label: '复选框', |
||||
type: 0, |
||||
width: 55, |
||||
fixed: true, |
||||
}, |
||||
{ |
||||
prop: '', |
||||
label: '序号', |
||||
type: 12, |
||||
values: '', |
||||
width: 55, |
||||
fixed: true, |
||||
}, |
||||
{ |
||||
prop: 'warehouseName', |
||||
label: '仓库名称', |
||||
type: 3, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
head: false, |
||||
}, |
||||
{ |
||||
prop: 'goodsAreaName', |
||||
label: '货区名称', |
||||
type: 2, |
||||
values: '', |
||||
width: '150', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'goodsShelfName', |
||||
label: '货架名称', |
||||
type: 2, |
||||
values: '', |
||||
width: '130', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'goodsAllocationName', |
||||
label: '货位名称', |
||||
type: 2, |
||||
values: '', |
||||
width: '130', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'layerNum', |
||||
label: '所在层', |
||||
type: 2, |
||||
values: '', |
||||
width: '130', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'columnNum', |
||||
label: '所在列', |
||||
type: 2, |
||||
values: '', |
||||
width: '130', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'enableStatus', |
||||
label: '启用状态', |
||||
type: 3, |
||||
values: '', |
||||
width: '130', |
||||
checkarr: [ |
||||
{ label: '启用', value: '1' }, |
||||
{ label: '禁用', value: '2' }, |
||||
], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'allocationStatus', |
||||
label: '货位状态', |
||||
type: 3, |
||||
values: '', |
||||
width: '130', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: 'oldQrCode', |
||||
label: '旧货位码', |
||||
type: 2, |
||||
values: '', |
||||
width: '130', |
||||
checkarr: [], |
||||
fixed: false, |
||||
sortable: true, |
||||
}, |
||||
{ |
||||
prop: '', |
||||
label: '操作', |
||||
type: 6, |
||||
values: '', |
||||
width: '200', |
||||
checkarr: [], |
||||
fixed: 'right', |
||||
sortable: true, |
||||
}, |
||||
]; |
||||
|
@ -0,0 +1,331 @@
|
||||
export default { |
||||
height: 'auto', |
||||
calcHeight: 30, |
||||
tip: false, |
||||
searchShow: false, //搜索展开
|
||||
searchMenuSpan: 6, |
||||
border: true, |
||||
index: true, |
||||
viewBtn: false, |
||||
selection: true, |
||||
editBtn: false, |
||||
delBtn: false, |
||||
addBtn: false, |
||||
indexWidth: '100', |
||||
indexLabel: '序号', |
||||
dialogClickModal: false, |
||||
column: [ |
||||
{ |
||||
label: '租户号', |
||||
prop: 'tenantId', |
||||
type: 'input', |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '创建人', |
||||
prop: 'createUser', |
||||
type: 'input', |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '创建时间', |
||||
prop: 'createTime', |
||||
type: 'input', |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '更新人', |
||||
prop: 'updateUser', |
||||
type: 'input', |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '更新时间', |
||||
prop: 'updateTime', |
||||
type: 'input', |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '状态', |
||||
prop: 'status', |
||||
type: 'input', |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '是否已删除;1-未删除,2-已删除', |
||||
prop: 'isDeleted', |
||||
type: 'input', |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '创建部门', |
||||
prop: 'createDept', |
||||
type: 'input', |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '主键', |
||||
prop: 'id', |
||||
type: 'input', |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
width: 'fit-content', |
||||
}, |
||||
// {
|
||||
// label: "预留1",
|
||||
// prop: "reserve1",
|
||||
// type: "input",
|
||||
// },
|
||||
// {
|
||||
// label: "预留2",
|
||||
// prop: "reserve2",
|
||||
// type: "input",
|
||||
// },
|
||||
// {
|
||||
// label: "预留3",
|
||||
// prop: "reserve3",
|
||||
// type: "input",
|
||||
// },
|
||||
// {
|
||||
// label: "预留4",
|
||||
// prop: "reserve4",
|
||||
// type: "input",
|
||||
// },
|
||||
// {
|
||||
// label: "预留5",
|
||||
// prop: "reserve5",
|
||||
// type: "input",
|
||||
// },
|
||||
{ |
||||
label: '仓库名称', |
||||
prop: 'warehouseName', |
||||
type: 'input', |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
align: 'center', |
||||
labelWidth: '100', |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '货区名称', |
||||
prop: 'goodsAreaName', |
||||
type: 'input', |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
align: 'center', |
||||
labelWidth: '100', |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '货架名称', |
||||
prop: 'goodsShelfName', |
||||
type: 'input', |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
align: 'center', |
||||
labelWidth: '100', |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '货架', |
||||
prop: 'nodeInfo', |
||||
type: 'cascader', |
||||
width: 'fit-content', |
||||
search: true, |
||||
labelWidth: '100', |
||||
clearable: true, |
||||
placeholder: '仓库/货区/货架', |
||||
dicUrl: '/api/logpm-basicdata/goodsAllocation/getNode', |
||||
// dicData:dicData ,
|
||||
props: { |
||||
label: 'label', |
||||
value: 'value', |
||||
children: 'children', |
||||
leaf: 'leaf', |
||||
}, |
||||
addDisplay: true, |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: true, |
||||
}, |
||||
{ |
||||
label: '货位名称', |
||||
prop: 'goodsAllocationName', |
||||
type: 'input', |
||||
addDisplay: true, |
||||
editDisplay: true, |
||||
align: 'center', |
||||
labelWidth: '100', |
||||
width: 'fit-content', |
||||
rules: [ |
||||
{ |
||||
required: true, |
||||
message: '请输入货位名称', |
||||
trigger: 'blur', |
||||
}, |
||||
], |
||||
}, |
||||
{ |
||||
label: '所在层', |
||||
prop: 'layerNum', |
||||
type: 'input', |
||||
align: 'center', |
||||
labelWidth: '100', |
||||
addDisplay: true, |
||||
editDisplay: true, |
||||
viewDisplay: true, |
||||
hide: false, |
||||
search: true, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '所在列', |
||||
prop: 'columnNum', |
||||
type: 'input', |
||||
align: 'center', |
||||
labelWidth: '100', |
||||
addDisplay: true, |
||||
editDisplay: true, |
||||
viewDisplay: true, |
||||
hide: false, |
||||
search: true, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '启用状态', |
||||
prop: 'enableStatus', |
||||
type: 'select', |
||||
search: false, |
||||
labelWidth: '100', |
||||
dicUrl: '/api/blade-system/dict-biz/dictionary?code=enable_status', |
||||
props: { |
||||
label: 'dictValue', |
||||
value: 'dictKey', |
||||
}, |
||||
addDisplay: false, |
||||
align: 'center', |
||||
editDisplay: false, |
||||
viewDisplay: false, |
||||
hide: false, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '货位状态', |
||||
prop: 'allocationStatus', |
||||
type: 'select', |
||||
search: true, |
||||
labelWidth: '100', |
||||
dicUrl: '/api/blade-system/dict-biz/dictionary?code=allocation_status', |
||||
props: { |
||||
label: 'dictValue', |
||||
value: 'dictKey', |
||||
}, |
||||
addDisplay: false, |
||||
align: 'center', |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '货位码', |
||||
prop: 'qrCode', |
||||
type: 'input', |
||||
align: 'center', |
||||
labelWidth: '100', |
||||
viewDisplay: true, |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
hide: true, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '旧ID', |
||||
prop: 'oldId', |
||||
type: 'input', |
||||
align: 'center', |
||||
labelWidth: '100', |
||||
viewDisplay: true, |
||||
addDisplay: false, |
||||
editDisplay: false, |
||||
hide: true, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '旧货位码', |
||||
prop: 'oldQrCode', |
||||
type: 'input', |
||||
align: 'center', |
||||
labelWidth: '100', |
||||
viewDisplay: true, |
||||
addDisplay: false, |
||||
editDisplay: true, |
||||
width: 'fit-content', |
||||
}, |
||||
{ |
||||
label: '模 板', |
||||
prop: 'templateId', |
||||
type: 'select', |
||||
align: 'center', |
||||
labelWidth: '100', |
||||
dicUrl: '/api/logpm-basic/printTemplate/getTemplate?templateType=8', |
||||
props: { |
||||
label: 'templateName', |
||||
value: 'id', |
||||
}, |
||||
viewDisplay: true, |
||||
addDisplay: true, |
||||
editDisplay: false, |
||||
width: 'fit-content', |
||||
hide: true, |
||||
}, |
||||
// {
|
||||
// label: "二维码图片",
|
||||
// prop: "qrCodeUrl",
|
||||
// type: "upload",
|
||||
// dataType: 'string',
|
||||
// listType: 'picture-img',
|
||||
// hide: true,
|
||||
// labelWidth:'100',
|
||||
// span:11,
|
||||
// multiple:false,
|
||||
// width:"200px",
|
||||
// align:'left',
|
||||
//
|
||||
// viewDisplay: true,
|
||||
// addDisplay: false,
|
||||
// editDisplay: false,
|
||||
// },
|
||||
], |
||||
}; |
@ -1,377 +0,0 @@
|
||||
<template> |
||||
<basic-container v-loading="details.loadingObj.pageLoading"> |
||||
<div class="avue-crud"> |
||||
<!-- 搜索模块 --> |
||||
<div v-h5uShow="!search"> |
||||
<!-- 查询模块 --> |
||||
<el-form :inline="true" :model="query" class="header_search"> |
||||
<el-form-item label="货架:"> |
||||
<el-select class="w100" v-model="query.abnormalStatus" clearable placeholder="异常状态"> |
||||
<el-option label="待处理" :value="0" /> |
||||
<el-option label="完结" :value="1" /> |
||||
</el-select> |
||||
</el-form-item> |
||||
|
||||
<el-form-item label="所在层" class="el-times"> |
||||
<el-input v-model="query.waybillNo" clearable placeholder="请输入运单号"></el-input> |
||||
</el-form-item> |
||||
|
||||
<!-- 查询按钮 --> |
||||
<el-form-item class="el-btn"> |
||||
<el-button type="primary" icon="el-icon-search" @click="searchChange">搜 索</el-button> |
||||
<el-button icon="el-icon-delete" @click="searchReset">清 空</el-button> |
||||
</el-form-item> |
||||
</el-form> |
||||
</div> |
||||
|
||||
<!-- 控件模块 --> |
||||
<div class="avue-crud__header"> |
||||
<!-- 头部左侧按钮模块 --> |
||||
<div class="avue-crud__left"> |
||||
<!-- 禁用 --> |
||||
<el-button type="primary" icon="Delete" @click="handleAdd">禁 用</el-button> |
||||
<el-button type="primary" icon="CircleCheck" @click="handleAdd">启 用</el-button> |
||||
<el-button type="primary" icon="Refresh" @click="handleAdd">一键下架</el-button> |
||||
<el-button type="primary" icon="Printer" @click="handleAdd">查看二维码</el-button> |
||||
</div> |
||||
|
||||
<!-- 头部右侧按钮模块 --> |
||||
<div class="avue-crud__right"> |
||||
<el-button icon="el-icon-refresh" @click="searchChange" circle></el-button> |
||||
<el-button icon="Operation" @click="showdrawer(true)" circle></el-button> |
||||
<el-button icon="Search" @click="searchHide" circle></el-button> |
||||
</div> |
||||
</div> |
||||
|
||||
<!-- 列表模块 --> |
||||
<tablecmt |
||||
:columnList="details.columnList" |
||||
:tableData="data" |
||||
:loading="details.loadingObj.list" |
||||
@inputTxt="inputsc" |
||||
@timeCheck="timesc" |
||||
@selectCheck="selectsc" |
||||
@selection="selectionChange" |
||||
> |
||||
<template #default="slotProps"> |
||||
<template v-if="slotProps.scope.column.label === '操作'"> |
||||
<el-text>查看</el-text> |
||||
<el-text>禁用</el-text> |
||||
<el-text>一键下架</el-text> |
||||
</template> |
||||
</template> |
||||
</tablecmt> |
||||
|
||||
<!-- 分页模块 --> |
||||
<div class="flex-c-sb"> |
||||
<div style="font-size: 14px">勾选数量: {{ selectionList.length }}</div> |
||||
<!-- 分页模块 --> |
||||
<el-pagination |
||||
align="right" |
||||
background |
||||
@size-change="sizeChange" |
||||
@current-change="currentChange" |
||||
:current-page="page.pageNum" |
||||
:page-sizes="[30, 50, 80, 120]" |
||||
:page-size="page.pageSize" |
||||
layout="total, sizes, prev, pager, next, jumper" |
||||
:total="page.total" |
||||
> |
||||
</el-pagination> |
||||
</div> |
||||
</div> |
||||
</basic-container> |
||||
|
||||
<!-- 列表配置显示 --> |
||||
<edittablehead |
||||
@closce="showdrawer" |
||||
:drawerShow="drawerShow" |
||||
v-model="details.columnList" |
||||
:columnList="details.columnList" |
||||
></edittablehead> |
||||
</template> |
||||
|
||||
<script setup lang="ts"> |
||||
import { ref, reactive, toRefs, computed, onMounted, nextTick } from 'vue'; |
||||
import functions from '@/utils/functions.js'; |
||||
import dayjs from 'dayjs'; |
||||
import { mapGetters } from 'vuex'; |
||||
/** 获取字典 */ |
||||
import { getDictionaryBiz } from '@/api/system/dict'; |
||||
import { |
||||
downloadXls, |
||||
setNodeHeight, |
||||
getHtmls, |
||||
deepClone, |
||||
handleClearTableQuery, |
||||
getObjType, |
||||
handleSelectQuery, |
||||
handleInputQuery, |
||||
handleTranslationDataSeclect, |
||||
} from '@/utils/util'; |
||||
import { columnList } from '@/option/basicdata/basicdataVehicleInfo'; |
||||
import { useRouter } from 'vue-router'; |
||||
import { ElMessage, ElMessageBox } from 'element-plus'; |
||||
import { getToken } from '@/utils/auth'; |
||||
import { postFindPageList, postDealAbnormal } from '@/api/distribution/abnormalList'; |
||||
|
||||
// 获取路由实例 |
||||
const $router = useRouter(); |
||||
|
||||
// 组件实例 |
||||
const formRef = ref(); |
||||
|
||||
const details = reactive<any>({ |
||||
/** 是否开启搜索 */ |
||||
search: true, |
||||
/** 表格搜索条件 */ |
||||
query: {}, |
||||
/** 时间快捷选择设置 */ |
||||
shortcuts: [ |
||||
{ |
||||
text: '最近一周', |
||||
value: () => { |
||||
const end = new Date(); |
||||
const start = new Date(); |
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7); |
||||
return [start, end]; |
||||
}, |
||||
}, |
||||
{ |
||||
text: '最近一个月', |
||||
value: () => { |
||||
const end = new Date(); |
||||
const start = new Date(); |
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 30); |
||||
return [start, end]; |
||||
}, |
||||
}, |
||||
{ |
||||
text: '最近三个月', |
||||
value: () => { |
||||
const end = new Date(); |
||||
const start = new Date(); |
||||
start.setTime(start.getTime() - 3600 * 1000 * 24 * 90); |
||||
return [start, end]; |
||||
}, |
||||
}, |
||||
], |
||||
/** 时间选择器数据 */ |
||||
stockupDate: [], |
||||
/** 列表 */ |
||||
columnList: deepClone(columnList), |
||||
/** 列表数据 */ |
||||
data: [], |
||||
/** 页面loading */ |
||||
loadingObj: { |
||||
/** 列表加载loading */ |
||||
list: false, |
||||
packageListLoading: false, |
||||
/** 页面loading */ |
||||
pageLoading: false, |
||||
}, |
||||
/** 列表复选框选中的数据 */ |
||||
selectionList: [], |
||||
/** 是否显示设置表格 */ |
||||
drawerShow: false, |
||||
/** 分页参数 */ |
||||
page: { |
||||
pageNum: 1, |
||||
pageSize: 30, |
||||
total: 0, |
||||
}, |
||||
/** 弹出层显示 */ |
||||
popUpShow: { |
||||
/** 图片预览 */ |
||||
vehicleInfoVisited: false, |
||||
}, |
||||
/** 列表Dom节点 */ |
||||
listNode: '', |
||||
form: {}, |
||||
/** 全屏 */ |
||||
fullscreenObj: { |
||||
/** 查看 */ |
||||
view: false, |
||||
}, |
||||
}); |
||||
|
||||
const { search, query, data, loadingObj, selectionList, drawerShow, page } = toRefs(details); |
||||
|
||||
/** vuex */ |
||||
const permission = computed(() => mapGetters(['permission', 'tagWel', 'tagList'])); |
||||
|
||||
const initData = async () => { |
||||
try { |
||||
const res = await getDictionaryBiz('basic_car_type'); |
||||
const { code, data } = res.data; |
||||
if (code !== 200) return; |
||||
details.vehicleModelOption = data; |
||||
for (let i = 0; i < details.columnList.length; i++) { |
||||
const value = details.columnList[i]; |
||||
|
||||
if (value.label !== '车辆类型') continue; |
||||
value.checkarr = data.map(val => { |
||||
return { label: val.dictValue, value: val.dictKey }; |
||||
}); |
||||
break; |
||||
} |
||||
} catch (error) { |
||||
console.log('error :>> ', error); |
||||
} finally { |
||||
} |
||||
}; |
||||
|
||||
initData(); |
||||
|
||||
/** 请求页面数据 */ |
||||
const onLoad = async (page?: any, params = {}) => { |
||||
try { |
||||
details.loadingObj.list = true; |
||||
let _page = details.page; |
||||
if (page) _page = page; |
||||
// 获取暂存单列表 |
||||
|
||||
const submitData = { ..._page, ...details.query, ...params }; |
||||
|
||||
const res = await postFindPageList(submitData); |
||||
console.log('res :>> ', res); |
||||
const { code, data } = res.data; |
||||
if (code !== 200) return; |
||||
details.data = data.records; |
||||
|
||||
handleTranslationDataSeclect(details.data, details.columnList); |
||||
|
||||
details.page.total = data.total; |
||||
} catch (error) { |
||||
console.log('error :>> ', error); |
||||
} finally { |
||||
details.loadingObj.list = false; |
||||
} |
||||
}; |
||||
|
||||
onLoad(); |
||||
|
||||
/** 搜索 */ |
||||
const searchChange = () => { |
||||
onLoad(details.page); |
||||
}; |
||||
|
||||
/** 清空表单 */ |
||||
const searchReset = () => { |
||||
details.query = {}; |
||||
details.stockupDate = []; |
||||
details.page.pageNum = 1; |
||||
handleClearTableQuery(details.columnList); |
||||
onLoad(details.page); |
||||
}; |
||||
|
||||
/** 展开列表控件 */ |
||||
const showdrawer = (_flag?: boolean) => { |
||||
details.drawerShow = _flag; |
||||
}; |
||||
|
||||
/** 是否开启搜索区 */ |
||||
const searchHide = () => { |
||||
details.search = !details.search; |
||||
|
||||
setNodeHeight(details.listNode, '', true); |
||||
}; |
||||
|
||||
/** 表格表头输入框搜索 */ |
||||
const inputsc = (index, row) => { |
||||
handleInputQuery(index, row, details.query); |
||||
onLoad(details.page); |
||||
}; |
||||
|
||||
/** 表格表头时间选择 */ |
||||
const timesc = (index, row) => { |
||||
console.log(index, row); |
||||
if (!!index) { |
||||
index = dayjs(index).format('YYYY-MM-DD'); |
||||
} |
||||
details.query[row.prop] = index; |
||||
if (!index) { |
||||
delete details.query[row.prop]; |
||||
} |
||||
onLoad(details.page); |
||||
}; |
||||
|
||||
/** 表格表头下拉框选择 */ |
||||
const selectsc = (index, row) => { |
||||
handleSelectQuery(index, row, details.query); |
||||
onLoad(details.page); |
||||
}; |
||||
|
||||
/** 表格表头复选框选择 */ |
||||
const selectionChange = (list: any) => { |
||||
details.selectionList = list; |
||||
}; |
||||
|
||||
/** 每页数量改变执行的回调 */ |
||||
const sizeChange = (pageSize: number) => { |
||||
details.page.pageSize = pageSize; |
||||
onLoad(details.page); |
||||
}; |
||||
|
||||
/** 页码改变执行的回调 */ |
||||
const currentChange = current => { |
||||
details.page.pageNum = current; |
||||
onLoad(); |
||||
}; |
||||
|
||||
/** 弹出层开启前清除数据 */ |
||||
const beforeClose = done => { |
||||
done(); |
||||
details.form = {}; |
||||
details.selectionList = []; |
||||
details.view = false; |
||||
}; |
||||
|
||||
/** 新增 */ |
||||
const handleAdd = () => { |
||||
details.popUpShow.vehicleInfoVisited = true; |
||||
|
||||
details.form = {}; |
||||
for (let i = 0; i < details.formOption.length; i++) { |
||||
const value = details.formOption[i]; |
||||
if (value.label === '车辆类型') continue; |
||||
details.form[value.prop] = 0; |
||||
} |
||||
}; |
||||
</script> |
||||
|
||||
<style scoped lang="scss"> |
||||
// 日期选择器 |
||||
:deep(.el-date-editor.el-input) { |
||||
height: 100% !important; |
||||
width: 100% !important; |
||||
} |
||||
|
||||
:deep(.el-range-editor.el-input__wrapper) { |
||||
height: 100% !important; |
||||
} |
||||
|
||||
.mt20 { |
||||
margin-top: 20px; |
||||
} |
||||
|
||||
.fwb { |
||||
font-weight: bold; |
||||
} |
||||
|
||||
:deep(.el-tag) { |
||||
border: none; |
||||
|
||||
&.blue { |
||||
background: var(--el-color-primary); |
||||
} |
||||
} |
||||
|
||||
:deep(.el-input-number .el-input__inner) { |
||||
text-align: left !important; |
||||
} |
||||
|
||||
.text-right { |
||||
text-align: right; |
||||
} |
||||
</style> |
@ -0,0 +1,572 @@
|
||||
<template> |
||||
<basic-container v-loading="loadingObj.pageLoading"> |
||||
<avue-crud |
||||
:option="option" |
||||
v-model:search="search" |
||||
v-model:page="page" |
||||
v-model="form" |
||||
:table-loading="loading" |
||||
:data="data" |
||||
:permission="permissionList" |
||||
:before-open="beforeOpen" |
||||
ref="crud" |
||||
@row-update="rowUpdate" |
||||
@row-save="rowSave" |
||||
@row-del="rowDel" |
||||
@search-change="searchChange" |
||||
@search-reset="searchReset" |
||||
@selection-change="selectionChange" |
||||
@current-change="currentChange" |
||||
@size-change="sizeChange" |
||||
@refresh-change="refreshChange" |
||||
@on-load="onLoad" |
||||
> |
||||
<template #menu-left> |
||||
<el-button type="danger" icon="el-icon-delete" plain @click="handleDisable" |
||||
>禁 用 |
||||
</el-button> |
||||
<el-button type="danger" icon="el-icon-check" plain @click="handleEnable">启 用 </el-button> |
||||
<el-button type="danger" icon="el-icon-minus" plain @click="downAllocation" |
||||
>一 键 下 架 |
||||
</el-button> |
||||
<!-- <el-button type="warning"--> |
||||
<!-- plain--> |
||||
<!-- icon="el-icon-download"--> |
||||
<!-- @click="handleExport">导 出--> |
||||
<!-- </el-button>--> |
||||
<el-button type="warning" plain icon="el-icon-camera" @click="handleqr" |
||||
>查看二维码 |
||||
</el-button> |
||||
</template> |
||||
|
||||
<template #menu="{ size, row, index }"> |
||||
<el-button type="primary" text icon="el-icon-view" @click="handleView(row)" |
||||
>查 看</el-button |
||||
> |
||||
<el-button |
||||
type="primary" |
||||
text |
||||
icon="el-icon-view" |
||||
v-if="row.enableStatus == 1" |
||||
@click="losses(row, 2)" |
||||
>禁 用</el-button |
||||
> |
||||
<el-button |
||||
type="primary" |
||||
text |
||||
icon="el-icon-view" |
||||
v-if="row.allocationStatus !== '1'" |
||||
@click="Offshelf(row)" |
||||
>一 键 下 架</el-button |
||||
> |
||||
<el-button |
||||
type="primary" |
||||
text |
||||
icon="el-icon-view" |
||||
v-if="row.enableStatus == 2" |
||||
@click="losses(row, 1)" |
||||
>启 用</el-button |
||||
> |
||||
</template> |
||||
</avue-crud> |
||||
<el-dialog title="二维码" :visible.sync="dialogVisible" width="600px" v-model="dialogVisible"> |
||||
<div class="print_QRCode"> |
||||
<!-- <div v-for="(item,index) in qrCodeObj" class="pdf-dom">--> |
||||
<!-- <el-divider></el-divider>--> |
||||
|
||||
<!-- <el-row>--> |
||||
<!-- <el-col :span="24" >--> |
||||
<!-- <el-image width="10" height="10" w-full :key="index" :src="item " alt="Preview Image"/>--> |
||||
<!-- </el-col>--> |
||||
<!-- </el-row>--> |
||||
<!-- </div>--> |
||||
<!--startprint1--> |
||||
<div v-html="html"></div> |
||||
<!--endprint1--> |
||||
</div> |
||||
<span slot="footer" class="dialog-footer"> |
||||
<!-- <el-button type="primary" @click="ddd">导 出</el-button>--> |
||||
<el-button type="primary" @click="printTemplate">打 印</el-button> |
||||
<el-button type="primary" @click="dialogVisible = false">确 定</el-button> |
||||
<el-button @click="dialogVisible = false">取 消</el-button> |
||||
</span> |
||||
</el-dialog> |
||||
</basic-container> |
||||
</template> |
||||
|
||||
<script> |
||||
import { |
||||
getList, |
||||
getDetail, |
||||
add, |
||||
update, |
||||
remove, |
||||
getPrintTemplate, |
||||
shelf, |
||||
disable, |
||||
enable, |
||||
downAllocation, |
||||
} from '@/api/basicdata/basicdataGoodsAllocation'; |
||||
import option from '@/option/basicdata/basicdataGoodsAllocation11'; |
||||
import { mapGetters } from 'vuex'; |
||||
import { exportBlob } from '@/api/common'; |
||||
import { getToken } from '@/utils/auth'; |
||||
import { downloadXls } from '@/utils/util'; |
||||
import { dateNow } from '@/utils/date'; |
||||
import NProgress from 'nprogress'; |
||||
import 'nprogress/nprogress.css'; |
||||
import print from '@/utils/print'; |
||||
import { getLodop } from '@/utils/LodopFuncs'; |
||||
import { addlayer } from '@/api/basicdata/basicdataGoodsShelf'; |
||||
|
||||
export default { |
||||
data() { |
||||
return { |
||||
form: {}, |
||||
query: {}, |
||||
search: {}, |
||||
loading: true, |
||||
page: { |
||||
pageSize: 30, |
||||
currentPage: 1, |
||||
total: 0, |
||||
}, |
||||
selectionList: [], |
||||
option: option, |
||||
data: [], |
||||
imgUrl: '', |
||||
qrCodeObj: [], |
||||
dialogVisible: false, |
||||
html: '', // 页面包条码内容 |
||||
/** 页面loading */ |
||||
loadingObj: { |
||||
pageLoading: false, |
||||
}, |
||||
}; |
||||
}, |
||||
computed: { |
||||
...mapGetters(['permission']), |
||||
permissionList() { |
||||
return { |
||||
addBtn: this.validData(this.permission.BasicdataGoodsAllocation_add, false), |
||||
viewBtn: this.validData(this.permission.BasicdataGoodsAllocation_view, false), |
||||
delBtn: this.validData(this.permission.BasicdataGoodsAllocation_delete, false), |
||||
editBtn: this.validData(this.permission.BasicdataGoodsAllocation_edit, false), |
||||
}; |
||||
}, |
||||
ids() { |
||||
let ids = []; |
||||
this.selectionList.forEach(ele => { |
||||
ids.push(ele.id); |
||||
}); |
||||
return ids.join(','); |
||||
}, |
||||
}, |
||||
methods: { |
||||
rowSave(row, done, loading) { |
||||
//该仓库未设置货区、货架概念,货位直接和仓库进行绑定 |
||||
console.log(this.form); |
||||
if (this.form.nodeInfo.length === 1) { |
||||
this.$message({ |
||||
type: 'warning', |
||||
message: '请先为该仓库添加货区', |
||||
}); |
||||
} |
||||
if (this.form.nodeInfo.length === 2) { |
||||
console.log('>>>>>>', this.form.nodeInfo); |
||||
row.warehouseId = this.form.nodeInfo[0]; |
||||
row.goodsAreaId = this.form.nodeInfo[1]; |
||||
row.nodeInfo = null; |
||||
} |
||||
if (this.form.nodeInfo.length === 3) { |
||||
row.warehouseId = this.form.nodeInfo[0]; |
||||
row.goodsAreaId = this.form.nodeInfo[1]; |
||||
row.goodsShelfId = this.form.nodeInfo[2]; |
||||
row.nodeInfo = null; |
||||
} else { |
||||
done(); |
||||
this.$message({ |
||||
type: 'warning', |
||||
message: '请先完善货架信息!!!', |
||||
}); |
||||
return; |
||||
} |
||||
add(row).then( |
||||
() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: 'success', |
||||
message: '操作成功!', |
||||
}); |
||||
done(); |
||||
}, |
||||
error => { |
||||
loading(); |
||||
window.console.log(error); |
||||
} |
||||
); |
||||
}, |
||||
rowUpdate(row, index, done, loading) { |
||||
update(row).then( |
||||
() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: 'success', |
||||
message: '操作成功!', |
||||
}); |
||||
done(); |
||||
}, |
||||
error => { |
||||
loading(); |
||||
console.log(error); |
||||
} |
||||
); |
||||
}, |
||||
rowDel(row) { |
||||
this.$confirm('确定将选择数据删除?', { |
||||
confirmButtonText: '确定', |
||||
cancelButtonText: '取消', |
||||
type: 'warning', |
||||
}) |
||||
.then(() => { |
||||
return remove(row.id); |
||||
}) |
||||
.then(res => { |
||||
if (res.success) { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: 'success', |
||||
message: '操作成功!', |
||||
}); |
||||
} else { |
||||
this.$message({ |
||||
type: 'error', |
||||
message: '操作成功!', |
||||
}); |
||||
} |
||||
}); |
||||
}, |
||||
handleEdit(row) { |
||||
console.log('>>>>>>', row); |
||||
}, |
||||
losses(row, mub) { |
||||
if (mub == 2) { |
||||
this.$confirm('确认禁用?') |
||||
.then(_ => { |
||||
row.enableStatus = mub; |
||||
let id = row.id; |
||||
disable(id).then( |
||||
() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: 'success', |
||||
message: '操作成功!', |
||||
}); |
||||
}, |
||||
error => { |
||||
loading(); |
||||
console.log(error); |
||||
} |
||||
); |
||||
}) |
||||
.catch(_ => {}); |
||||
} else { |
||||
this.$confirm('确认启用?') |
||||
.then(_ => { |
||||
row.enableStatus = mub; |
||||
let id = row.id; |
||||
enable(id).then( |
||||
() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: 'success', |
||||
message: '操作成功!', |
||||
}); |
||||
}, |
||||
error => { |
||||
loading(); |
||||
console.log(error); |
||||
} |
||||
); |
||||
}) |
||||
.catch(_ => {}); |
||||
} |
||||
}, |
||||
Offshelf(row) { |
||||
this.$confirm('确认下架?') |
||||
.then(_ => { |
||||
shelf(row.id).then( |
||||
() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: 'success', |
||||
message: '操作成功!', |
||||
}); |
||||
}, |
||||
error => { |
||||
loading(); |
||||
console.log(error); |
||||
} |
||||
); |
||||
}) |
||||
.catch(_ => {}); |
||||
}, |
||||
handleDelete() { |
||||
if (this.selectionList.length === 0) { |
||||
this.$message.warning('请选择至少一条数据'); |
||||
return; |
||||
} |
||||
this.$confirm('确定将选择数据删除?', { |
||||
confirmButtonText: '确定', |
||||
cancelButtonText: '取消', |
||||
type: 'warning', |
||||
}) |
||||
.then(() => { |
||||
return remove(this.ids); |
||||
}) |
||||
.then(() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: 'success', |
||||
message: '操作成功!', |
||||
}); |
||||
this.$refs.crud.toggleSelection(); |
||||
}); |
||||
}, |
||||
handleDisable() { |
||||
if (this.selectionList.length === 0) { |
||||
this.$message.warning('请选择至少一条数据'); |
||||
return; |
||||
} |
||||
this.$confirm('确定将选择数据禁用?', { |
||||
confirmButtonText: '确定', |
||||
cancelButtonText: '取消', |
||||
type: 'warning', |
||||
}) |
||||
.then(() => { |
||||
return disable(this.ids); |
||||
}) |
||||
.then(() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: 'success', |
||||
message: '操作成功!', |
||||
}); |
||||
this.$refs.crud.toggleSelection(); |
||||
}); |
||||
}, |
||||
handleEnable() { |
||||
if (this.selectionList.length === 0) { |
||||
this.$message.warning('请选择至少一条数据'); |
||||
return; |
||||
} |
||||
this.$confirm('确定将选择数据启用?', { |
||||
confirmButtonText: '确定', |
||||
cancelButtonText: '取消', |
||||
type: 'warning', |
||||
}) |
||||
.then(() => { |
||||
return enable(this.ids); |
||||
}) |
||||
.then(() => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: 'success', |
||||
message: '操作成功!', |
||||
}); |
||||
this.$refs.crud.toggleSelection(); |
||||
}); |
||||
}, |
||||
downAllocation() { |
||||
if (this.selectionList.length === 0) { |
||||
this.$message.warning('请选择至少一条数据'); |
||||
return; |
||||
} |
||||
this.$confirm('确定将选择库位下架?', { |
||||
confirmButtonText: '确定', |
||||
cancelButtonText: '取消', |
||||
type: 'warning', |
||||
}).then(() => { |
||||
downAllocation(this.ids).then(response => { |
||||
this.onLoad(this.page); |
||||
this.$message({ |
||||
type: 'success', |
||||
message: response.data.msg, |
||||
}); |
||||
}); |
||||
}); |
||||
}, |
||||
//批量打印数据处理代码 |
||||
printTemplate() { |
||||
const printNode = document.querySelectorAll('.print_QRCode>div>div'); |
||||
console.log('printNode :>> ', printNode); |
||||
print(printNode, 'titlePrint'); |
||||
}, |
||||
async handleqr() { |
||||
try { |
||||
if (this.selectionList.length === 0) { |
||||
this.$message.warning('请选择至少一条数据'); |
||||
return; |
||||
} |
||||
|
||||
let checkcode = []; |
||||
this.selectionList.map(item => { |
||||
checkcode.push(item.id); |
||||
// checkcode.push(item.orderPackageCode) |
||||
}); |
||||
|
||||
let qr = checkcode.join(','); |
||||
console.log(qr); |
||||
this.html = ''; |
||||
this.loadingObj.pageLoading = true; |
||||
const res = await getPrintTemplate({ |
||||
ids: qr, |
||||
}); |
||||
|
||||
const { code, data } = res.data; |
||||
if (code !== 200) return; |
||||
|
||||
this.html = this.getHtmls(data.dataList, data.templateHtml); |
||||
this.dialogVisible = true; |
||||
} catch (error) { |
||||
console.log('error :>> ', error); |
||||
} finally { |
||||
this.loadingObj.pageLoading = false; |
||||
} |
||||
}, |
||||
handleExport() { |
||||
let downloadUrl = `/blade-BasicdataGoodsAllocation/BasicdataGoodsAllocation/export-BasicdataGoodsAllocation?${ |
||||
this.website.tokenHeader |
||||
}=${getToken()}`; |
||||
const {} = this.query; |
||||
let values = {}; |
||||
this.$confirm('是否导出数据?', '提示', { |
||||
confirmButtonText: '确定', |
||||
cancelButtonText: '取消', |
||||
type: 'warning', |
||||
}).then(() => { |
||||
NProgress.start(); |
||||
exportBlob(downloadUrl, values).then(res => { |
||||
downloadXls(res.data, `货位${dateNow()}.xlsx`); |
||||
NProgress.done(); |
||||
}); |
||||
}); |
||||
}, |
||||
async beforeOpen(done, type) { |
||||
// if (["edit", "view"].includes(type)) { |
||||
// await getDetail(this.form.id).then(async res => { |
||||
// // 这里还需要进行二维码图片显示 |
||||
// await getQRCode(this.form.qrCode).then(res=>{ |
||||
// let url = window.URL.createObjectURL(res.data); |
||||
// console.log("url>>>>>>>",url); |
||||
// this.form.qrCodeUrl = url; |
||||
// console.log(res); |
||||
// }) |
||||
// console.log(this.form); |
||||
// this.form = res.data.data; |
||||
// }); |
||||
// } |
||||
// done(); |
||||
if (['edit', 'view'].includes(type)) { |
||||
getDetail(this.form.id).then(res => { |
||||
this.form = res.data.data; |
||||
}); |
||||
} |
||||
done(); |
||||
}, |
||||
searchReset() { |
||||
this.query = {}; |
||||
this.onLoad(this.page); |
||||
}, |
||||
searchChange(params, done) { |
||||
this.query = params; |
||||
this.page.currentPage = 1; |
||||
this.onLoad(this.page, params); |
||||
done(); |
||||
}, |
||||
selectionChange(list) { |
||||
this.selectionList = list; |
||||
}, |
||||
selectionClear() { |
||||
this.selectionList = []; |
||||
this.$refs.crud.toggleSelection(); |
||||
}, |
||||
currentChange(currentPage) { |
||||
this.page.currentPage = currentPage; |
||||
}, |
||||
sizeChange(pageSize) { |
||||
this.page.pageSize = pageSize; |
||||
}, |
||||
refreshChange() { |
||||
this.onLoad(this.page, this.query); |
||||
}, |
||||
onLoad(page, params = {}) { |
||||
this.loading = true; |
||||
const { nodeInfo, enableStatus, allocationStatus, layerNum, columnNum } = this.query; |
||||
|
||||
let values = { |
||||
enableStatus: enableStatus, |
||||
allocationStatus: allocationStatus, |
||||
layerNum: layerNum, |
||||
columnNum: columnNum, |
||||
}; |
||||
if (!!this.query.nodeInfo) { |
||||
values.warehouseId = nodeInfo[0]; |
||||
values.goodsAreaId = nodeInfo[1]; |
||||
values.goodsShelfId = nodeInfo[2]; |
||||
} |
||||
getList(page.currentPage, page.pageSize, values).then(res => { |
||||
const data = res.data.data; |
||||
console.log(res, 'res================================================================>'); |
||||
this.page.total = data.total; |
||||
this.data = data.records; |
||||
this.loading = false; |
||||
this.selectionClear(); |
||||
}); |
||||
}, |
||||
|
||||
// 查看 |
||||
handleView(row) { |
||||
console.log('row :>> ', row); |
||||
this.$router.push({ |
||||
path: '/basicdata/warehouse/goodsAllocation/BasicdataGoodsAllocationDetails', |
||||
query: { |
||||
name: '详情+-+' + row.goodsAllocationName, |
||||
info: JSON.stringify(row), |
||||
}, |
||||
}); |
||||
}, |
||||
}, |
||||
}; |
||||
</script> |
||||
|
||||
<style scoped lang="scss"> |
||||
:deep(.no-print) { |
||||
margin-right: 0; |
||||
} |
||||
:deep(.avue-form__row) { |
||||
margin-left: 10px; |
||||
max-width: 300px !important; |
||||
} |
||||
.avue-form__group--flex { |
||||
justify-content: space-between; |
||||
} |
||||
:deep(.avue-form__row) { |
||||
margin-left: 0; |
||||
} |
||||
:deep(.el-form-item__label) { |
||||
width: auto !important; |
||||
} |
||||
:deep(.no-print) { |
||||
margin-left: auto; |
||||
.el-button { |
||||
margin-right: 0; |
||||
} |
||||
} |
||||
:deep(.el-card) { |
||||
height: 100%; |
||||
.el-card__body { |
||||
height: 100%; |
||||
} |
||||
} |
||||
</style> |
Loading…
Reference in new issue