diff --git a/components/cs-text-more/index.vue b/components/cs-text-more/index.vue index bb90a7a..02bc62b 100644 --- a/components/cs-text-more/index.vue +++ b/components/cs-text-more/index.vue @@ -7,6 +7,7 @@ position: relative; transform: 0.2s all; color: inherit; + white-space: normal; " v-if="value.length < splitLength" > @@ -20,6 +21,7 @@ position: relative; transform: 0.2s all; color: inherit; + white-space: normal; " @tap="isShowAllText = !isShowAllText" > diff --git a/pages/index.vue b/pages/index.vue index 682c208..84d70af 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -287,15 +287,18 @@ export default { const res = await HomeApi.getPieData(this.queryParams) this.detail = res.data let curIndex = 0 + const colorMap = [] const split = 1 / this.detail.completionRate.length const data = this.detail.completionRate.map((item, index) => { + const color = `rgba(4, 180, 64,${1 - split * (index + 1)})` const res = { ...item, - color: `rgba(4, 180, 64,${split * (index + 1)})` + color } - curIndex > this.color.length ? 0 : curIndex++ + colorMap.push(color) return res }) + this.color = colorMap this.detail.legendData = data this.setPieData(data, this.detail.taskCompletionRate) this.getList() @@ -315,7 +318,7 @@ export default { pieData.push({ name: '', value: 100 - Number(max), - color: '#fff' + color: '#F9F9F9' }) } this.opts = { diff --git a/pages/task.vue b/pages/task.vue index 676c005..c4b5201 100644 --- a/pages/task.vue +++ b/pages/task.vue @@ -77,8 +77,11 @@ - - + + {{ task.title }} @@ -89,7 +92,7 @@ > - + {{ detail.enterprisesName }} @@ -28,11 +28,11 @@ - 环保负责人 - + 环保负责人 + {{ detail.contactName }} - 联系方式 + 联系方式 {{ detail.environmentalContactPhone }} @@ -42,7 +42,7 @@ v-for="(src, index) in detail.files" :key="index" :src="src.url" - mode="widthFix" + mode="aspectFit" class="image" > @@ -63,17 +63,17 @@ v-for="prove in detail.qualificationList" :key="prove.id" > - + - + 资质名称 {{ @@ -84,13 +84,13 @@ }} - + 资质编号 {{ prove.enterpriseAuth }} - + 资质时限 {{ $util.formatDate(prove.expiryDate, 'YYYY年M月D日') }} @@ -128,7 +128,7 @@ - 认领该企业 + 认领该企业 @@ -143,7 +143,7 @@ @cancel="postApi" > - + 是否审核? 请确保企业信息真实性 @@ -265,47 +265,47 @@ export default {