|
@@ -3,9 +3,9 @@
|
|
|
<div v-show="showFlag" class="food" ref="food">
|
|
|
<div class="food-content">
|
|
|
<div class="image-header">
|
|
|
- <img :src="food.image">
|
|
|
+ <img :src="food.image" alt="">
|
|
|
<div class="back" @click="hide">
|
|
|
- <i class="icon-arrow_lift"></i>
|
|
|
+ <van-icon name="close" size="30px" color="#fff"/>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="content">
|
|
@@ -26,35 +26,6 @@
|
|
|
</div>
|
|
|
</transition>
|
|
|
</div>
|
|
|
- <split v-show="food.info"></split>
|
|
|
- <div class="info" v-show="food.info">
|
|
|
- <h1 class="title">商品信息</h1>
|
|
|
- <p class="text">{{food.info}}</p>
|
|
|
- </div>
|
|
|
- <split></split>
|
|
|
- <div class="rating">
|
|
|
- <h1 class="title">商品评价</h1>
|
|
|
- <ratingselect @select="selectRating" @toggle="toggleContent" :selectType="selectType"
|
|
|
- :onlyContent="onlyContent" :desc="desc"
|
|
|
- :ratings="food.ratings"></ratingselect>
|
|
|
- <div class="rating-wrapper">
|
|
|
- <ul v-show="food.ratings && food.ratings.length">
|
|
|
- <li v-show="needShow(rating.rateType,rating.text)" v-for="rating in food.ratings"
|
|
|
- class="rating-item border-1px">
|
|
|
- <div class="user">
|
|
|
- <span class="name">{{rating.username}}</span>
|
|
|
- <img class="avatar" width="12" height="12" :src="rating.avatar">
|
|
|
- </div>
|
|
|
- <div class="time">{{rating.rateTime | formatDate}}</div>
|
|
|
- <p class="text">
|
|
|
- <span
|
|
|
- :class="{'icon-thumb_up':rating.rateType===0,'icon-thumb_down':rating.rateType===1}"></span>{{rating.text}}
|
|
|
- </p>
|
|
|
- </li>
|
|
|
- </ul>
|
|
|
- <div class="no-rating" v-show="!food.ratings || !food.ratings.length">暂无评价</div>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</transition>
|
|
@@ -63,10 +34,8 @@
|
|
|
<script type="text/ecmascript-6">
|
|
|
import BScroll from 'better-scroll'
|
|
|
import Vue from 'vue'
|
|
|
-import { formatDate } from '../../../assets/js/date'
|
|
|
import cartcontrol from '../cartcontrol/cartcontrol'
|
|
|
-import ratingselect from '../ratingselect/ratingselect'
|
|
|
-import split from '../split/split'
|
|
|
+import { Icon } from 'vant'
|
|
|
|
|
|
const ALL = 2
|
|
|
|
|
@@ -139,28 +108,23 @@ export default {
|
|
|
})
|
|
|
}
|
|
|
},
|
|
|
- filters: {
|
|
|
- formatDate (time) {
|
|
|
- let date = new Date(time)
|
|
|
- return formatDate(date, 'yyyy-MM-dd hh:mm')
|
|
|
- }
|
|
|
- },
|
|
|
components: {
|
|
|
cartcontrol,
|
|
|
- ratingselect,
|
|
|
- split
|
|
|
+ 'van-icon': Icon
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
|
+
|
|
|
<style lang="scss" scoped>
|
|
|
.food {
|
|
|
position: fixed;
|
|
|
left: 0;
|
|
|
- top: 0;
|
|
|
- bottom: 48px;
|
|
|
- z-index: 30;
|
|
|
+ top: 20px;
|
|
|
+ bottom: 0;
|
|
|
+ z-index: 60;
|
|
|
width: 100%;
|
|
|
background: #fff;
|
|
|
+ border-radius: 16px 16px 0 0;
|
|
|
transform: translate3d(0, 0, 0);
|
|
|
|
|
|
&.move-enter-active, &.move-leave-active {
|
|
@@ -168,7 +132,7 @@ export default {
|
|
|
}
|
|
|
|
|
|
&.move-enter, &.move-leave-active {
|
|
|
- transform: translate3d(100%, 0, 0);
|
|
|
+ transform: translate3d(0, 100%, 0);
|
|
|
}
|
|
|
|
|
|
.image-header {
|
|
@@ -176,6 +140,10 @@ export default {
|
|
|
width: 100%;
|
|
|
height: 0;
|
|
|
padding-top: 100%;
|
|
|
+ background: #FFFFFF;
|
|
|
+ border-radius: 16px 16px 0 0;
|
|
|
+ box-shadow: 0 -2px 4px 0 rgba(13, 13, 13, 0.37);
|
|
|
+ overflow: hidden;
|
|
|
|
|
|
img {
|
|
|
position: absolute;
|
|
@@ -187,17 +155,11 @@ export default {
|
|
|
|
|
|
.back {
|
|
|
position: absolute;
|
|
|
- top: 10px;
|
|
|
- left: 0;
|
|
|
-
|
|
|
- .icon-arrow_lift {
|
|
|
- display: block;
|
|
|
- padding: 10px;
|
|
|
- font-size: 20px;
|
|
|
- color: #fff;
|
|
|
- }
|
|
|
+ right: 5px;
|
|
|
+ top: 5px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
}
|
|
|
-
|
|
|
}
|
|
|
|
|
|
.content {
|
|
@@ -294,79 +256,28 @@ export default {
|
|
|
color: rgb(77, 85, 93);
|
|
|
}
|
|
|
}
|
|
|
+}
|
|
|
|
|
|
- .rating {
|
|
|
- padding-top: 18px;
|
|
|
-
|
|
|
- .title {
|
|
|
- line-height: 14px;
|
|
|
- margin-left: 18px;
|
|
|
- font-size: 14px;
|
|
|
- color: rgb(7, 17, 27);
|
|
|
- }
|
|
|
-
|
|
|
- .rating-wrapper {
|
|
|
- padding: 0 18px;
|
|
|
-
|
|
|
- .rating-item {
|
|
|
- position: relative;
|
|
|
- padding: 16px 0;
|
|
|
- @include border-1px(rgba(7, 17, 27, 0.1));
|
|
|
-
|
|
|
- .user {
|
|
|
- position: absolute;
|
|
|
- right: 0;
|
|
|
- top: 16px;
|
|
|
- line-height: 12px;
|
|
|
- font-size: 0;
|
|
|
- }
|
|
|
-
|
|
|
- .name {
|
|
|
- display: inline-block;
|
|
|
- margin-right: 6px;
|
|
|
- vertical-align: top;
|
|
|
- font-size: 10px;
|
|
|
- color: rgb(147, 153, 159);
|
|
|
- }
|
|
|
-
|
|
|
- .avatar {
|
|
|
- border-radius: 50%;
|
|
|
- }
|
|
|
-
|
|
|
- .time {
|
|
|
- margin-bottom: 6px;
|
|
|
- line-height: 12px;
|
|
|
- font-size: 10px;
|
|
|
- color: rgb(147, 153, 159);
|
|
|
- }
|
|
|
-
|
|
|
- .text {
|
|
|
- line-height: 16px;
|
|
|
- font-size: 12px;
|
|
|
- color: rgb(7, 17, 27);
|
|
|
- }
|
|
|
-
|
|
|
- .icon-thumb_up, .icon-thumb_down {
|
|
|
- margin-right: 4px;
|
|
|
- line-height: 16px;
|
|
|
- font-size: 12px;
|
|
|
- }
|
|
|
-
|
|
|
- .icon-thumb_up {
|
|
|
- color: rgb(0, 160, 220);
|
|
|
- }
|
|
|
-
|
|
|
- .icon-thumb_down {
|
|
|
- color: rgb(147, 153, 159);
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- .no-rating {
|
|
|
- padding: 16px 0;
|
|
|
- font-size: 12px;
|
|
|
- color: rgb(147, 153, 159);
|
|
|
- }
|
|
|
+.footer {
|
|
|
+ position: absolute;
|
|
|
+ left: 0;
|
|
|
+ bottom: 0;
|
|
|
+ right: 0;
|
|
|
+ display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
+ align-items: center;
|
|
|
+ width: 100%;
|
|
|
+ height: 68px;
|
|
|
+ padding: 0 20px;
|
|
|
+ background: #FFFFFF;
|
|
|
+ box-shadow: 0px -2px 4px 0px rgba(13, 13, 13, 0.03);
|
|
|
+
|
|
|
+ .price {
|
|
|
+ font-size: 21px;
|
|
|
+ font-family: PingFangSC-Medium, PingFang SC;
|
|
|
+ font-weight: 500;
|
|
|
+ color: #D32323;
|
|
|
+ line-height: 29px;
|
|
|
}
|
|
|
}
|
|
|
</style>
|