diff --git a/src/option/distribution/createTask.js b/src/option/distribution/createTask.js index ebc70fc2..1274f196 100644 --- a/src/option/distribution/createTask.js +++ b/src/option/distribution/createTask.js @@ -475,7 +475,7 @@ export const columnListInventory = [ { prop: 'materialCode', label: '物料编码', - type: 15, + type: 1, values: '', width: '150', checkarr: [], @@ -495,16 +495,16 @@ export const columnListInventory = [ head: false, }, - { - prop: '', - label: '操作', - type: 6, - values: '', - width: '120', - checkarr: [], - fixed: 'right', - sortable: false, - }, + // { + // prop: '', + // label: '操作', + // type: 6, + // values: '', + // width: '120', + // checkarr: [], + // fixed: 'right', + // sortable: false, + // }, ]; export const comparativecolumnList = [ diff --git a/src/views/distribution/checkInventoryTask/createTask.vue b/src/views/distribution/checkInventoryTask/createTask.vue index fced61e9..ea9ee65c 100644 --- a/src/views/distribution/checkInventoryTask/createTask.vue +++ b/src/views/distribution/checkInventoryTask/createTask.vue @@ -254,17 +254,27 @@ +
+
+ 导出数据 + 提交修改 + 盘点包件 + 删除包件 +
+
+ + +
+
- 导出数据 - 提交修改 - 盘点包件 - 删除包件 { Inventorydialog.value = true; //展开盘点明细 await nextTick(); // const _node = document.querySelector('.InventorytableNode'); - setNodeHeight(_node, '70vh', true); + setNodeHeight(_node, '60vh', true); tabclick(); //获取盘点明细数据 }; // 盘点明细编辑 @@ -1026,7 +1036,8 @@ const tabclick = async value => { await handleClearTableQuery(details.columnListInventory); //重置搜索表头搜索条件 InventoriedData(); //获取数据 }; -// 已盘点明细 + +// 盘点明细 const InventoriedData = value => { const { id, questNum } = DataRow.value; let data = { @@ -1058,6 +1069,18 @@ const InventoriedData = value => { details.loadingObj.inventorylist = false; }); }; + +// 盘点明细清空搜索条件 +const Inventoryempty = () => { + details.queryInventory = {}; + handleClearTableQuery(details.columnListInventory); //重置搜索表头搜索条件 + details.inventorypage.currentPage = 1; + InventoriedData(); +}; +// 盘点明细刷新 +const Inventorysearch = () => { + InventoriedData(); +}; // 删除盘点包件校验 const BatchdeletePackages = () => { if (!details.selectionList.length) { @@ -1172,7 +1195,7 @@ const Submitmodifications = () => { let _res = await $_updateDetailInfo(data); console.log(_res, '修改品类提交'); if (_res.data.code == 200) { - InventoriedData(); + await InventoriedData(); ElMessage({ message: _res.data.msg, type: 'success', @@ -1365,4 +1388,13 @@ const Inventorysynchronization = row => { padding: 0 10px; } } +.el_top_button { + margin: 8px 0; + display: flex; + justify-content: space-between; + .el_top_button_left { + display: flex; + align-items: center; + } +}