You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import { View } from '@tarojs/components';
|
|
|
|
import { Form } from 'antd-mobile';
|
|
|
|
import FormLabel from '/components/FormLabel';
|
|
|
|
|
|
|
|
import styles from './index.module.less';
|
|
|
|
|
|
|
|
export default function Wxpay({ namePrefix }) {
|
|
|
|
|
|
|
|
return (
|
|
|
|
<View className={styles.container}>
|
|
|
|
<Form.Item
|
|
|
|
name={`${namePrefix}-weixin`}
|
|
|
|
label='微信账号'
|
|
|
|
|
|
|
|
>
|
|
|
|
<FormLabel />
|
|
|
|
</Form.Item>
|
|
|
|
<Form.Item
|
|
|
|
name={`${namePrefix}-weixinName`}
|
|
|
|
label='微信姓名'
|
|
|
|
|
|
|
|
>
|
|
|
|
<FormLabel />
|
|
|
|
</Form.Item>
|
|
|
|
</View >
|
|
|
|
)
|
|
|
|
}
|