|
|
@ -2,7 +2,7 @@
|
|
|
|
* @Author: ch
|
|
|
|
* @Author: ch
|
|
|
|
* @Date: 2022-05-04 17:30:58
|
|
|
|
* @Date: 2022-05-04 17:30:58
|
|
|
|
* @LastEditors: ch
|
|
|
|
* @LastEditors: ch
|
|
|
|
* @LastEditTime: 2022-05-09 14:33:52
|
|
|
|
* @LastEditTime: 2022-05-09 21:41:07
|
|
|
|
* @Description: file content
|
|
|
|
* @Description: file content
|
|
|
|
-->
|
|
|
|
-->
|
|
|
|
|
|
|
|
|
|
|
@ -20,7 +20,7 @@
|
|
|
|
<div class="pay">
|
|
|
|
<div class="pay">
|
|
|
|
<UiButton radius type="red_panel" @click="submit">立即支付</UiButton>
|
|
|
|
<UiButton radius type="red_panel" @click="submit">立即支付</UiButton>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<BsPay :visible.sync="payVisible" :orderId="orderId" @cancel="cancelPay"/>
|
|
|
|
<BsPay :visible.sync="payVisible" :orderId="orderId" @cancel="finishPay" @finish="finishPay"/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
@ -112,7 +112,7 @@ export default {
|
|
|
|
this.orderId = result.orderId;
|
|
|
|
this.orderId = result.orderId;
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
cancelPay(){
|
|
|
|
finishPay(){
|
|
|
|
this.$router.replace(`/account/order/detail?id=${this.orderId}`)
|
|
|
|
this.$router.replace(`/account/order/detail?id=${this.orderId}`)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|