From b4d6944076f1df6eedaae35c4c2a7072fe988e8a Mon Sep 17 00:00:00 2001
From: Tomas <tomasysh@gmail.com>
Date: 星期二, 30 四月 2024 15:34:02 +0800
Subject: [PATCH] update: package-lock.json

---
 PAMapp/pages/recommendConsultant/index.vue |   34 ++++++++++++++++------------------
 1 files changed, 16 insertions(+), 18 deletions(-)

diff --git a/PAMapp/pages/recommendConsultant/index.vue b/PAMapp/pages/recommendConsultant/index.vue
index 5898e0c..5a85f14 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,
       },
       {
@@ -163,10 +164,7 @@
         label: Seniority.SENIOR,
       }
     ];
-    popularOptions = [{
-        title: '#��',
-        label: '��'
-      },
+    popularOptions = [
       {
         title: '#憭梯',
         label: '憭梯'
@@ -218,7 +216,7 @@
       },
       {
         title: '����',
-        content: '���������憸券�����鈭怒�����嚗���摰帘摰漲嚗��隞亙��澈��ˊ�靽���嚗�'
+        content: '���������憸券�����鈭怒�����嚗���摰帘摰漲嚗��隞亙��澈��ˊ�靽���嚗�'
       }
     ];
     showDialog = false;
@@ -239,7 +237,10 @@
     //////////////////////////////////////////////////////////////////////
     mounted() {
       if (!!this.recommendConsultantItem) {
-        this.strictQueryDto = JSON.parse(this.recommendConsultantItem);
+        this.strictQueryDto = {
+          ...this.strictQueryDto,
+          ...JSON.parse(this.recommendConsultantItem)
+        };
       }
     }
 
@@ -338,9 +339,6 @@
     }
 
     .down-icon {
-      color: #ED1B2E;
-      font-size: 25px;
-      align-self: center;
       margin-right: 15px;
     }
 

--
Gitblit v1.8.0