Files
xinlong-shop-taro/src_bak/passport/forget.tsx
赵忠林 1fa58040f3 feat(user): 新增收货地址管理及售后申请页面
- 新增地址类型定义,增强前端地址数据结构
- 新增地址编辑页面,支持地址智能识别和定位选点功能
- 地址编辑支持省市区选择及默认地址设置
- 新增地址列表页面,支持地址展示、删除、编辑和选择功能
- 实现售后申请页面,支持选择售后类型和退款原因
- 售后申请支持商品选择、退款金额计算和凭证上传
- 新增售后详情页面,支持售后状态展示及申请取消
- 优化页面加载和用户交互体验,增加错误提示和权限处理
2026-07-01 12:11:56 +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