|
|
@@ -29,6 +29,7 @@
|
|
|
<div class="hot-item" v-for="item in vendors" :key="item.id">
|
|
|
<vendor-grid :info="item"></vendor-grid>
|
|
|
</div>
|
|
|
+ <div style="min-width:16px;height:100%"></div>
|
|
|
</div>
|
|
|
</scroll-view>
|
|
|
|
|
|
@@ -68,7 +69,7 @@
|
|
|
</span>
|
|
|
</filter-sort-bar>
|
|
|
</van-sticky>
|
|
|
- <sort-list :empty="empty" :loading="loading" :finish="finish" top="172rpx">
|
|
|
+ <sort-list :empty="empty" emptyText="敬请期待" :loading="loading" :finish="finish" top="172rpx">
|
|
|
<div>
|
|
|
<div class="grid-list" v-if="showType === 'grid'">
|
|
|
<div class="col-2" v-for="item in list" :key="item.id">
|
|
|
@@ -89,7 +90,7 @@
|
|
|
import Banner from '../components/Banner';
|
|
|
import { getBanner } from '../utils/commont';
|
|
|
import searchList from '../mixins/searchList';
|
|
|
-import VendorGrid from '../components/vendor/Grid';
|
|
|
+import VendorGrid from '../components/vendor/Grid.vue';
|
|
|
import VendorRow from '../components/vendor/Row';
|
|
|
import SearchBar from '../components/bar/SearchBarWithValue';
|
|
|
import FilterSortBar from '../components/bar/FilterSortBar';
|
|
|
@@ -113,7 +114,8 @@ export default {
|
|
|
countries: '',
|
|
|
continent: '',
|
|
|
enterpriseType: '',
|
|
|
- showType: 'row'
|
|
|
+ showType: 'row',
|
|
|
+ applicationField: ''
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
|
@@ -124,7 +126,8 @@ export default {
|
|
|
categoryIds: this.categoryIds,
|
|
|
countries: this.countries,
|
|
|
continent: this.continent,
|
|
|
- enterpriseType: this.enterpriseType
|
|
|
+ enterpriseType: this.enterpriseType,
|
|
|
+ applicationField: this.applicationField
|
|
|
};
|
|
|
},
|
|
|
filterQuery() {
|
|
|
@@ -134,7 +137,8 @@ export default {
|
|
|
countries: this.countries,
|
|
|
continent: this.continent,
|
|
|
enterpriseType: this.enterpriseType,
|
|
|
- searchTop: this.searchTop
|
|
|
+ searchTop: this.searchTop,
|
|
|
+ applicationField: this.applicationField
|
|
|
};
|
|
|
},
|
|
|
enterpriseName() {
|
|
|
@@ -214,6 +218,7 @@ export default {
|
|
|
width: 84px;
|
|
|
height: 84px;
|
|
|
margin: 5px;
|
|
|
+ box-shadow: 0px 4px 10px 0px rgba(13, 107, 219, 0.1);
|
|
|
.van-image {
|
|
|
height: 84px;
|
|
|
}
|