From 0402506b46ac8fab52737682a2700b32ec4d506f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=88=B1=7E=E6=B5=B7=7E=E7=88=B1=E6=B5=B7=E7=88=B1?= =?UTF-8?q?=E6=B5=B7=7E=E5=8F=B3?= <1828712314@qq.com> Date: Thu, 27 Feb 2025 15:12:56 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=BC=81=E4=B8=9A=E8=B5=84?= =?UTF-8?q?=E8=B4=A8=E5=90=8D=E7=A7=B0=E5=9B=9E=E6=98=BE=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- App.vue | 22 +- pages.json | 1 + pages/login.vue | 13 +- sub/enterprise/detail.vue | 9 +- sub/invite/addEnterprise.vue | 44 +-- sub/invite/enterpriseIntroduce.vue | 35 +- sub/invite/index.vue | 28 +- sub/task/detail.vue | 1 + .../components/u-textarea/u-textarea.vue | 363 +++++++++--------- utils/ruoyi.js | 4 +- 10 files changed, 274 insertions(+), 246 deletions(-) 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 @@