列表页
This commit is contained in:
parent
81bab972e6
commit
c3bfbcd8a4
BIN
release.zip
Normal file
BIN
release.zip
Normal file
Binary file not shown.
@ -1,3 +1,3 @@
|
|||||||
export default definePageConfig({
|
export default definePageConfig({
|
||||||
navigationBarTitleText: '找回密码'
|
navigationBarTitleText: '修改交易密码'
|
||||||
})
|
})
|
||||||
|
@ -63,7 +63,7 @@ const Login = () => {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
loading('密码重置中,请稍后~')
|
loading('密码重置中,请稍后~')
|
||||||
const re = await pwdManage('login_password', {
|
const re = await pwdManage('pay_password', {
|
||||||
confirm_password: confirmPwd,
|
confirm_password: confirmPwd,
|
||||||
password: pwd,
|
password: pwd,
|
||||||
phone: account,
|
phone: account,
|
||||||
@ -80,7 +80,7 @@ const Login = () => {
|
|||||||
return <View className="login-frame bg-slate-50 h-screen text-base">
|
return <View className="login-frame bg-slate-50 h-screen text-base">
|
||||||
<View className='addr-detail-title'>
|
<View className='addr-detail-title'>
|
||||||
<Image src={backNav} className="square-35 absolute left-10 nav-icon" onClick={backFn} />
|
<Image src={backNav} className="square-35 absolute left-10 nav-icon" onClick={backFn} />
|
||||||
修改密码
|
修改交易密码
|
||||||
|
|
||||||
</View>
|
</View>
|
||||||
<View className="change-pwd-container relative">
|
<View className="change-pwd-container relative">
|
||||||
|
@ -44,7 +44,7 @@ function Index() {
|
|||||||
if (re.thumbnails?.length) {
|
if (re.thumbnails?.length) {
|
||||||
let images = re.thumbnails
|
let images = re.thumbnails
|
||||||
if (!!re.cover_image) {
|
if (!!re.cover_image) {
|
||||||
images.shift(re.cover_image)
|
images.unshift(re.cover_image)
|
||||||
}
|
}
|
||||||
setThumbnails(images)
|
setThumbnails(images)
|
||||||
}
|
}
|
||||||
|
@ -25,7 +25,7 @@ const Index = () => {
|
|||||||
userDetail().then(rs => {
|
userDetail().then(rs => {
|
||||||
if (!rs) return
|
if (!rs) return
|
||||||
setUser(rs)
|
setUser(rs)
|
||||||
const img = jrQrcode.getQrBase64(window.location.origin + '/#/pages/index/index?code=' + rs.invite_code)
|
const img = jrQrcode.getQrBase64(window.location.origin + '/#/pages/register/index?code=' + rs.invite_code)
|
||||||
setCode(img)
|
setCode(img)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -119,14 +119,14 @@ const Login = () => {
|
|||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
<View className="form-helper">
|
<View className="form-helper">
|
||||||
<View className="forgot-password" onClick={registerFn}>注册账号</View>
|
{/* <View className="forgot-password" onClick={registerFn}>注册账号</View> */}
|
||||||
<View className="forgot-password" onClick={forgotPasswordFn}>忘记密码</View>
|
<View className="forgot-password" onClick={forgotPasswordFn}>忘记密码</View>
|
||||||
</View>
|
</View>
|
||||||
<View className="login-footer flex flex-col justify-center">
|
<View className="login-footer flex flex-col justify-center">
|
||||||
<Button className="login-btn" onClick={loginSubmit}>登录</Button>
|
<Button className="login-btn" onClick={loginSubmit}>登录</Button>
|
||||||
<View className="quick-login" onClick={() => {
|
{/* <View className="quick-login" onClick={() => {
|
||||||
Taro.redirectTo({ url: '/pages/login-quick/index' })
|
Taro.redirectTo({ url: '/pages/login-quick/index' })
|
||||||
}}>快捷登录</View>
|
}}>快捷登录</View> */}
|
||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
|
@ -9,11 +9,12 @@ import { useState } from "react"
|
|||||||
import Taro from "@tarojs/taro"
|
import Taro from "@tarojs/taro"
|
||||||
import { register, sendCode } from "../../utils/api"
|
import { register, sendCode } from "../../utils/api"
|
||||||
import { GetData } from "../../utils/storage"
|
import { GetData } from "../../utils/storage"
|
||||||
|
import { useRouter } from "@tarojs/taro"
|
||||||
|
|
||||||
const activeEye = eye
|
const activeEye = eye
|
||||||
|
|
||||||
const Login = () => {
|
const Login = () => {
|
||||||
|
const param = useRouter().params
|
||||||
const [pwd, setPwd] = useState()
|
const [pwd, setPwd] = useState()
|
||||||
const [confirmPassword, setConfirmPassword] = useState()
|
const [confirmPassword, setConfirmPassword] = useState()
|
||||||
const [payPassword, setPayPassword] = useState()
|
const [payPassword, setPayPassword] = useState()
|
||||||
@ -63,7 +64,7 @@ const Login = () => {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
Taro.showLoading({ title: '正在注册中~', })
|
Taro.showLoading({ title: '正在注册中~', })
|
||||||
const inviteCode = GetData("inviteCode")
|
const inviteCode = param.code ? param.code : GetData("inviteCode")
|
||||||
const c = inviteCode ? inviteCode : ''
|
const c = inviteCode ? inviteCode : ''
|
||||||
const re = await register({
|
const re = await register({
|
||||||
nick_name: mobile,
|
nick_name: mobile,
|
||||||
|
@ -47,7 +47,7 @@ const Login = () => {
|
|||||||
errorNotice("两次账号输入不一致")
|
errorNotice("两次账号输入不一致")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if (num == 0 || num > user.score) {
|
if (!num || Number(num) > Number(user.score)) {
|
||||||
errorNotice("转赠数量不正确")
|
errorNotice("转赠数量不正确")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
@ -107,7 +107,7 @@ function Index() {
|
|||||||
</View>
|
</View>
|
||||||
</View>
|
</View>
|
||||||
<View className='userInfo-form' onClick={() => { navigateTo('/pages/change-pwd/index') }}>
|
<View className='userInfo-form' onClick={() => { navigateTo('/pages/change-pwd/index') }}>
|
||||||
<View className='userInfo-form-name'>修改密码</View>
|
<View className='userInfo-form-name'>修改交易密码</View>
|
||||||
<View className='flex justify-between items-center ' >
|
<View className='flex justify-between items-center ' >
|
||||||
|
|
||||||
<Image src={next} className='next-icon' />
|
<Image src={next} className='next-icon' />
|
||||||
|
Loading…
Reference in New Issue
Block a user