diff --git a/klp-ui/src/views/wms/delivery/components/planList.vue b/klp-ui/src/views/wms/delivery/components/planList.vue index c500b184..10cfdb51 100644 --- a/klp-ui/src/views/wms/delivery/components/planList.vue +++ b/klp-ui/src/views/wms/delivery/components/planList.vue @@ -252,7 +252,7 @@ export default { /** 删除按钮操作 */ async handleDelete(row) { const planIds = row.planId || this.ids; - await this.$modal.confirm(`是否确认删除发货计划编号为"${planIds}"的数据项?`); + await this.$modal.confirm(`是否确认删除发货计划编号为"${planIds}"的数据项?会同时删除该计划下的所有发货单及明细且无法还原`); this.loading = true; await delDeliveryPlan(planIds).then(() => { this.loading = false; diff --git a/klp-ui/src/views/wms/delivery/waybill/index.vue b/klp-ui/src/views/wms/delivery/waybill/index.vue index 23cfb079..393f1566 100644 --- a/klp-ui/src/views/wms/delivery/waybill/index.vue +++ b/klp-ui/src/views/wms/delivery/waybill/index.vue @@ -194,7 +194,6 @@ export default { }, created() { this.getList(); - this.getPlanList(); }, methods: { /** 查询发货单列表 */ @@ -347,7 +346,7 @@ export default { /** 删除按钮操作 */ handleDelete(row) { const waybillIds = row.waybillId || this.ids; - this.$modal.confirm('是否确认删除发货单编号为"' + waybillIds + '"的数据项?').then(() => { + this.$modal.confirm('是否确认删除发货单编号为"' + waybillIds + '"的数据项?会同时删除该发货单的所有明细记录且无法恢复。').then(() => { this.loading = true; return delDeliveryWaybill(waybillIds); }).then(() => {