From 026072da4391a015e3b9746f3f91200de2a7db2d Mon Sep 17 00:00:00 2001 From: yf <770153798@qq.com> Date: Sun, 23 Mar 2025 23:32:37 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=20=E5=A4=9A=E8=AF=AD?= =?UTF-8?q?=E8=A8=80=E5=88=A0=E9=99=A4=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../createorder/components/OrderAddProductStep/ProductList.vue | 2 +- .../components/OrderAddProductStep/ProductSkuList.vue | 2 +- .../hangtag-ui-front/src/views/oms/order/createorder/index.vue | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hangtag-ui/hangtag-ui-front/src/views/oms/order/createorder/components/OrderAddProductStep/ProductList.vue b/hangtag-ui/hangtag-ui-front/src/views/oms/order/createorder/components/OrderAddProductStep/ProductList.vue index 0687b68..2ec7064 100644 --- a/hangtag-ui/hangtag-ui-front/src/views/oms/order/createorder/components/OrderAddProductStep/ProductList.vue +++ b/hangtag-ui/hangtag-ui-front/src/views/oms/order/createorder/components/OrderAddProductStep/ProductList.vue @@ -117,7 +117,7 @@ const addProduct = () => { const delProduct = () => { useMessage().confirm(t("delDataMessage")).then(() => { that.tableData = that.tableData.filter(item => item.productId !== that.selectRow.productId) - useMessage().notifySuccess(t("delSuccess")); + useMessage().notifySuccess(t("common.delSuccess")); emit('delRow', that.selectRow); emitter.emit(PRODUCT_DEL_ROW_EVENT, that.selectRow); if (that.tableData.length > 0) { diff --git a/hangtag-ui/hangtag-ui-front/src/views/oms/order/createorder/components/OrderAddProductStep/ProductSkuList.vue b/hangtag-ui/hangtag-ui-front/src/views/oms/order/createorder/components/OrderAddProductStep/ProductSkuList.vue index 894c8fd..5869b00 100644 --- a/hangtag-ui/hangtag-ui-front/src/views/oms/order/createorder/components/OrderAddProductStep/ProductSkuList.vue +++ b/hangtag-ui/hangtag-ui-front/src/views/oms/order/createorder/components/OrderAddProductStep/ProductSkuList.vue @@ -212,7 +212,7 @@ const delItem = (item) => { console.log("that.tableData", that.tableData, item) if (index != -1) { that.tableData.splice(index, 1); - useMessage().notifySuccess(t("delSuccess")); + useMessage().notifySuccess(t("common.delSuccess")); } emit("change", that.tableData) } diff --git a/hangtag-ui/hangtag-ui-front/src/views/oms/order/createorder/index.vue b/hangtag-ui/hangtag-ui-front/src/views/oms/order/createorder/index.vue index b90463e..3c17205 100644 --- a/hangtag-ui/hangtag-ui-front/src/views/oms/order/createorder/index.vue +++ b/hangtag-ui/hangtag-ui-front/src/views/oms/order/createorder/index.vue @@ -779,7 +779,7 @@ onMounted(() => { queryParams.id = ''; if (route.query) { queryParams.id = route.query.id ?? ''; - queryParams.type = route.query.type ?? ''; + queryParams.type = route.query._t ?? ''; } })