diff --git a/App.vue b/App.vue index c159aa0..cd71cee 100644 --- a/App.vue +++ b/App.vue @@ -22,6 +22,7 @@ // } // }); // }) + console.log("wx.getDeviceInfo().platform",wx.getDeviceInfo()) const updateManager = uni.getUpdateManager(); updateManager.onCheckForUpdate(function(res) { console.log(res.hasUpdate) diff --git a/common/config.js b/common/config.js index 4f0fb9f..20fba7b 100644 --- a/common/config.js +++ b/common/config.js @@ -1,7 +1,7 @@ const mode = 'production'; //devLocal:本地测试、devOnline:线上测试、production:生产环境 let ROOTPATH = ''; //域名 // let baseUrl = "https://suzhoukeji-test.ali251.langye.net" -let baseUrl = "https://wx.sstbc.com" +let baseUrl = "https://wx.sstbc.com" switch (mode) { case 'devLocal': ROOTPATH = baseUrl diff --git a/components/applyForm/index.vue b/components/applyForm/index.vue index dbcdba3..18f4d21 100644 --- a/components/applyForm/index.vue +++ b/components/applyForm/index.vue @@ -243,9 +243,9 @@ if (item1.field === 'company_date') { this.$set(item1,'value',company.startDate||'') } - if (item1.field === 'company_product') { - this.$set(item1,'value',company.businessScope||'') - } + // if (item1.field === 'company_product') { + // this.$set(item1,'value',company.businessScope||'') + // } if (item1.field === 'company_type') { const company_type = company.tagList && Array.isArray(company.tagList)?company.tagList.join(','):'' const _arr = company_type.split(',') diff --git a/packages/my/index.vue b/packages/my/index.vue index 3b84355..d69cc23 100644 --- a/packages/my/index.vue +++ b/packages/my/index.vue @@ -379,7 +379,7 @@ console.log('选中的公司:', company); this.form.company_name = company.enterpriseName||''; this.form.company_date = company.startDate||''; - this.form.company_product = company.businessScope||''; + // this.form.company_product = company.businessScope||''; if(company.tagList && Array.isArray(company.tagList)){ this.form.company_type = company.tagList.join(','); }