diff --git a/App.vue b/App.vue index 95ccbe9..64ed1b8 100644 --- a/App.vue +++ b/App.vue @@ -6,6 +6,26 @@ export default { return {} }, async onLaunch(options) { + // const updateManager = uni.getUpdateManager() + // updateManager.onCheckForUpdate(function (res) { + // // 请求完新版本信息的回调 + // console.log(res.hasUpdate) + // }) + // updateManager.onUpdateReady(function (res) { + // uni.showModal({ + // title: '更新提示', + // content: '新版本已发布,重新启动应用', + // showCancel: false, + // confirmText: '立即更新', + // confirmColor: '#1890FF', + // success(res) { + // if (res.confirm) { + // // 新的版本已经下载好,调用 applyUpdate 应用新版本并重启 + // updateManager.applyUpdate() + // } + // } + // }) + // }) await this.initApp() }, methods: { @@ -35,4 +55,4 @@ export default { + \ No newline at end of file diff --git a/pages.json b/pages.json index d6741eb..bb3db05 100644 --- a/pages.json +++ b/pages.json @@ -194,6 +194,7 @@ "path": "invite/index", "style": { "navigationBarTitleText": "我的企业", + "enablePullDownRefresh": true, "componentPlaceholder": { "u-modal": "view", "uni-easyinput": "view" diff --git a/pages/login.vue b/pages/login.vue index 32021a8..613b237 100644 --- a/pages/login.vue +++ b/pages/login.vue @@ -102,16 +102,13 @@ export default { return } - if (user.userType) { - switch (user.userType) { - case 2: - uni.reLaunch({ - url: `/sub/invite/index` - }) - break - } + if (user.userType == 2) { + uni.reLaunch({ + url: `/sub/invite/index` + }) return } + // 局内用户首次登录 if (user.audit == null || user.audit == 1) { // 局内用户首次登录 diff --git a/sub/enterprise/detail.vue b/sub/enterprise/detail.vue index 4d53aec..afb1e89 100644 --- a/sub/enterprise/detail.vue +++ b/sub/enterprise/detail.vue @@ -93,7 +93,6 @@ 资质时限 - {{ $util.formatDate(prove.handleDate, 'YYYY/M/D') }} ~ {{ $util.formatDate(prove.expiryDate, 'YYYY/M/D') }} @@ -200,7 +199,8 @@ export default { 'enterprises_type', 'enterprises_area', 'enterprises_status', - 'enterprise_qualification_status' + 'enterprise_qualification_status', + 'enterprise_qua' ].join(',') }) this.dictMap = { @@ -229,7 +229,8 @@ export default { this.$util.viewPosition({ lat: position[0], lng: position[1], - name: enterprise.enterprisesName + name: enterprise.enterprisesName, + addree: enterprise.address }) }, postApi() { @@ -369,4 +370,4 @@ export default { color: #99a1b7; } } - \ No newline at end of file + diff --git a/sub/invite/addEnterprise.vue b/sub/invite/addEnterprise.vue index 0f0ad27..ca22e10 100644 --- a/sub/invite/addEnterprise.vue +++ b/sub/invite/addEnterprise.vue @@ -265,31 +265,29 @@ export default { this.form.id = res.id this.init() } - // 移除可能存在的旧监听器 - uni.$off('enterpriseIntroduce') - uni.$off('enterpriseTag') - uni.$off('prove') - - // 添加事件监听 - uni.$on('enterpriseIntroduce', data => { - this.form.introduction = data.introduce - }) - uni.$on('enterpriseTag', data => { - this.form.tags = data - }) - uni.$on('prove', data => { - console.log('资质', this.prove) - console.log('资质返回', data) - if (this.form.id != '') { - this.getProve() - } else { - this.prove.push(data) - } - }) - }, - onShow() { + // 移除可能存在的旧监听器 + uni.$off('enterpriseIntroduce') + uni.$off('enterpriseTag') + uni.$off('prove') + // 添加事件监听 + uni.$on('enterpriseIntroduce', data => { + this.form.introduction = data.introduce + }) + uni.$on('enterpriseTag', data => { + this.form.tags = data + }) + uni.$on('prove', data => { + console.log('资质', this.prove) + console.log('资质返回', data) + if (this.form.id != '') { + this.getProve() + } else { + this.prove.push(data) + } + }) }, + onShow() {}, methods: { proofName(v) { if (v.detail.value == '') return diff --git a/sub/invite/enterpriseIntroduce.vue b/sub/invite/enterpriseIntroduce.vue index e4504ad..69149ed 100644 --- a/sub/invite/enterpriseIntroduce.vue +++ b/sub/invite/enterpriseIntroduce.vue @@ -1,12 +1,33 @@