hookehuyr

fix

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