hookehuyr

fix

...@@ -219,7 +219,7 @@ export default { ...@@ -219,7 +219,7 @@ export default {
219 culture_list: [{ 219 culture_list: [{
220 id: '1', 220 id: '1',
221 img: 'https://cdn.ipadbiz.cn/hager/img/recruit/z12@2x.png', 221 img: 'https://cdn.ipadbiz.cn/hager/img/recruit/z12@2x.png',
222 - zh: '以人为本的家族企业', 222 + zh: '以人为本的企业',
223 en: 'People-Oriented', 223 en: 'People-Oriented',
224 text: '海格集团始终坚持以人为本,相信员工是成功的关键。秉承 <span style="color: #00ABE5;">真诚、勇气、正直</span> 的企业价值观,海格集团为员工创造温馨、和谐的工作氛围,员工可以从中享受灵活的工作方式。' 224 text: '海格集团始终坚持以人为本,相信员工是成功的关键。秉承 <span style="color: #00ABE5;">真诚、勇气、正直</span> 的企业价值观,海格集团为员工创造温馨、和谐的工作氛围,员工可以从中享受灵活的工作方式。'
225 }, { 225 }, {
......
1 <!-- 1 <!--
2 * @Date: 2024-09-29 15:49:27 2 * @Date: 2024-09-29 15:49:27
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2025-01-03 13:45:03 4 + * @LastEditTime: 2025-01-03 15:57:28
5 * @FilePath: /hager/src/views/solution/detail.vue 5 * @FilePath: /hager/src/views/solution/detail.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -280,6 +280,9 @@ export default { ...@@ -280,6 +280,9 @@ export default {
280 this.success_data_list = this.case_list[idx].list ?? []; 280 this.success_data_list = this.case_list[idx].list ?? [];
281 // this.category_description = this.case_list[idx].category_description ?? ''; 281 // this.category_description = this.case_list[idx].category_description ?? '';
282 this.case_img = this.case_list[idx].file?.img ? this.case_list[idx].file?.img : ['https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg']; 282 this.case_img = this.case_list[idx].file?.img ? this.case_list[idx].file?.img : ['https://fuss10.elemecdn.com/e/5d/4a731a90594a4af544c0c25941171jpeg.jpeg'];
283 + this.case_img.forEach(item => {
284 + item.thumbnail = item.value + '?imageView2/1/w/1370/h/850/q/75';
285 + })
283 this.product_list = this.case_list[idx].product ?? []; 286 this.product_list = this.case_list[idx].product ?? [];
284 this.activeSuccessIndex = 0 287 this.activeSuccessIndex = 0
285 this.activeProductIndex = 0 288 this.activeProductIndex = 0
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
22 </hager-box> 22 </hager-box>
23 <hager-box :class="[!is_xs ? 'box-n' : '']"> 23 <hager-box :class="[!is_xs ? 'box-n' : '']">
24 <hager-h1 title="行业解决方案" sub="Industry Solutions" style="margin: 2rem 0 1rem;"></hager-h1> 24 <hager-h1 title="行业解决方案" sub="Industry Solutions" style="margin: 2rem 0 1rem;"></hager-h1>
25 - <div>海格电气为建筑,能源,工业,基础设施等行业提供安全、稳定、可靠、智能的低压配电解决方案及KNX智能楼宇解决方案。</div> 25 + <div>海格为建筑、电力、能源、工业、基础设施等行业提供领先的电气与智能化解决方案与服务。</div>
26 <div v-if="!is_xs" class="hager-industry-solutions"> 26 <div v-if="!is_xs" class="hager-industry-solutions">
27 <el-row :gutter="20" v-for="(item, index) in splitListIntoChunks(solution_list)" :key="index"> 27 <el-row :gutter="20" v-for="(item, index) in splitListIntoChunks(solution_list)" :key="index">
28 <el-col :span="6" v-for="(x, idx) in item" :key="idx"> 28 <el-col :span="6" v-for="(x, idx) in item" :key="idx">
......