|
@@ -2,11 +2,11 @@
|
|
|
<div v-if="datas != ''">
|
|
|
<div v-document_title>立即支付</div>
|
|
|
<group>
|
|
|
- <x-input title="红包支付" class="weui-vcode" style="padding-top: 21px; padding-bottom: 21px;">
|
|
|
+ <x-input title="红包支付" class="weui-vcode" style="padding-top: 21px; padding-bottom: 21px;" :disabled="true">
|
|
|
<p slot="left"></p>
|
|
|
<icon slot="right" type="success-circle" style="color: #EB4E4F"></icon>
|
|
|
</x-input>
|
|
|
- <x-input title="微信支付" class="weui-vcode" style="padding-top: 21px; padding-bottom: 21px;">
|
|
|
+ <x-input title="微信支付" class="weui-vcode" style="padding-top: 21px; padding-bottom: 21px;" :disabled="true">
|
|
|
<icon slot="right" type="success-circle" style="color: #EB4E4F"></icon>
|
|
|
</x-input>
|
|
|
</group>
|
|
@@ -57,7 +57,7 @@
|
|
|
<flexbox-item :span="4/6" style="text-align: center;line-height: 93px; font-size: 30px;">应付: <span
|
|
|
class="letter_warn">¥ {{datas.order.order_info['pay_cash']}}</span></flexbox-item>
|
|
|
<flexbox-item :span="2/6"
|
|
|
- style="text-align: center;background:#EB4E4F;color: #fff;line-height: 93px; font-size: 32px; "><p>去付款</p></flexbox-item>
|
|
|
+ style="text-align: center;background:#EB4E4F;color: #fff;line-height: 93px; font-size: 32px; "><p @click="just_pay">去付款</p></flexbox-item>
|
|
|
</flexbox>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -78,6 +78,15 @@
|
|
|
this.datas = res.body.datas;
|
|
|
})
|
|
|
},
|
|
|
+ methods:{
|
|
|
+ just_pay(){
|
|
|
+ this.$vux.toast.show({
|
|
|
+ type: 'text',
|
|
|
+ text: "请至APP完成支付",
|
|
|
+ position: 'middle'
|
|
|
+ });
|
|
|
+ }
|
|
|
+ },
|
|
|
components: {
|
|
|
Flexbox,
|
|
|
FlexboxItem,
|