修改登录

main
26947 2024-06-08 18:05:38 +08:00
parent a66b4fc5c4
commit 7a02804fc9
5 changed files with 14 additions and 5 deletions

View File

@ -127,6 +127,12 @@
"navigationBarTitleText": "登录"
}
},
{
"path": "pages/login",
"style": {
"navigationBarTitleText": "登录"
}
},
{
"path": "pages/register",
"style": {

View File

@ -34,7 +34,7 @@
<text @click="handlePrivacy" class="text-blue-400">隐私协议</text>
</view>
</view>
<button @click="wxLogin"></button>
</view>
</template>
@ -47,7 +47,7 @@ export default {
codeUrl: "",
captchaEnabled: true,
//
register: false,
register: true,
globalConfig: getApp().globalData.config,
loginForm: {
username: "admin",
@ -128,6 +128,7 @@ export default {
this.$store.dispatch('Login', this.loginForm).then(() => {
this.$modal.closeLoading()
this.loginSuccess()
}).catch(() => {
if (this.captchaEnabled) {
this.getCode()
@ -137,7 +138,9 @@ export default {
//
loginSuccess(result) {
//
this.$store.dispatch('GetUserInfo');
this.$store.dispatch('GetInfo').then(res => {
this.$store.dispatch('getQNDomainInfo')
this.$tab.reLaunch('/pages/index')
})
}

View File

@ -160,7 +160,7 @@ const info = () => {
}
info();
function handleToLogin() {
proxy.$tab.reLaunch('/pages/loginInfo/login')
proxy.$tab.reLaunch('/pages/login')
}
const handleToUserInfo = () => {
proxy.$tab.navigateTo('/pages/mine/info/userInfo')

View File

@ -37,7 +37,7 @@ const request = config => {
showConfirm('登录状态已过期,您可以继续留在该页面,或者重新登录?').then(res => {
if (res.confirm) {
store.dispatch('LogOut').then(res => {
uni.reLaunch({ url: '/pages/loginInfo/login' })
uni.reLaunch({ url: '/pages/login' })
})
}
})

View File

@ -38,7 +38,7 @@ export default function upload(config) {
showConfirm("登录状态已过期,您可以继续留在该页面,或者重新登录?").then(res => {
if (res.confirm) {
store.dispatch('LogOut').then(res => {
uni.reLaunch({ url: '/pages/loginInfo/login' })
uni.reLaunch({ url: '/pages/login' })
})
}
})