import { defineComponent } from 'vue' import { Image } from 'vant' import styles from './index.module.less' import orchestraTopBg from '@/school/save-share-image/images/orchestra-top_bg.png' import OQrcode from '@/components/o-qrcode' export default defineComponent({ name: 'qrcode-payment', props: { url: { type: String, default: '' }, pay_channel: { type: String, default: 'wx_pub' } }, setup(props) { return () => (
报名缴费
请截图下方二维码 登录支付宝扫码支付
请在30分钟内扫码支付
使用说明:
1.打开{props.pay_channel === 'wx_pub' ? '微信' : '支付宝'}扫一扫
2.选择相册中的二维码
3.请在30分钟内扫码支付
) } })