按1.14日文档修改

This commit is contained in:
Ledo 2025-01-15 00:25:32 +08:00
parent 9d1e453c29
commit 21b00913ed
2 changed files with 26 additions and 1 deletions

View File

@ -2,7 +2,12 @@
import { postLoginAPI, getDictAPI } from '@/services/login'
import { useLoginStore } from '@/stores/modules/login'
import type { LoginResult } from '@/types/login'
import { defineStore } from 'pinia'
import { ref } from 'vue'
import {
onLoad,
onShow
} from '@dcloudio/uni-app'
const loginStore = useLoginStore()
const formRef = ref<UniHelper.UniFormsInstance>()
//
@ -12,6 +17,17 @@ const form = ref({
// username: 'heli000',
// password: '123456',
})
onLoad((options) => {
console.log('ssss')
//#ifdef MP-WEIXIN
console.log('jinlaile')
if(uni.getStorageSync('hlxcxzh')!=null){
var userInfo = uni.getStorageSync('hlxcxzh');
form.value.username = userInfo.lg_name;
form.value.password = userInfo.pwd;
}
// #endif
})
//
const rules: UniHelper.UniFormsRules = {
username: {
@ -56,6 +72,15 @@ const loginSuccess = async (data: LoginResult) => {
}
const resDict = await getDictAPI(params)
loginStore.setDict(resDict)
if(uni.getStorageSync('hlxcxzh') !=null){
var userInfo = uni.getStorageSync('hlxcxzh');
if(!(userInfo.lg_name == form.value.username && userInfo.pwd == form.value.password)){
uni.setStorageSync('hlxcxzh', {lg_name:form.value.username,pwd:form.value.password});
}
}else{
defineStore('hlxcxzh',)
uni.setStorageSync('hlxcxzh', {lg_name:form.value.username,pwd:form.value.password});
}
//
uni.showToast({ icon: 'success', title: '登录成功' })
setTimeout(() => {

View File

@ -22,7 +22,7 @@ const handleLogut = async () => {
const params = {}
const data = await postLogoutAPI(params)
userStore.clearInfo()
uni.clearStorage()
// uni.clearStorage()
uni.navigateTo({ url: '/pages/login/login' })
}
onShow(async () => {