fix: 界面显示微调。

This commit is contained in:
tianyongbao
2024-11-17 22:20:30 +08:00
parent 93cd38b108
commit 2917e625d0
2 changed files with 6 additions and 6 deletions

View File

@@ -3,7 +3,7 @@
<view class="logo-content align-center justify-center flex"> <view class="logo-content align-center justify-center flex">
<image style="width: 100rpx;height: 100rpx;" :src="globalConfig.appInfo.logo" mode="widthFix"> <image style="width: 100rpx;height: 100rpx;" :src="globalConfig.appInfo.logo" mode="widthFix">
</image> </image>
<text class="title">智聪科技记账平台登录</text> <text class="title">智聪记账平台登录</text>
</view> </view>
<view class="login-form-content"> <view class="login-form-content">
<view class="input-item flex align-center"> <view class="input-item flex align-center">
@@ -87,7 +87,7 @@ async function handleLogin() {
} else if (loginForm.value.code === "" && captchaEnabled.value) { } else if (loginForm.value.code === "" && captchaEnabled.value) {
modal.msgError("请输入验证码") modal.msgError("请输入验证码")
} else { } else {
modal.loading("登录中,请耐心等待...") modal.loading("登录中,请等待...")
pwdLogin() pwdLogin()
} }
}; };

View File

@@ -5,13 +5,13 @@
<uni-list-item showExtraIcon="true" :extraIcon="{ type: 'phone-filled' }" title="手机号码" <uni-list-item showExtraIcon="true" :extraIcon="{ type: 'phone-filled' }" title="手机号码"
:rightText="user.phonenumber" /> :rightText="user.phonenumber" />
<uni-list-item showExtraIcon="true" :extraIcon="{ type: 'email-filled' }" title="邮箱" :rightText="user.email" /> <uni-list-item showExtraIcon="true" :extraIcon="{ type: 'email-filled' }" title="邮箱" :rightText="user.email" />
<uni-list-item showExtraIcon="true" :extraIcon="{ type: 'auth-filled' }" title="岗位" :rightText="postGroup" /> <!-- <uni-list-item showExtraIcon="true" :extraIcon="{ type: 'auth-filled' }" title="岗位" :rightText="postGroup" />-->
<uni-list-item showExtraIcon="true" :extraIcon="{ type: 'staff-filled' }" title="角色" :rightText="roleGroup" /> <!-- <uni-list-item showExtraIcon="true" :extraIcon="{ type: 'staff-filled' }" title="角色" :rightText="roleGroup" />-->
<uni-list-item showExtraIcon="true" :extraIcon="{ type: 'calendar-filled' }" title="创建日期" <uni-list-item showExtraIcon="true" :extraIcon="{ type: 'calendar-filled' }" title="创建日期"
:rightText="user.createTime" /> :rightText="user.createTime" />
</uni-list> </uni-list>
<u-button @click="register()">绑定微信</u-button> <!-- <u-button @click="register()">绑定微信</u-button>-->
</view> </view>
</template> </template>
@@ -41,7 +41,7 @@ function register(){
modal.closeLoading() modal.closeLoading()
}) })
}) })
} }
</script> </script>