hookehuyr

fix

1 <!-- 1 <!--
2 * @Date: 2024-09-26 13:42:11 2 * @Date: 2024-09-26 13:42:11
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2024-10-25 16:57:33 4 + * @LastEditTime: 2024-10-25 18:04:57
5 * @FilePath: /hager/src/components/common/hagerHeader.vue 5 * @FilePath: /hager/src/components/common/hagerHeader.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -540,7 +540,7 @@ export default { ...@@ -540,7 +540,7 @@ export default {
540 border-radius: 1rem; 540 border-radius: 1rem;
541 border: 1px solid #E3F1F7; 541 border: 1px solid #E3F1F7;
542 background-color: #E3F1F7; 542 background-color: #E3F1F7;
543 - padding: 0.5rem 1rem; 543 + padding: 0.5rem 2rem 0.5rem 1rem;
544 overflow: hidden; 544 overflow: hidden;
545 width: 100%; 545 width: 100%;
546 input { 546 input {
......
1 <!-- 1 <!--
2 * @Date: 2024-09-29 14:26:41 2 * @Date: 2024-09-29 14:26:41
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2024-10-25 17:57:24 4 + * @LastEditTime: 2024-10-25 18:01:01
5 * @FilePath: /hager/src/views/product/detail.vue 5 * @FilePath: /hager/src/views/product/detail.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -84,7 +84,7 @@ ...@@ -84,7 +84,7 @@
84 <div @click="goToDownload" :class="['button', is_download_checked ? 'active' : '']">发送到邮箱</div> 84 <div @click="goToDownload" :class="['button', is_download_checked ? 'active' : '']">发送到邮箱</div>
85 </div> 85 </div>
86 <div class="info-list"> 86 <div class="info-list">
87 - <el-row :gutter="0" v-for="(file, idx) in item.list" :key="idx"> 87 + <el-row :gutter="0" v-for="(file, idx) in item.list" :key="idx" style="margin-bottom: 1rem;">
88 <el-col :span="18"> 88 <el-col :span="18">
89 <div class="info-list-title"> 89 <div class="info-list-title">
90 <el-row :gutter="0"> 90 <el-row :gutter="0">
......
1 <!-- 1 <!--
2 * @Date: 2024-10-20 16:57:48 2 * @Date: 2024-10-20 16:57:48
3 * @LastEditors: hookehuyr hookehuyr@gmail.com 3 * @LastEditors: hookehuyr hookehuyr@gmail.com
4 - * @LastEditTime: 2024-10-25 17:39:23 4 + * @LastEditTime: 2024-10-25 18:13:06
5 * @FilePath: /hager/src/views/search.vue 5 * @FilePath: /hager/src/views/search.vue
6 * @Description: 文件描述 6 * @Description: 文件描述
7 --> 7 -->
...@@ -14,7 +14,10 @@ ...@@ -14,7 +14,10 @@
14 <div slot="label" class="customer-label">产品&nbsp;&nbsp;<span>{{ count_product }}</span></div> 14 <div slot="label" class="customer-label">产品&nbsp;&nbsp;<span>{{ count_product }}</span></div>
15 <div class="search-product-list"> 15 <div class="search-product-list">
16 <div :class="['search-product-item', is_xs ? 'xs' : '']" v-for="(item, index) in product_list" :key="index"> 16 <div :class="['search-product-item', is_xs ? 'xs' : '']" v-for="(item, index) in product_list" :key="index">
17 - <div :class="['search-product-item-img', is_xs ? 'xs' : '']" :style="{ 'background-image': 'url('+ item.cover +')' }"></div> 17 + <div :class="['search-product-item-img', is_xs ? 'xs' : '']" :style="{ 'background-image': 'url('+ item.cover +')' }">
18 + <!-- <div :class="['search-product-item-img', is_xs ? 'xs' : '']"> -->
19 + <!-- <img style="width: 100%; height: auto;" :src="item.cover"> -->
20 + </div>
18 <p @click="goToDetail(item)" class="search-product-item-title">{{ item.product_name }}</p> 21 <p @click="goToDetail(item)" class="search-product-item-title">{{ item.product_name }}</p>
19 </div> 22 </div>
20 </div> 23 </div>
...@@ -286,11 +289,11 @@ export default { ...@@ -286,11 +289,11 @@ export default {
286 border-radius: 5px; 289 border-radius: 5px;
287 border: 1px solid #ECECEC; 290 border: 1px solid #ECECEC;
288 background-position: center; 291 background-position: center;
289 - background-size: 70%; 292 + background-size: 50%;
290 background-repeat: no-repeat; 293 background-repeat: no-repeat;
291 &.xs { 294 &.xs {
292 padding: 3rem 1rem; 295 padding: 3rem 1rem;
293 - background-size: 100%; 296 + background-size: 80%;
294 img { 297 img {
295 width: 100%; 298 width: 100%;
296 } 299 }
......