|
@@ -133,45 +133,8 @@
|
|
|
v-for="(str, index) in ',下单后不可退订,不可转让'"
|
|
|
:key="'b' + index">{{ str }}</span>
|
|
|
</p>
|
|
|
- <!--支付宝、微信环境不显示-->
|
|
|
- <div class="payment-type">
|
|
|
- <p :class="{'active': order_pay_type === 2}"
|
|
|
- @click="order_pay_type = 2">
|
|
|
- <img
|
|
|
- class="icon"
|
|
|
- src="./image/ic_select@2x.png"
|
|
|
- alt=""
|
|
|
- v-show="order_pay_type === 2">
|
|
|
- <img
|
|
|
- class="alipay"
|
|
|
- src="./image/ic_Alipay_sel@2x.png"
|
|
|
- alt="" v-show="order_pay_type === 2">
|
|
|
- <img
|
|
|
- class="alipay"
|
|
|
- src="./image/ic_Alipay_nor@2x.png"
|
|
|
- alt="" v-show="order_pay_type !== 2">
|
|
|
- <span>支付宝支付</span>
|
|
|
- </p>
|
|
|
- <p :class="{'active': order_pay_type === 1}"
|
|
|
- @click="order_pay_type = 1">
|
|
|
- <img
|
|
|
- class="icon"
|
|
|
- src="./image/ic_select@2x.png"
|
|
|
- alt=""
|
|
|
- v-show="order_pay_type === 1">
|
|
|
- <img
|
|
|
- class="wechat"
|
|
|
- src="./image/ic_WeChat_sel@2x.png"
|
|
|
- alt=""
|
|
|
- v-show="order_pay_type === 1">
|
|
|
- <img
|
|
|
- class="wechat"
|
|
|
- src="./image/ic_WeChat_nor@2x.png"
|
|
|
- alt=""
|
|
|
- v-show="order_pay_type !== 1">
|
|
|
- <span>微信支付</span>
|
|
|
- </p>
|
|
|
- </div>
|
|
|
+ <!--支付方式选择-->
|
|
|
+ <payment @onChange="handlePayment"/>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="af-popup-footer">
|
|
@@ -197,6 +160,7 @@
|
|
|
|
|
|
<script>
|
|
|
import { Tabs, Tab, Icon, Popup, Field, Toast, Button } from 'vant'
|
|
|
+import payment from '../../common/payment'
|
|
|
import { apiPlaceList, apiPlacePreOrder } from './api'
|
|
|
import { getCookieValue } from '../../../utils'
|
|
|
import { platform } from '../../../utils/platform'
|
|
@@ -210,7 +174,8 @@ export default {
|
|
|
'van-icon': Icon,
|
|
|
'van-popup': Popup,
|
|
|
'van-field': Field,
|
|
|
- 'van-button': Button
|
|
|
+ 'van-button': Button,
|
|
|
+ payment
|
|
|
},
|
|
|
data () {
|
|
|
return {
|
|
@@ -262,6 +227,9 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
handleChange () {},
|
|
|
+ handlePayment (val) {
|
|
|
+ this.order_pay_type = val
|
|
|
+ },
|
|
|
// 获取订座列表
|
|
|
async fetchPlaceList () {
|
|
|
const { id } = this.objCurrentBarInfo
|