From b8523e80e9a5e8f93e540c92d5c77a18155e5d48 Mon Sep 17 00:00:00 2001 From: guoshuang Date: Thu, 27 Jul 2023 14:10:53 +0800 Subject: [PATCH] =?UTF-8?q?cosmoim-852=20fix=20=E6=B3=B0=E5=9B=BD=E5=A4=87?= =?UTF-8?q?=E4=BB=B6=E5=8F=91=E8=B4=A7=E9=BB=98=E8=AE=A4=E5=BA=93=E4=BD=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/login/login/index.vue | 2 +- src/pages/product/outbound/SpareDeliverGoods/index.vue | 10 ++++++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/pages/login/login/index.vue b/src/pages/login/login/index.vue index 34186c4..34c1885 100644 --- a/src/pages/login/login/index.vue +++ b/src/pages/login/login/index.vue @@ -173,7 +173,7 @@ export default class LoginPage extends BasePage { //修改俄罗斯版本号 this.Version = '1.1.41'; } else { - this.Version = '1.0.56'; + this.Version = '1.0.57'; } console.log('////', this.Version); } diff --git a/src/pages/product/outbound/SpareDeliverGoods/index.vue b/src/pages/product/outbound/SpareDeliverGoods/index.vue index d46431c..59c3aa8 100644 --- a/src/pages/product/outbound/SpareDeliverGoods/index.vue +++ b/src/pages/product/outbound/SpareDeliverGoods/index.vue @@ -68,14 +68,20 @@ import jPicker from '@/components/J-Picker/jPicker.vue'; }, }) export default class stoOutboundDom extends BasePage { - border: true; + border = true; model = model; form: any = {}; nxOutCode = ''; wlcode: any = ''; async onReady() { + let wlindex: any; await this.model.querywocodeList(); - this.wlcode = this.model.wlcodeList[0]; + this.model.wlcodeList.forEach((item, index) => { + if (item.label === 'SP09') { + wlindex = index; + } + }); + this.wlcode = this.model.wlcodeList[wlindex]; } async query() { if (this.nxOutCode == '') {