|
@@ -1,43 +1,55 @@
|
|
|
<template>
|
|
|
<transition name="move">
|
|
|
- <div v-show="showFlag" class="food" ref="food">
|
|
|
+ <div
|
|
|
+ v-show="showFlag"
|
|
|
+ ref="food"
|
|
|
+ class="food">
|
|
|
<div class="food-content">
|
|
|
<div class="image-header">
|
|
|
- <img :src="food.image" alt="">
|
|
|
- <div class="back" @click="hide">
|
|
|
- <van-icon name="close" size="30px" color="#fff"/>
|
|
|
+ <img
|
|
|
+ :src="food.product_img_url"
|
|
|
+ alt="">
|
|
|
+ <div
|
|
|
+ class="back"
|
|
|
+ @click="hide">
|
|
|
+ <van-icon
|
|
|
+ color="#fff"
|
|
|
+ name="close"
|
|
|
+ size="30px"/>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="content">
|
|
|
<div class="title-wrap">
|
|
|
- <h1 class="title">曼哈顿</h1>
|
|
|
- <p>2人推荐</p>
|
|
|
+ <h1 class="title">{{ food.product_name }}</h1>
|
|
|
+ <p>{{ food.product_sale_num }}人推荐</p>
|
|
|
</div>
|
|
|
<div class="detail">
|
|
|
- <div class="subtitle-wrap">
|
|
|
- <h1 class="title">选配</h1>
|
|
|
- <p>(最多选4个)</p>
|
|
|
- </div>
|
|
|
<p class="options">
|
|
|
- <span v-for="(item, index) in ['可口可乐', '雪碧', '汤力水', '苏打水']" :class="{'active': index === 1}">{{
|
|
|
- item
|
|
|
- }}</span>
|
|
|
+ <span
|
|
|
+ v-for="(item, index) in food.product_skus"
|
|
|
+ :key="index"
|
|
|
+ :class="{'active': index === 0}">{{ item.product_sku }}</span>
|
|
|
</p>
|
|
|
</div>
|
|
|
- <div class="detail">
|
|
|
+ <div
|
|
|
+ v-for="(item, index) in food.product_attachs"
|
|
|
+ :key="index"
|
|
|
+ class="detail">
|
|
|
<div class="subtitle-wrap">
|
|
|
- <h1 class="title">附加选项</h1>
|
|
|
- <p>(单选)</p>
|
|
|
+ <h1 class="title">{{ item.attach_name }}</h1>
|
|
|
+ <p>(最多可选{{ item.attach_max_num }}个)</p>
|
|
|
</div>
|
|
|
<p class="options">
|
|
|
- <span v-for="(item, index) in ['可口可乐', '雪碧', '汤力水', '苏打水']">{{ item }}</span>
|
|
|
+ <span
|
|
|
+ v-for="(attr, idx) in item.attach_content"
|
|
|
+ :key="idx">{{ attr }}</span>
|
|
|
</p>
|
|
|
</div>
|
|
|
<div class="detail">
|
|
|
<div class="subtitle-wrap">
|
|
|
<h1 class="title">商品详情</h1>
|
|
|
</div>
|
|
|
- <div class=""></div>
|
|
|
+ <div class="des" v-html="food.product_desc"></div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -150,8 +162,6 @@ export default {
|
|
|
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 {
|
|
@@ -162,6 +172,12 @@ export default {
|
|
|
transform: translate3d(0, 100%, 0);
|
|
|
}
|
|
|
|
|
|
+ .food-content {
|
|
|
+ min-height: 90%;
|
|
|
+ border-radius: 16px 16px 0 0;
|
|
|
+ background: #fff;
|
|
|
+ }
|
|
|
+
|
|
|
.image-header {
|
|
|
position: relative;
|
|
|
width: 100%;
|
|
@@ -214,11 +230,12 @@ export default {
|
|
|
}
|
|
|
|
|
|
.detail {
|
|
|
- padding: 20px 0 0 20px;
|
|
|
+ padding-left: 20px;
|
|
|
|
|
|
.subtitle-wrap {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
+ margin-top: 20px;
|
|
|
|
|
|
p {
|
|
|
margin-left: 4px;
|
|
@@ -256,6 +273,18 @@ export default {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+
|
|
|
+ .des {
|
|
|
+ margin-top: 16px;
|
|
|
+
|
|
|
+ ::v-deep p {
|
|
|
+ font-size: 12px;
|
|
|
+ font-family: PingFangSC-Medium, PingFang SC;
|
|
|
+ font-weight: 500;
|
|
|
+ color: #1F1E1E;
|
|
|
+ line-height: 17px;
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
.footer {
|