Files
ZhHealth/pages/pay/pay.vue
2022-01-04 11:34:26 +08:00

32 lines
385 B
Vue

<template>
<view>
<oct-pay
price="100.00"
payNo="2021321649127837218918231"
color="#34CE98"
price-color="#e6576b"
:payPlatform="['alipay', 'wxpay']"
@onPay="pay"
/>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
pay(e){
console.log("支付平台" + e.platform)
}
}
}
</script>
<style>
</style>