|
@@ -32,7 +32,7 @@
|
|
|
ref="foodList"
|
|
|
class="food-list">
|
|
|
<h1 class="title">{{ item.name }}</h1>
|
|
|
- <ul>
|
|
|
+ <ul class="food-item-wrap">
|
|
|
<li
|
|
|
v-for="(food, idx) in item.foods"
|
|
|
:key="idx"
|
|
@@ -40,39 +40,12 @@
|
|
|
@click="selectFood(food, $event)">
|
|
|
<div class="icon">
|
|
|
<img
|
|
|
- :src="food.product_img_url"
|
|
|
+ :src="food.image"
|
|
|
alt=""
|
|
|
- height="88"
|
|
|
- width="88">
|
|
|
- </div>
|
|
|
- <div class="content">
|
|
|
- <div>
|
|
|
- <h2 class="name">{{ food.product_name }}</h2>
|
|
|
- <p v-if="false" class="desc">{{ food.product_sale_num }}人推荐</p>
|
|
|
- </div>
|
|
|
- <div class="price">
|
|
|
- <span class="now">¥{{ food.product_price | fen2Yuan }}</span>
|
|
|
- </div>
|
|
|
- <!--第一个版本暂时不用-->
|
|
|
- <div
|
|
|
- v-if="false"
|
|
|
- class="cartcontrol-wrapper">
|
|
|
- <cartcontrol
|
|
|
- :food="food"
|
|
|
- @add="addFood"/>
|
|
|
- </div>
|
|
|
- <van-button
|
|
|
- v-if="food.is_sell_out === 0"
|
|
|
- class="btn-show-sku"
|
|
|
- type="danger">选规格
|
|
|
- </van-button>
|
|
|
- <!--售罄图标-->
|
|
|
- <img
|
|
|
- v-if="food.is_sell_out === 1"
|
|
|
- alt=""
|
|
|
- class="sell-out"
|
|
|
- src="./image/ic_sold_out@2x.png">
|
|
|
+ height="48"
|
|
|
+ width="48">
|
|
|
</div>
|
|
|
+ <h2 class="name">{{ food.name }}</h2>
|
|
|
</li>
|
|
|
</ul>
|
|
|
</li>
|
|
@@ -84,7 +57,7 @@
|
|
|
|
|
|
<script type="text/ecmascript-6">
|
|
|
import BScroll from 'better-scroll'
|
|
|
-import { Toast, Button, Popup } from 'vant'
|
|
|
+import { Toast, Popup } from 'vant'
|
|
|
import { mockGoods } from './mock'
|
|
|
|
|
|
export default {
|
|
@@ -202,7 +175,6 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
components: {
|
|
|
- 'van-button': Button,
|
|
|
'van-popup': Popup
|
|
|
}
|
|
|
}
|
|
@@ -218,15 +190,6 @@ export default {
|
|
|
z-index: 3;
|
|
|
}
|
|
|
|
|
|
-.mask {
|
|
|
- position: absolute;
|
|
|
- left: 0;
|
|
|
- top: 0;
|
|
|
- right: 0;
|
|
|
- bottom: 0;
|
|
|
- background: rgba(0, 0, 0, 0.7);
|
|
|
-}
|
|
|
-
|
|
|
.goods {
|
|
|
display: flex;
|
|
|
position: absolute;
|
|
@@ -276,113 +239,74 @@ export default {
|
|
|
.foods-wrapper {
|
|
|
flex: 1;
|
|
|
|
|
|
- .title {
|
|
|
- padding: 10px 0 20px 19px;
|
|
|
- height: 42px;
|
|
|
- font-size: 14px;
|
|
|
- font-family: PingFangSC-Medium, PingFang SC;
|
|
|
- font-weight: 500;
|
|
|
- color: #736F6F;
|
|
|
- line-height: 20px;
|
|
|
+ .food-list:nth-last-child(1) {
|
|
|
+ padding-bottom: 33px;
|
|
|
}
|
|
|
|
|
|
- .food-item {
|
|
|
+ .title {
|
|
|
display: flex;
|
|
|
- margin: 8px 18px 0 16px;
|
|
|
- padding-bottom: 8px;
|
|
|
- }
|
|
|
-
|
|
|
- &:last-child {
|
|
|
- @include border-none();
|
|
|
- margin-bottom: 0;
|
|
|
- }
|
|
|
+ justify-content: center;
|
|
|
+ align-items: center;
|
|
|
+ width: 100%;
|
|
|
+ padding-top: 33px;
|
|
|
+ font-size: 14px;
|
|
|
+ color: #1F314A;
|
|
|
+ line-height: 20px;
|
|
|
|
|
|
- .icon {
|
|
|
- flex: 0 0 88px;
|
|
|
- margin-right: 8px;
|
|
|
- overflow: hidden;
|
|
|
+ &:before {
|
|
|
+ content: '';
|
|
|
+ width: 89px;
|
|
|
+ opacity: 0.1;
|
|
|
+ border-top: 2px solid #1F314A;
|
|
|
+ margin-right: 8px;
|
|
|
+ }
|
|
|
|
|
|
- img {
|
|
|
- border-radius: 8px;
|
|
|
+ &:after {
|
|
|
+ content: '';
|
|
|
+ width: 89px;
|
|
|
+ opacity: 0.1;
|
|
|
+ border-top: 2px solid #1F314A;
|
|
|
+ margin-left: 8px;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- .content {
|
|
|
- flex: 1;
|
|
|
+ .food-item-wrap {
|
|
|
display: flex;
|
|
|
- flex-direction: column;
|
|
|
- justify-content: space-between;
|
|
|
-
|
|
|
- .name {
|
|
|
- display: -webkit-box;
|
|
|
- -webkit-box-orient: vertical;
|
|
|
- -webkit-line-clamp: 1;
|
|
|
- overflow: hidden;
|
|
|
- margin: 4px 0;
|
|
|
- font-size: 16px;
|
|
|
- font-family: PingFangSC-Medium, PingFang SC;
|
|
|
- font-weight: 500;
|
|
|
- color: #1F1E1E;
|
|
|
- line-height: 22px;
|
|
|
- word-break: break-all;
|
|
|
- }
|
|
|
+ flex-flow: row wrap;
|
|
|
+ padding: 0 32px;
|
|
|
|
|
|
- .desc {
|
|
|
- display: -webkit-box;
|
|
|
- -webkit-box-orient: vertical;
|
|
|
- -webkit-line-clamp: 2;
|
|
|
- overflow: hidden;
|
|
|
- font-size: 12px;
|
|
|
- color: #736F6F;
|
|
|
- line-height: 17px;
|
|
|
- word-break: break-all;
|
|
|
- }
|
|
|
-
|
|
|
- .price {
|
|
|
+ li {
|
|
|
display: flex;
|
|
|
flex-direction: column;
|
|
|
- }
|
|
|
-
|
|
|
- .now {
|
|
|
- font-size: 14px;
|
|
|
- font-family: PingFangSC-Medium, PingFang SC;
|
|
|
- font-weight: 600;
|
|
|
- color: #D32323;
|
|
|
- line-height: 22px;
|
|
|
- }
|
|
|
+ align-items: center;
|
|
|
+ width: 48px;
|
|
|
+ margin-left: 42px;
|
|
|
+ margin-top: 24px;
|
|
|
|
|
|
- .cartcontrol-wrapper {
|
|
|
- position: absolute;
|
|
|
- right: 0;
|
|
|
- bottom: 1px;
|
|
|
+ &:nth-of-type(3n+1) {
|
|
|
+ margin-left: 0;
|
|
|
+ }
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
- .btn-show-sku {
|
|
|
- position: absolute;
|
|
|
- right: 0;
|
|
|
- bottom: 7px;
|
|
|
- width: 55px;
|
|
|
- height: 24px;
|
|
|
- padding: 0;
|
|
|
- border: none;
|
|
|
- background: #D32323;
|
|
|
- border-radius: 12px;
|
|
|
+ .icon {
|
|
|
+ font-size: 0;
|
|
|
+ overflow: hidden;
|
|
|
|
|
|
- ::v-deep .van-button__text {
|
|
|
- font-size: 12px;
|
|
|
- color: #FFFFFF;
|
|
|
- line-height: 24px;
|
|
|
- }
|
|
|
+ img {
|
|
|
+ border-radius: 8px;
|
|
|
}
|
|
|
+ }
|
|
|
|
|
|
- .sell-out {
|
|
|
- position: absolute;
|
|
|
- right: 0;
|
|
|
- bottom: 9px;
|
|
|
- display: block;
|
|
|
- width: 46px;
|
|
|
- height: 32px;
|
|
|
- }
|
|
|
+ .name {
|
|
|
+ width: 100%;
|
|
|
+ margin-top: 8px;
|
|
|
+ font-size: 16px;
|
|
|
+ color: #1F314A;
|
|
|
+ line-height: 22px;
|
|
|
+ white-space: nowrap;
|
|
|
+ overflow: hidden;
|
|
|
+ text-overflow: ellipsis;
|
|
|
}
|
|
|
}
|
|
|
</style>
|