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 == '') {