|
@@ -10,8 +10,8 @@
|
|
|
</div>
|
|
|
<ul class="goods-list">
|
|
|
<li
|
|
|
- v-for="(food, index) in selectFoods"
|
|
|
- :key="index">
|
|
|
+ v-for="food in _selectFoods"
|
|
|
+ :key="food.id">
|
|
|
<div class="goods-cover">
|
|
|
<img
|
|
|
:src="food.product_img_url"
|
|
@@ -30,8 +30,10 @@
|
|
|
</p>
|
|
|
</div>
|
|
|
</li>
|
|
|
- <li>
|
|
|
- <p class="more">展开(共8件)</p>
|
|
|
+ <li
|
|
|
+ v-show="selectFoods.length > 2"
|
|
|
+ @click="isHideGoods = !isHideGoods">
|
|
|
+ <p class="more">{{ isHideGoods ? '展开' : '收起'}}(共{{ totaoNum }}件)</p>
|
|
|
</li>
|
|
|
</ul>
|
|
|
<ul class="amount-detail">
|
|
@@ -149,6 +151,7 @@ export default {
|
|
|
},
|
|
|
data () {
|
|
|
return {
|
|
|
+ isHideGoods: true,
|
|
|
advancePopup: false, // 选择预约款弹窗
|
|
|
advanceList: [], // 预付款列表
|
|
|
curAdvance: {}, // 当前选择的预付款
|
|
@@ -163,6 +166,15 @@ export default {
|
|
|
...mapGetters({
|
|
|
objCurrentBarInfo: 'common/objCurrentBarInfo'
|
|
|
}),
|
|
|
+ _selectFoods () {
|
|
|
+ let result = []
|
|
|
+ if (!this.isHideGoods || this.selectFoods.length <= 2) {
|
|
|
+ result = this.selectFoods
|
|
|
+ } else if (this.selectFoods.length > 2) {
|
|
|
+ result = [this.selectFoods[0], this.selectFoods[1]]
|
|
|
+ }
|
|
|
+ return result
|
|
|
+ },
|
|
|
selectFoods: {
|
|
|
get () {
|
|
|
return this.$store.getters['shopcart/selectFoods']
|
|
@@ -193,6 +205,13 @@ export default {
|
|
|
total += food.product_price * food.product_num
|
|
|
})
|
|
|
return total > 0 ? total : 0
|
|
|
+ },
|
|
|
+ totaoNum () {
|
|
|
+ let total = 0
|
|
|
+ this.selectFoods.forEach((food) => {
|
|
|
+ total += food.product_num
|
|
|
+ })
|
|
|
+ return total
|
|
|
}
|
|
|
},
|
|
|
watch: {
|