2023-02-22 17:42:05 +08:00

23 lines
718 B
TypeScript

import { Image, Text, View } from '@tarojs/components'
import styles from './index.module.scss'
import logo from '@/styles/image/lgo@2x.png'
import IconFont from '@/components/iconfont/iconfont'
import Checkbox from '@/components/checkbox'
export default () => {
return <View className={styles.main}>
<View className={styles.login_image}>
<Image src={logo} />
<Text> </Text>
</View>
<View className={styles.login_btn}>
<IconFont name="icon-weixin" />
<Text></Text>
</View>
<View className={styles.regulations}>
<Checkbox />
<Text></Text>
</View>
</View>
}