fix(wms): 修复收货后模态框未关闭问题并移除废弃按钮

在收货详情页添加关闭模态框的逻辑,同时移除仓库概览页中已废弃的导出二维码按钮
This commit is contained in:
砂糖
2025-12-11 09:56:56 +08:00
parent 66c6d6d7c8
commit fc45301113
2 changed files with 2 additions and 1 deletions

View File

@@ -430,6 +430,7 @@ export default {
}).then(_ => {
this.$message.success("确认收货成功");
this.getList()
this.receiptModalVisible = false;
}).finally(() => {
this.buttonLoading = false;
});

View File

@@ -14,7 +14,7 @@
<div class="warehouse-container" v-if="selectedNodeId" v-loading="rightLoading" element-loading-text="加载中..."
element-loading-spinner="el-icon-loading">
<!-- 导出所有二维码 -->
<button buttonLoading type="primary" @click="exportAllQrcodes">导出二维码</button>
<!-- <button buttonLoading type="primary" @click="exportAllQrcodes">导出二维码</button> -->
<WarehouseBird :warehouse-list="warehouseList" @open-init-dialog="openInitDialog" />
</div>