23 lines
718 B
TypeScript
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>
|
|
}
|