Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohoblk-wap
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
陈峰
8 years ago
Commit
0fbf5c4bf3cd301f8e07f94b93790ba02263fd31
2 parents
4b9d84d3
9a184774
Merge branch 'gray' of
http://git.yoho.cn/fe/yohoblk-wap
into gray
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
28 additions
and
3 deletions
public/vue/product/detail/index.vue
public/vue/product/list/index.vue
public/vue/product/new/index.vue
public/vue/product/search/index.vue
public/vue/product/shop/shop-box.vue
public/vue/product/detail/index.vue
View file @
0fbf5c4
...
...
@@ -24,7 +24,7 @@
</li>
</ul>
</div>
<div class="service">
<div class="service"
:class="{'bottom-border': !isApp}"
>
<ul>
<li><i class="icon icon-real"></i>100%品牌正品</li>
<li class="return" v-if="intro.supportRefundExchange === 'N'">
...
...
@@ -33,7 +33,7 @@
<li><i class="icon icon-onlineservice"></i>便捷在线客服</li>
</ul>
</div>
<add-to-cart class="add-cart" :value="entity" @add-cart="addCart"></add-to-cart>
<add-to-cart
v-if="isApp"
class="add-cart" :value="entity" @add-cart="addCart"></add-to-cart>
</show-box>
<show-box :is-last="preferList.length <= 0" :zero-top-margin="true" class="info">
<div v-if="intro.productDescBo">
...
...
@@ -253,7 +253,7 @@
<shopping-bag :cart-count="cartCount"></shopping-bag>
</div>
<div v-if="
!isApp
">
<div v-if="
false
">
<share-bottom></share-bottom>
</div>
</div>
...
...
@@ -551,6 +551,10 @@
.service {
border-top: 1px solid #eee;
&.bottom-border {
border-bottom: 1px solid #eee;
}
ul {
font-size: 0;
height: 108px;
...
...
public/vue/product/list/index.vue
View file @
0fbf5c4
...
...
@@ -193,6 +193,11 @@
</script>
<style>
@import "../../../scss/common/_header.css";
html,
body {
height: 100%;
background-color: #fff;
}
.list-header {
background-color: white;
}
...
...
public/vue/product/new/index.vue
View file @
0fbf5c4
...
...
@@ -173,6 +173,11 @@
</script>
<style>
html,
body {
height: 100%;
background-color: #fff;
}
.list-items {
background-color: #fff;
padding-top: 105px;
...
...
public/vue/product/search/index.vue
View file @
0fbf5c4
...
...
@@ -171,6 +171,11 @@
};
</script>
<style>
html,
body {
height: 100%;
background-color: #fff;
}
.top-filter {
border-top: none!important;
}
...
...
public/vue/product/shop/shop-box.vue
View file @
0fbf5c4
...
...
@@ -9,6 +9,12 @@
</div>
</template>
<style>
html,
body {
height: 100%;
background-color: #fff;
}
.shop-box.no-header {
.top-filter {
top: 0;
...
...
Please
register
or
login
to post a comment