Xiao_123 6 mesiacov pred
rodič
commit
755f17f765

+ 5 - 5
src/views/about/index.vue

@@ -34,7 +34,7 @@
               <p class="font-size-18">{{ val.name }}</p>
               <p class="font-size-14 my-1">{{ val.job }}</p>
               <p class="font-size-14">{{ val.company }}</p>
-              <p class="font-size-14 mt-5">{{ val.desc }}</p>
+              <p class="font-size-14 mt-5" v-html="val.desc"></p>
             </div>
           </div>
         </div>
@@ -92,21 +92,21 @@ const introduce = [
     job: 'Seasoned Hotelier',
     company: 'Hotel and Tourism Consulting',
     avatar: 'https://minio.citupro.com/dev/menduner/home/about/%E5%9B%BE%E7%89%875.png',
-    desc: 'I wish to congratulate Simon Tian on the establishment of Menduner. There is no doubt of the future success for this enterprise and its clients given the proven ability, skills and professional experience that Simon and his team can provide.'
+    desc: 'I wish to congratulate Simon Tian on the establishment of Menduner. There is no doubt of the future success for this enterprise and its clients given the proven ability, <br/>skills and professional experience that Simon and his team can provide.'
   },
   {
     name: '肖君 先生',
     job: '高级运营副总裁',
     company: '朗廷酒店集团中国区域',
     avatar: 'https://minio.citupro.com/dev/menduner/home/about/%E5%9B%BE%E7%89%876.png',
-    desc: '门墩儿是专属于酒店行业的职业发展社交平台。希望能在这里携手更多志同道合的伙伴,追求我们共同的梦想。'
+    desc: '门墩儿是专属于酒店行业的职业发展社交平台。希望能在这里携手更多志同道合的伙伴,<br/>追求我们共同的梦想。'
   },
   {
     name: 'Nelson Li 李可',
     job: '泛海酒店投资管理有限公司副总经理',
     company: '武汉泛海费尔蒙酒店业主代表',
     avatar: 'https://minio.citupro.com/dev/menduner/home/about/%E5%9B%BE%E7%89%877.png',
-    desc: '世界每时每刻都在发生变化,唯一不变的是我们对于这个行业的初心和热情。很高兴看到一群有梦想的酒店人为了遇见更好的自己,为了中国酒店业的未来勇敢的迈出了这一步…“精诚所至 金石为开”,愿“门墩儿”与中国酒店人共同成长,加油!'
+    desc: '世界每时每刻都在发生变化,唯一不变的是我们对于这个行业的初心和热情。很高兴看到一群有梦想的酒店人为了遇见更好的自己,为了中国酒店业的未来勇敢的迈出了这一步…<br/>“精诚所至 金石为开”,愿“门墩儿”与中国酒店人共同成长,加油!'
   },
   {
     name: 'Gerhard H. Zimmer',
@@ -120,7 +120,7 @@ const introduce = [
     job: '创始人',
     company: '禾禾木文化发展有限公司',
     avatar: 'https://minio.citupro.com/dev/menduner/home/about/%E5%9B%BE%E7%89%879.png',
-    desc: '找到对的门,认识对的人. 门墩儿,比酒店人更懂酒店人,从这里开启不同的圈层,打开职业生涯你不敢想象的可能!'
+    desc: '找到对的门,认识对的人. 门墩儿,比酒店人更懂酒店人,从这里开启不同的圈层,<br/>打开职业生涯你不敢想象的可能!'
   }
 ]
 </script>

+ 2 - 0
src/views/recruit/enterprise/resume/components/screen.vue

@@ -115,6 +115,8 @@ const handleClick = (item, val) => {
 if (props.jobId) {
   const job = list.value.find(e => e.key === 'jobId')
   getJobList(job).then(data => {
+    console.log(data, 'data')
+    if (!data || !data.length) return
     const id = data.find(e => e.value === props.jobId)
     handleClick(id, job)
   })