diff --git a/components/cs-text-more/index.vue b/components/cs-text-more/index.vue index 02bc62b..dd3c272 100644 --- a/components/cs-text-more/index.vue +++ b/components/cs-text-more/index.vue @@ -51,7 +51,7 @@ export default { }, splitLength: { type: Number, - default: 60 + default: 100 } } } diff --git a/pages/enterprise.vue b/pages/enterprise.vue index de23a6f..17d9761 100644 --- a/pages/enterprise.vue +++ b/pages/enterprise.vue @@ -79,14 +79,6 @@ - - {{ - $dict.echoDicValue( - dictMap.enterprises_type, - enterprise.type - ) - }} - {{ $dict.echoDicValue( diff --git a/sub/enterprise/detail.vue b/sub/enterprise/detail.vue index 227457c..b5de15b 100644 --- a/sub/enterprise/detail.vue +++ b/sub/enterprise/detail.vue @@ -13,9 +13,6 @@ - - {{ $dict.echoDicValue(dictMap.enterprises_type, detail.type) }} - {{ $dict.echoDicValue(dictMap.enterprises_area, detail.region) }} @@ -33,7 +30,7 @@ {{ detail.contactName }} 联系方式 - + {{ detail.environmentalContactPhone }} @@ -206,6 +203,11 @@ export default { ...dict.data } }, + callPhone(number) { + uni.makePhoneCall({ + phoneNumber: number + }) + }, async init() { const res = await getEnterPrise(this.detail.id) this.detail = res.data diff --git a/sub/task/detail.vue b/sub/task/detail.vue index 6b5b4c9..52e425b 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')}` }} @@ -59,7 +59,7 @@ {{ isShowAllText ? detail.description - : `${detail.description.slice(1, 20)}...` + : `${detail.description.slice(1, 100)}...` }} {{ isShowAllText ? '收起' : '展开' }} @@ -164,14 +164,7 @@ > - - - + 已选择({{ isSelect.length }}) @@ -383,7 +376,6 @@ 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/sub/task/record.vue b/sub/task/record.vue index ad187ec..114c599 100644 --- a/sub/task/record.vue +++ b/sub/task/record.vue @@ -56,7 +56,7 @@ {{ isShowAllText ? detail.description - : `${detail.description.slice(1, 20)}...` + : `${detail.description.slice(1, 100)}...` }} {{ isShowAllText ? '收起' : '展开' }} @@ -76,9 +76,9 @@ {{ detail.enterprise.enterprisesName }} +