From cde284b5ec56e5fd0ed2ef4a436c8ed7250bf235 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: Fri, 28 Feb 2025 10:50:47 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=A6=96=E9=A1=B5=E5=9B=BE?= =?UTF-8?q?=E8=A1=A8=E9=A2=9C=E8=89=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/cs-text-more/index.vue | 2 + pages/index.vue | 9 ++- pages/task.vue | 9 ++- static/scss/global.scss | 4 ++ sub/enterprise/detail.vue | 72 ++++++++++----------- sub/inspection/record.vue | 28 ++++---- uni_modules/s-components/s-tabber/index.vue | 16 ++--- utils/ruoyi.js | 16 +++++ 8 files changed, 94 insertions(+), 62 deletions(-) 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 {