hookehuyr

fix 联系方式显示优化

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