Authored by 李奇

fixed: ios 商品列表页顶部缝隙颜色

... ... @@ -20,7 +20,7 @@ module.exports = {
domains: {
api: 'http://api-test3.yohops.com:9999/',
service: 'http://service-test3.yohops.com:9999/',
singleApi: 'http://api-test3.yohops.com:9999/',
singleApi: 'http://api-test3.yohops.com:9999/'
// api: 'http://api-test2.yohops.com:9999/',
// service: 'http://service-test2.yohops.com:9999/',
... ...
... ... @@ -195,6 +195,7 @@
}
.list-items {
padding-top: 111px;
background-color: #fff;
padding-top: 105px;
}
</style>
... ...
<template>
<div>
<cheader title="新品抢先看"></cheader>
<filter-box :val="order" :filter="filterConfig" v-if="enableOrder"></filter-box>
<filter-box :val="order" :filter="filterConfig" v-if="enableOrder" :fix-ios-top="needFix"></filter-box>
<product-list :data="productList" :state="listState" class="list-items"></product-list>
<shopping-bag :cart-count="cartCount" v-if="isApp"></shopping-bag>
</div>
... ... @@ -47,7 +47,8 @@
inSearching: false, // 请求中
enableOrder: false,
order: '',
cartCount: 0
cartCount: 0,
needFix: yoho.isiOS
};
},
computed: {
... ... @@ -171,6 +172,7 @@
</script>
<style>
.list-items {
padding-top: 111px;
background-color: #fff;
padding-top: 105px;
}
</style>
... ...
... ... @@ -149,6 +149,7 @@
</script>
<style>
.list-items {
padding-top: 111px;
background-color: #fff;
padding-top: 105px;
}
</style>
... ...