...
|
...
|
@@ -81,7 +81,7 @@ export default { |
|
|
isFetching: false,
|
|
|
error: null,
|
|
|
page: 0, // 当前页
|
|
|
page_size: 10, // 每页数量
|
|
|
page_size: 20, // 每页数量
|
|
|
page_total: 0, // 总共多少页
|
|
|
total: 0, // 总共多少条
|
|
|
endReached: false, // 到达底部
|
...
|
...
|
@@ -163,6 +163,13 @@ export default { |
|
|
appop: 'XY_UFO_MAIN_START'
|
|
|
}
|
|
|
});
|
|
|
// 初始化 选中类目
|
|
|
const [firstNav] = this.navList;
|
|
|
if(firstNav) {
|
|
|
const {url = ''} = firstNav;
|
|
|
this.selectedCategory = queryString.parse(url);
|
|
|
}
|
|
|
|
|
|
this.refreshProductList(this.active);
|
|
|
},
|
|
|
methods: {
|
...
|
...
|
@@ -239,7 +246,7 @@ export default { |
|
|
// console.log(this.homeYasParams)
|
|
|
this.$store.dispatch('reportYas', {
|
|
|
params: {
|
|
|
param: this.homeYasParams,
|
|
|
param: {DATA:this.homeYasParams},
|
|
|
appop: 'XY_UFO_SHOW_EVENT'
|
|
|
}
|
|
|
});
|
...
|
...
|
@@ -271,7 +278,7 @@ export default { |
|
|
TAB_NAME: params.title});
|
|
|
}
|
|
|
},
|
|
|
async getIndex({index, params}) {
|
|
|
async getIndex({index, params}) {
|
|
|
this.selectedCategory = params;
|
|
|
this.active = Number(index);
|
|
|
this.isShow && this.$refs.scroll.scrollTo(this.navTop);
|
...
|
...
|
@@ -463,18 +470,9 @@ export default { |
|
|
}
|
|
|
|
|
|
.channel-body {
|
|
|
height: 100%;
|
|
|
position: relative;
|
|
|
|
|
|
&:before {
|
|
|
content: "";
|
|
|
width: 100%;
|
|
|
height: 400px;
|
|
|
background: #08304B;
|
|
|
position: absolute;
|
|
|
top: 0;
|
|
|
z-index: -1;
|
|
|
}
|
|
|
background-image: url("//img11.static.yhbimg.com/yhb-img01/2019/10/30/18/0178208a1e983631c677399822cd56abae.png");
|
|
|
background-size: 100%;
|
|
|
background-repeat: no-repeat;
|
|
|
}
|
|
|
|
|
|
.channel-html {
|
...
|
...
|
|