feat(dealer): 更新报备人字段并调整登录页面配置
- 报备人字段标签增加 "(ID)" 标识 - 设置报备人输入框类型为数字 - 禁用编辑模式下报备人字段 - 注释掉注册、忘记密码和服务配置相关路由及界面元素 - 移除登录页底部服务配置按钮 - 隐藏忘记密码与立即注册链接
This commit is contained in:
@@ -10,9 +10,9 @@ export default defineAppConfig({
|
|||||||
"root": "passport",
|
"root": "passport",
|
||||||
"pages": [
|
"pages": [
|
||||||
"login",
|
"login",
|
||||||
"register",
|
// "register",
|
||||||
"forget",
|
// "forget",
|
||||||
"setting",
|
// "setting",
|
||||||
"agreement",
|
"agreement",
|
||||||
"sms-login"
|
"sms-login"
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -363,10 +363,11 @@ const AddShopDealerApply = () => {
|
|||||||
{/*</Form.Item>*/}
|
{/*</Form.Item>*/}
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
<Form.Item name="userId" label="报备人" initialValue={FormData?.userId}>
|
<Form.Item name="userId" label="报备人(ID)" initialValue={FormData?.userId}>
|
||||||
<Input
|
<Input
|
||||||
placeholder="自己报备请留空"
|
placeholder="自己报备请留空"
|
||||||
disabled={isEditMode}
|
disabled={isEditMode}
|
||||||
|
type="number"
|
||||||
value={(FormData?.userId)?.toString() || ''}
|
value={(FormData?.userId)?.toString() || ''}
|
||||||
/>
|
/>
|
||||||
</Form.Item>
|
</Form.Item>
|
||||||
|
|||||||
@@ -25,18 +25,18 @@ const Login = () => {
|
|||||||
<div className={'flex flex-col justify-between items-center my-2'}>
|
<div className={'flex flex-col justify-between items-center my-2'}>
|
||||||
<Input type="password" placeholder="密码" style={{backgroundColor: '#ffffff', borderRadius: '8px'}}/>
|
<Input type="password" placeholder="密码" style={{backgroundColor: '#ffffff', borderRadius: '8px'}}/>
|
||||||
</div>
|
</div>
|
||||||
<div className={'flex justify-between my-2 text-left px-1'}>
|
{/*<div className={'flex justify-between my-2 text-left px-1'}>*/}
|
||||||
<a href={'#'} className={'text-blue-600 text-sm'}
|
{/* <a href={'#'} className={'text-blue-600 text-sm'}*/}
|
||||||
onClick={() => Taro.navigateTo({url: '/passport/forget'})}>忘记密码</a>
|
{/* onClick={() => Taro.navigateTo({url: '/passport/forget'})}>忘记密码</a>*/}
|
||||||
<a href={'#'} className={'text-blue-600 text-sm'}
|
{/* <a href={'#'} className={'text-blue-600 text-sm'}*/}
|
||||||
onClick={() => Taro.navigateTo({url: '/passport/register'})}>立即注册</a>
|
{/* onClick={() => Taro.navigateTo({url: '/passport/register'})}>立即注册</a>*/}
|
||||||
</div>
|
{/*</div>*/}
|
||||||
<div className={'flex justify-center my-5'}>
|
<div className={'flex justify-center my-5'}>
|
||||||
<Button type="info" size={'large'} className={'w-full rounded-lg p-2'} disabled={!isAgree}>登录</Button>
|
<Button type="info" size={'large'} className={'w-full rounded-lg p-2'} disabled={!isAgree}>登录</Button>
|
||||||
</div>
|
</div>
|
||||||
<div className={'my-2 flex fixed justify-center bottom-20 left-0 text-sm items-center text-center w-full'}>
|
{/*<div className={'my-2 flex fixed justify-center bottom-20 left-0 text-sm items-center text-center w-full'}>*/}
|
||||||
<Button onClick={() => Taro.navigateTo({url: '/passport/setting'})}>服务配置</Button>
|
{/* <Button onClick={() => Taro.navigateTo({url: '/passport/setting'})}>服务配置</Button>*/}
|
||||||
</div>
|
{/*</div>*/}
|
||||||
{/*<div className={'w-full fixed bottom-20 my-2 flex justify-center text-sm items-center text-center'}>*/}
|
{/*<div className={'w-full fixed bottom-20 my-2 flex justify-center text-sm items-center text-center'}>*/}
|
||||||
{/* 没有账号?<a href={''} onClick={() => Taro.navigateTo({url: '/passport/register'})}*/}
|
{/* 没有账号?<a href={''} onClick={() => Taro.navigateTo({url: '/passport/register'})}*/}
|
||||||
{/* className={'text-blue-600'}>立即注册</a>*/}
|
{/* className={'text-blue-600'}>立即注册</a>*/}
|
||||||
|
|||||||
Reference in New Issue
Block a user