hookehuyr

fix 联系方式显示优化

<!--
* @Date: 2024-10-18 09:31:05
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-11-06 15:56:52
* @LastEditTime: 2024-12-10 12:12:59
* @FilePath: /hager/src/views/concat.vue
* @Description: 联系我们
-->
......@@ -41,9 +41,9 @@
<el-row v-for="(concat, idx) in item.list" :key="idx" :gutter="0" :style="{borderBottom: idx === item.list?.length - 1 ? '' : '1px solid #DADADA'}">
<el-col :span="12" v-for="(x, i) in concat" :key="i" :style="{borderRight: i%2 === 0 ? '1px solid #DADADA' : '', padding: '1.5rem 0'}">
<el-row :gutter="0">
<el-col :span="13" class="title"><span class="inner">{{ x.area }}</span></el-col>
<el-col :span="12" class="title"><span class="inner">{{ x.area }}</span></el-col>
<el-col :span="3" class="name outer"><p class="inner">{{ x.name }}</p></el-col>
<el-col :span="8" :class="['number', 'outer', x?.tel?.length >= 2 ? 'double' : '']">
<el-col :span="9" :class="['number', 'outer', x?.tel?.length >= 2 ? 'double' : '']">
<p v-for="(tel, index) in x.tel" :key="index" class="inner">{{ tel }}</p>
</el-col>
</el-row>
......