From f3f4537991d098f4199bf1de9ed61fe8284ff4ef Mon Sep 17 00:00:00 2001 From: guoshuang Date: Tue, 31 Jan 2023 15:09:01 +0800 Subject: [PATCH] =?UTF-8?q?cosmoim-852=20fix=20=E4=BF=84=E7=BD=97=E6=96=AF?= =?UTF-8?q?=E6=88=90=E5=93=81sto=E5=87=BA=E5=BA=93=E9=80=80=E6=89=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages.json | 8 + src/pages/product/STO-Outbound/Back.vue | 188 +++++++++++++++++++++++ src/pages/product/STO-Outbound/index.vue | 15 +- src/pages/product/STO-Outbound/model.ts | 9 ++ src/utils/page.ts | 1 + src/utils/url.ts | 1 + 6 files changed, 220 insertions(+), 2 deletions(-) create mode 100644 src/pages/product/STO-Outbound/Back.vue diff --git a/src/pages.json b/src/pages.json index e5c782d..53e761a 100644 --- a/src/pages.json +++ b/src/pages.json @@ -1282,6 +1282,14 @@ "navigationBarTextStyle": "white" // 状态栏字体为白色,只能为 white-白色,black-黑色 二选一 } }, + { + "path": "pages/product/STO-Outbound/Back", + "style": { + "navigationBarTitleText": "成品STO出库退扫", + "navigationStyle": "custom", // 隐藏系统导航栏 + "navigationBarTextStyle": "white" // 状态栏字体为白色,只能为 white-白色,black-黑色 二选一 + } + }, { "path": "pages/demo/index", "style": { diff --git a/src/pages/product/STO-Outbound/Back.vue b/src/pages/product/STO-Outbound/Back.vue new file mode 100644 index 0000000..e42c97d --- /dev/null +++ b/src/pages/product/STO-Outbound/Back.vue @@ -0,0 +1,188 @@ + + + + diff --git a/src/pages/product/STO-Outbound/index.vue b/src/pages/product/STO-Outbound/index.vue index f2c4a57..5bd4d32 100644 --- a/src/pages/product/STO-Outbound/index.vue +++ b/src/pages/product/STO-Outbound/index.vue @@ -80,12 +80,15 @@ - + {{ $t('message.Posting') }} - + {{ $t('message.po_Return') }} + + {{ $t('message.BackSweep') }} + @@ -199,6 +202,14 @@ export default class dnReceiptDom extends BasePage { //this.SunmitList = []; this.model.dnNoList.length = 0; } + BackSweep() { + // if (!this.form.orderNo) { + // this.customToast(this.$t('message.Commission_tips1') as any); + // return; + // } + //uni.setStorageSync('SweepCode', JSON.stringify(this.form.orderNo)); + this.toPage(this.page.product.outbound.stoBack); + } }