|
@@ -2,21 +2,31 @@
|
|
|
<div class="pay-detail">
|
|
|
<div class="order-status">
|
|
|
<p>待支付</p>
|
|
|
- <p>取消订单</p>
|
|
|
+ <router-link
|
|
|
+ :to="{name: 'SellGoods'}"
|
|
|
+ replace
|
|
|
+ tag="p">取消订单
|
|
|
+ </router-link>
|
|
|
</div>
|
|
|
<ul class="goods-list">
|
|
|
- <li>
|
|
|
+ <li
|
|
|
+ v-for="(food, index) in selectFoods"
|
|
|
+ :key="index">
|
|
|
<div class="goods-cover">
|
|
|
- <img alt="" height="60" src="" width="60">
|
|
|
+ <img
|
|
|
+ :src="food.product_img_url"
|
|
|
+ alt=""
|
|
|
+ height="60"
|
|
|
+ width="60">
|
|
|
</div>
|
|
|
<div class="info">
|
|
|
<p class="top">
|
|
|
- <span>曼哈顿</span>
|
|
|
- <span>¥1000</span>
|
|
|
+ <span>{{ food.product_name }}</span>
|
|
|
+ <span>¥{{ food.product_price * food.product_num | fen2Yuan }}</span>
|
|
|
</p>
|
|
|
<p class="bottom">
|
|
|
- <span>标准+茉莉初雪+标准糖</span>
|
|
|
- <span>*2</span>
|
|
|
+ <span>{{ food.product_attach }}</span>
|
|
|
+ <span>*{{ food.product_num }}</span>
|
|
|
</p>
|
|
|
</div>
|
|
|
</li>
|
|
@@ -35,7 +45,7 @@
|
|
|
</li>
|
|
|
<li>
|
|
|
<p class="label">小计</p>
|
|
|
- <p class="label">¥2700</p>
|
|
|
+ <p class="label">¥{{ totalPrice | fen2Yuan }}</p>
|
|
|
</li>
|
|
|
</ul>
|
|
|
<payment class="margin-top-20"
|
|
@@ -107,6 +117,21 @@ export default {
|
|
|
downPaymentPopup: false // 选择预约款弹窗
|
|
|
}
|
|
|
},
|
|
|
+ computed: {
|
|
|
+ selectFoods () {
|
|
|
+ return this.$store.getters['shopcart/selectFoods']
|
|
|
+ },
|
|
|
+ placeNum () {
|
|
|
+ return this.$store.getters['shopcart/placeNum']
|
|
|
+ },
|
|
|
+ totalPrice () {
|
|
|
+ let total = 0
|
|
|
+ this.selectFoods.forEach((food) => {
|
|
|
+ total += food.product_price * food.product_num
|
|
|
+ })
|
|
|
+ return total
|
|
|
+ }
|
|
|
+ },
|
|
|
methods: {
|
|
|
handlePayment (val) {
|
|
|
this.order_pay_type = val
|