列表页

This commit is contained in:
tangping 2023-07-15 19:22:23 +08:00
parent 81bab972e6
commit c3bfbcd8a4
11 changed files with 13 additions and 12 deletions

BIN
dist.zip Normal file

Binary file not shown.

BIN
release.zip Normal file

Binary file not shown.

View File

@ -1,3 +1,3 @@
export default definePageConfig({
navigationBarTitleText: '找回密码'
navigationBarTitleText: '修改交易密码'
})

View File

@ -63,7 +63,7 @@ const Login = () => {
return
}
loading('密码重置中,请稍后~')
const re = await pwdManage('login_password', {
const re = await pwdManage('pay_password', {
confirm_password: confirmPwd,
password: pwd,
phone: account,
@ -80,7 +80,7 @@ const Login = () => {
return <View className="login-frame bg-slate-50 h-screen text-base">
<View className='addr-detail-title'>
<Image src={backNav} className="square-35 absolute left-10 nav-icon" onClick={backFn} />
修改密码
修改交易密码
</View>
<View className="change-pwd-container relative">

View File

@ -44,7 +44,7 @@ function Index() {
if (re.thumbnails?.length) {
let images = re.thumbnails
if (!!re.cover_image) {
images.shift(re.cover_image)
images.unshift(re.cover_image)
}
setThumbnails(images)
}

View File

@ -25,7 +25,7 @@ const Index = () => {
userDetail().then(rs => {
if (!rs) return
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)
})

View File

@ -119,14 +119,14 @@ const Login = () => {
</View>
</View>
<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>
<View className="login-footer flex flex-col justify-center">
<Button className="login-btn" onClick={loginSubmit}>登录</Button>
<View className="quick-login" onClick={() => {
{/* <View className="quick-login" onClick={() => {
Taro.redirectTo({ url: '/pages/login-quick/index' })
}}>快捷登录</View>
}}>快捷登录</View> */}
</View>
</View>
</View>

View File

@ -9,11 +9,12 @@ import { useState } from "react"
import Taro from "@tarojs/taro"
import { register, sendCode } from "../../utils/api"
import { GetData } from "../../utils/storage"
import { useRouter } from "@tarojs/taro"
const activeEye = eye
const Login = () => {
const param = useRouter().params
const [pwd, setPwd] = useState()
const [confirmPassword, setConfirmPassword] = useState()
const [payPassword, setPayPassword] = useState()
@ -63,7 +64,7 @@ const Login = () => {
return
}
Taro.showLoading({ title: '正在注册中~', })
const inviteCode = GetData("inviteCode")
const inviteCode = param.code ? param.code : GetData("inviteCode")
const c = inviteCode ? inviteCode : ''
const re = await register({
nick_name: mobile,

View File

@ -47,7 +47,7 @@ const Login = () => {
errorNotice("两次账号输入不一致")
return
}
if (num == 0 || num > user.score) {
if (!num || Number(num) > Number(user.score)) {
errorNotice("转赠数量不正确")
return
}

View File

@ -107,7 +107,7 @@ function Index() {
</View>
</View>
<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 ' >
<Image src={next} className='next-icon' />

BIN
test.zip Normal file

Binary file not shown.