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 @@
-
+
+
+
+ {{ introduce.length }}/500
+
+
diff --git a/sub/invite/index.vue b/sub/invite/index.vue
index fb56bc9..f22e017 100644
--- a/sub/invite/index.vue
+++ b/sub/invite/index.vue
@@ -1,12 +1,5 @@
-
+
暂无数据
-
-
+
@@ -112,7 +104,6 @@ export default {
inviteId: '',
list: [],
dictMap: {},
- isRefreshing: false,
share: {
title: '企业变更管理', // 标题
path: `/sub/invite/index?inviteId=${this.$store.getters.userId}`,
@@ -133,14 +124,10 @@ export default {
onShareAppMessage() {
return this.share
},
+ onPullDownRefresh() {
+ this.getList()
+ },
methods: {
- onRefresh(e) {
- this.isRefreshing = true
- this.getList()
- setTimeout(() => {
- this.isRefreshing = false
- }, 1000)
- },
getList() {
uni.showLoading({
title: '加载中...'
@@ -148,6 +135,7 @@ export default {
vertifyName({ enterpriseUserId: this.$store.getters.userId }).then(
res => {
this.list = res.data.list
+ uni.stopPullDownRefresh()
uni.hideLoading()
}
)
@@ -197,12 +185,14 @@ export default {
padding: 0 24rpx;
display: flex;
flex-flow: column nowrap;
- height: calc(100vh - env(safe-area-inset-bottom));
+ position: relative;
+ padding-bottom: 13vh;
&::-webkit-scrollbar {
display: none;
}
}
.emty {
+ margin-top: 24rpx;
border-radius: 8px;
height: 550rpx;
display: flex;
diff --git a/sub/task/detail.vue b/sub/task/detail.vue
index 412ae69..3888a51 100644
--- a/sub/task/detail.vue
+++ b/sub/task/detail.vue
@@ -376,6 +376,7 @@ export default {
taskId: this.detail.id
})
this.list.push(...data.list)
+ uni.stopPullDownRefresh()
this.load = 'loadmore'
if (this.list.length == data.total) {
this.load = 'nomore'
diff --git a/uni_modules/uview-ui/components/u-textarea/u-textarea.vue b/uni_modules/uview-ui/components/u-textarea/u-textarea.vue
index 2cd5fdc..badda00 100644
--- a/uni_modules/uview-ui/components/u-textarea/u-textarea.vue
+++ b/uni_modules/uview-ui/components/u-textarea/u-textarea.vue
@@ -1,47 +1,47 @@
-
-
- {{ innerValue.length }}/{{ maxlength }}
-
+
+
+
+ {{ innerValue.length }}/{{ maxlength }}
+
+
diff --git a/utils/ruoyi.js b/utils/ruoyi.js
index 8b055e7..70ea7ba 100644
--- a/utils/ruoyi.js
+++ b/utils/ruoyi.js
@@ -80,12 +80,14 @@ export function formatDate(date, format = 'YYYY-MM-DD HH:mm:ss') {
export function viewPosition({
lat,
lng,
- name = ''
+ name = '',
+ address = ''
}) {
uni.openLocation({
latitude: Number(lat),
longitude: Number(lng),
name,
+ address,
fail: (err) => {
console.log(err);
}