diff --git a/pages/index.vue b/pages/index.vue index 22dac00..d53cdac 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -292,7 +292,6 @@ export default { curIndex > this.color.length ? 0 : curIndex++ return res }) - console.log('init', data) this.detail.legendData = data this.setPieData(data, this.detail.taskCompletionRate) this.getList() diff --git a/pages/login.vue b/pages/login.vue index 613b237..2f68d56 100644 --- a/pages/login.vue +++ b/pages/login.vue @@ -32,7 +32,6 @@ export default { // 初始化应用 async initApp() { await uni.hideTabBar() - console.log('initapp') uni.hideTabBar({ animation: false }) @@ -63,7 +62,6 @@ export default { resolve() }, fail: err => { - console.log('getOpenIdFail', err) reject() } }) @@ -90,7 +88,6 @@ export default { loginSuccess() { this.$store.dispatch('GetInfo').then(res => { this.handlerNavigateTo(res.data.user) - console.log('user', res.data.user) }) }, handlerNavigateTo(user) { diff --git a/sub/enterprise/detail.vue b/sub/enterprise/detail.vue index afb1e89..715e1ee 100644 --- a/sub/enterprise/detail.vue +++ b/sub/enterprise/detail.vue @@ -93,7 +93,7 @@ 资质时限 - {{ $util.formatDate(prove.expiryDate, 'YYYY/M/D') }} + {{ $util.formatDate(prove.expiryDate, 'YYYY年M月D日') }} @@ -230,7 +230,7 @@ export default { lat: position[0], lng: position[1], name: enterprise.enterprisesName, - addree: enterprise.address + address: enterprise.address }) }, postApi() { @@ -329,9 +329,10 @@ export default { flex-flow: row nowrap; gap: 12px; .image { - width: 96px; - height: 96px; + width: 196rpx; + height: 196rpx; border-radius: $cs-border-radius; + flex-shrink: 0; } } } diff --git a/sub/invite/enterpriseIntroduce.vue b/sub/invite/enterpriseIntroduce.vue index 69149ed..e533644 100644 --- a/sub/invite/enterpriseIntroduce.vue +++ b/sub/invite/enterpriseIntroduce.vue @@ -70,9 +70,11 @@ export default { } ::v-deep .u-textarea { min-height: 400rpx; + height: 400rpx; background-color: #f9f9f9 !important; border: 1px solid #f9f9f9; border-radius: 12px; + margin: 0; .u-textarea__count { background-color: #f9f9f9 !important; } diff --git a/sub/task/detail.vue b/sub/task/detail.vue index 3888a51..9ecead9 100644 --- a/sub/task/detail.vue +++ b/sub/task/detail.vue @@ -29,8 +29,8 @@ {{ `${$util.formatDate( detail.startDate, - 'YYYY/M/D' - )}~${$util.formatDate(detail.endDate, 'YYYY/M/D')}` + 'YYYY年M月D日' + )} 至 ${$util.formatDate(detail.endDate, 'YYYY年M月D日')}` }} @@ -164,7 +164,12 @@ > - + 已选择({{ isSelect.length }}) diff --git a/sub/task/record.vue b/sub/task/record.vue index d28e9af..37f7811 100644 --- a/sub/task/record.vue +++ b/sub/task/record.vue @@ -26,8 +26,8 @@ {{ `${$util.formatDate( detail.startDate, - 'YYYY/M/D' - )} 至 ${$util.formatDate(detail.endDate, 'YYYY/M/D')}` + 'YYYY年M月D日' + )} 至 ${$util.formatDate(detail.endDate, 'YYYY年M月D日')}` }} @@ -291,7 +291,8 @@ export default { this.$util.viewPosition({ lat: position[0], lng: position[1], - name: enterprise.address + name: enterprise.enterprisesName, + address: enterprise.address }) }, locate() { @@ -386,6 +387,7 @@ export default { gap: 4px; color: $uni-text-color-grey; display: flex; + flex-flow: row wrap; .tag { font-size: 12px; display: flex; diff --git a/utils/permission.js b/utils/permission.js index cb152e3..5a094a9 100644 --- a/utils/permission.js +++ b/utils/permission.js @@ -33,7 +33,6 @@ export function checkPermi(value) { export function checkRole(value) { if (value && value instanceof Array && value.length > 0) { const roles = store.getters && store.getters.roles - console.log(roles); const permissionRoles = value const super_admin = "admin" if (!roles) {