Files
xinlong-shop-taro/src/passport/forget.tsx
赵忠林 f3886664f7 fix(api): 替换所有接口请求的域名为 guilixu-api.websoft.top
- 将获取 STS Token 的接口地址由 paopao-api 改为 guilixu-api
- 更新图片上传接口地址为新的 guilixu-api 域名
- 修改用户推广页面中邀请码链接和二维码接口的域名
- 更改注册页微信登录接口请求的域名为 guilixu-api
2026-06-16 17:15:59 +08:00

38 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import {useEffect} from "react";
import Taro from '@tarojs/taro'
import { View } from '@tarojs/components'
import {Input, Button} from '@nutui/nutui-react-taro'
import {copyText} from "@/utils/common";
const Register = () => {
const reload = () => {
// forget 页面不是 tabBar 页面,无需调用 hideTabBar
}
useEffect(() => {
reload()
}, [])
return (
<>
<View className='flex flex-col justify-center px-5 pt-3'>
<View className='text-sm py-2'></View>
<View className='flex flex-col justify-between items-center my-2'>
<Input type='text' placeholder='手机号' maxLength={11} style={{backgroundColor: '#ffffff', borderRadius: '8px'}} />
</View>
<View className='flex flex-col justify-between items-center my-2'>
<Input type='password' placeholder='新的密码' style={{backgroundColor: '#ffffff', borderRadius: '8px'}} />
</View>
<View className='flex justify-between items-center bg-white rounded-lg my-2 pr-2'>
<Input type='text' placeholder='短信验证码' style={{ backgroundColor: '#ffffff', borderRadius: '8px'}} />
<Button onClick={() => copyText('https://site-10398.shoplnk.cn?v=1.33')}></Button>
</View>
<View className='flex justify-center my-5'>
<Button type='info' size='large' className='w-full rounded-lg p-2'></Button>
</View>
</View>
</>
)
}
export default Register