feat(ID1000892_登录页开发):

This commit is contained in:
czm 2023-02-22 13:52:49 +08:00
parent bbad78f212
commit 71246439e1

22
src/pages/login/index.tsx Normal file
View File

@ -0,0 +1,22 @@
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>
}