From 9bdb95c9e34cef640534e5e5a1e2225a80442000 Mon Sep 17 00:00:00 2001 From: HelenHuang <LinHuang@pollex.com.tw> Date: 星期四, 09 六月 2022 15:48:15 +0800 Subject: [PATCH] TODO#139894 [ footer -最下方說明與保經代合作 ] 文案修改 --- PAMapp/pages/recommendConsultant/index.vue | 27 ++++++++++++++------------- 1 files changed, 14 insertions(+), 13 deletions(-) diff --git a/PAMapp/pages/recommendConsultant/index.vue b/PAMapp/pages/recommendConsultant/index.vue index 1b59b21..e085da4 100644 --- a/PAMapp/pages/recommendConsultant/index.vue +++ b/PAMapp/pages/recommendConsultant/index.vue @@ -19,7 +19,7 @@ </div> <div class="pam-paragraph"> <div class="pb-10 mdTxt required"> - �閬岷������ + �鈭圾����� <span class="hint text--bold"> (�銴) </span> @@ -35,15 +35,14 @@ <SingleSelectBtn :singleSelected.sync="strictQueryDto.seniority" :options="seniorityOptions" /> </div> - <!-- <div class="pam-paragraph"> - TODO:���遛��漲 + <div class="pam-paragraph" v-if="!hideReviews"> <div class="pb-10 mdTxt">憿批�遛��漲</div> <el-rate class="pam-consultant-rate" v-model="strictQueryDto.avgScore"> </el-rate> - </div> --> + </div> <div class="pam-paragraph"> <div class="rec-popular"> - <div class="pb-10 mdTxt">���瑼Y揣</div> + <div class="pb-10 mdTxt">����摮�</div> <div class="hint text--bold ml-10">(�銴)</div> </div> <div class="rec-pop-container"> @@ -62,7 +61,7 @@ <PopUpFrame :isOpen.sync="showDialog"> <div class="qaTextTitle mdTxt"> - <strong>�閬岷������</strong> + <strong>�鈭圾�����</strong> </div> <div class="qa-dialog"> <div v-for="(qaText,index) in queaAboutList" @@ -96,12 +95,14 @@ import { StrictQueryDto } from "~/shared/models/strictQueryDto.model"; import { Gender } from "~/shared/models/enum/Gender"; import { Seniority } from "~/shared/models/enum/seniority"; + import { hideReviews } from '~/shared/const/hide-reviews'; const localStorage = namespace('localStorage'); @Component export default class RecommendConsultant extends Vue { isVisiblePopUp = false; + hideReviews = hideReviews; strictQueryDto: StrictQueryDto = { gender: '', area: '', @@ -149,12 +150,12 @@ ]; seniorityOptions = [{ title: '銝��', - subTitle: '撟湧翩銝����', + subTitle: '蝬風銝����', label: Seniority.UNLIMITED, }, { - title: '撟渲��', - subTitle: '蝯血僑頛犖銝�����', + title: '����', + subTitle: '���暑��遛暺�', label: Seniority.YOUNG, }, { @@ -239,7 +240,10 @@ ////////////////////////////////////////////////////////////////////// mounted() { if (!!this.recommendConsultantItem) { - this.strictQueryDto = JSON.parse(this.recommendConsultantItem); + this.strictQueryDto = { + ...this.strictQueryDto, + ...JSON.parse(this.recommendConsultantItem) + }; } } @@ -338,9 +342,6 @@ } .down-icon { - color: #ED1B2E; - font-size: 25px; - align-self: center; margin-right: 15px; } -- Gitblit v1.8.0