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 ?? ''; } })