-
Notifications
You must be signed in to change notification settings - Fork 564
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1939315
commit db53bad
Showing
18 changed files
with
347 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
@import "../../common/stylus/mixin.styl" | ||
.good | ||
display flex | ||
position absolute | ||
width 100% | ||
top 174px | ||
bottom 46px | ||
overflow hidden | ||
.menu-wrapper | ||
flex 0 0 80px | ||
width 80px | ||
background #f3f5f7 | ||
.menu-item | ||
display table | ||
width 56px | ||
height 54px | ||
line-height 14px | ||
padding 0 12px | ||
.icon | ||
display inline-block | ||
width 12px | ||
height 12px | ||
vertical-align top | ||
margin-right 4px | ||
background-size 12px 12px | ||
background-repeat no-repeat | ||
&.decrease | ||
bg-image('decrease_3') | ||
&.discount | ||
bg-image('discount_3') | ||
&.guarantee | ||
bg-image('guarantee_3') | ||
&.invoice | ||
bg-image('invoice_3') | ||
&.special | ||
bg-image('special_3') | ||
.text | ||
display table-cell | ||
width 56px | ||
vertical-align middle | ||
border-1px(rgba(7, 17, 27, 0.1)) | ||
font-size 12px | ||
.foods-wrapper | ||
flex 1 | ||
.food-list | ||
.title | ||
padding-left 14px | ||
height 26px | ||
line-height 26px | ||
border-left 2px solid #d9dde1 | ||
font-size 12px | ||
color rgb(147, 153, 159) | ||
background #f3f5f7 | ||
.food-item | ||
display flex | ||
margin 18px | ||
padding-bottom 18px | ||
border-1px(rgba(7, 17, 27, 0.1)) | ||
&:last-child | ||
border-none() | ||
margin-bottom 0px | ||
.icon | ||
flex 0 0 57px | ||
margin-right 10px | ||
.content | ||
flex 1 | ||
.name | ||
margin 2px 0 8px 0 | ||
font-size 14px | ||
line-height 14px | ||
height 14px | ||
color rgb(7, 17, 27) | ||
.desc, .extra | ||
font-size 10px | ||
line-height 10px | ||
color rgb(147, 153, 159) | ||
.desc | ||
margin-bottom 8px | ||
.extra | ||
&.count | ||
margin-right 12px | ||
.price | ||
font-weight 700px | ||
line-height 24px | ||
.now | ||
margin-right 8px | ||
font-size 14px | ||
color rgb(240,20,20) | ||
.old | ||
font-size 10px | ||
color rgb(147, 153, 159) | ||
text-decoration line-through | ||
|
||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,67 @@ | ||
<template> | ||
<div> | ||
i am goods | ||
</div> | ||
<div class="good"> | ||
<div class="menu-wrapper"> | ||
<ul> | ||
<li v-for="item in goods" class="menu-item border-1px"> | ||
<span class="text"> | ||
<span v-show="item.type>0" class=" icon" :class="classMap[item.type]"></span>{{item.name}} | ||
</span> | ||
</li> | ||
</ul> | ||
</div> | ||
<div class="foods-wrapper"> | ||
<ul> | ||
<li v-for="item in goods" class="food-list"> | ||
<h1 class="title">{{item.name}}</h1> | ||
<ul> | ||
<li v-for="food in item.foods" class="food-item"> | ||
<div class="icon"> | ||
<img :src="food.icon" alt="" width="57"> | ||
</div> | ||
<div class="content"> | ||
<h2 class="name">{{food.name}}</h2> | ||
<p class="desc">{{food.description}}</p> | ||
<div class="extra"> | ||
<span class="count">月售{{food.sellCount}}</span> | ||
<span class="count">好评{{food.rating}}</span> | ||
</div> | ||
<div class="price"> | ||
<span class="now">¥{{food.price}}</span> | ||
<span class="old" v-show="food.oldPrice">¥{{food.oldPrice}}</span> | ||
</div> | ||
</div> | ||
</li> | ||
</ul> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script type="text/ecmascript-6"> | ||
export default {}; | ||
const ERR_OK = 0; | ||
export default { | ||
props: { | ||
seller: { | ||
type: Object | ||
} | ||
}, | ||
data () { | ||
return { | ||
goods: [] | ||
}; | ||
}, | ||
created() { | ||
this.$http.get('/api/goods').then((response) => { | ||
response = response.body; | ||
if (response.errno === ERR_OK) { | ||
this.goods = response.data; | ||
console.log(this.goods); | ||
} | ||
}); | ||
this.classMap = ['decrease', 'discount', 'special', 'invoice', 'guarantee']; | ||
} | ||
}; | ||
</script> | ||
<style lang="stylus" rel="stylesheet/stylus"> | ||
@import "goods.styl"; | ||
</style> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.