|
@@ -30,14 +30,15 @@
|
|
|
<img src="../../assets/imgs/验证码.png" alt="">
|
|
|
</template>
|
|
|
<template #suffix>
|
|
|
- <canvas id="validCode" @click="changeValidCode" class="valid-code"></canvas>
|
|
|
+ <img @click="draw" :src="url" class="login_img">
|
|
|
</template>
|
|
|
</el-input>
|
|
|
</div>
|
|
|
+
|
|
|
<div class="error" v-if="showObj.isValidCodeEmptyShow">请输入验证码</div>
|
|
|
- <div class="error" v-if="!showObj.isValidCodeEmptyShow && showObj.isValidCodeErrorShow">验证码错误</div>
|
|
|
+<!-- <div class="error" v-if="!showObj.isValidCodeEmptyShow && showObj.isValidCodeErrorShow">验证码错误</div>-->
|
|
|
<div >
|
|
|
- <div class="btn" @click="loginMyCim">登录</div>
|
|
|
+ <div class="btn" @click="login">登录</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -47,54 +48,116 @@
|
|
|
import {encode} from "js-base64";
|
|
|
import {onMounted, ref} from 'vue'
|
|
|
import {drawPic} from "@/unit/valid-code";
|
|
|
-import {loginCim} from "@/service/login";
|
|
|
-import {showMessage} from "@/unit/element-ui/tip";
|
|
|
+import {getLoginImg, loginCim, loginIn} from "@/service/login";
|
|
|
+import {showConfirm, showMessage} from "@/unit/element-ui/tip";
|
|
|
import {useRouter} from "vue-router";
|
|
|
import {useLoginStore} from "@/pinia/login";
|
|
|
-const router = useRouter()
|
|
|
-let loginPinia = useLoginStore()
|
|
|
-function changeValidCode(){
|
|
|
- formInfo.value.vCodeReal = drawPic()
|
|
|
+const router = useRouter();
|
|
|
+let url =ref(null);
|
|
|
+let loginPinia = useLoginStore();
|
|
|
+function draw() {
|
|
|
+ getLoginImg().then(res =>{
|
|
|
+ const blob = new Blob([res], { type: "image/png" });
|
|
|
+ // 创建URL对象
|
|
|
+ url.value = URL.createObjectURL(blob);
|
|
|
+ debugger
|
|
|
+ })
|
|
|
}
|
|
|
-function loginMyCim(){
|
|
|
+function login(){
|
|
|
showObj.value.isUserNameEmptyShow = !Boolean(formInfo.value.username)
|
|
|
showObj.value.isPsdErrorEmptyShow = !Boolean(formInfo.value.psd)
|
|
|
showObj.value.isValidCodeEmptyShow = !Boolean(formInfo.value.codeUserInput)
|
|
|
- showObj.value.isValidCodeErrorShow = Boolean(formInfo.value.codeUserInput) && !(formInfo.value.codeUserInput.toLowerCase() === formInfo.value.vCodeReal.toLowerCase())
|
|
|
- if (!showObj.value.isUserNameEmptyShow && !showObj.value.isPsdErrorEmptyShow && !showObj.value.isValidCodeEmptyShow && !showObj.value.isValidCodeErrorShow){
|
|
|
- loginCim({
|
|
|
- username:formInfo.value.username,
|
|
|
- password:encode(formInfo.value.psd)
|
|
|
- }).then(res => {
|
|
|
- let isTrue = false
|
|
|
+ if (!showObj.value.isUserNameEmptyShow && !showObj.value.isPsdErrorEmptyShow && !showObj.value.isValidCodeEmptyShow){
|
|
|
+ loginIn(formInfo.value.username,encode(formInfo.value.psd),formInfo.value.codeUserInput).then(res =>{
|
|
|
+ let data
|
|
|
try {
|
|
|
- isTrue = res.msg[0].Rows.length > 0
|
|
|
-
|
|
|
- }catch {
|
|
|
- isTrue = false
|
|
|
+ data = res.msg[0].Rows;
|
|
|
+ }
|
|
|
+ catch {
|
|
|
+ showMessage({
|
|
|
+ showClose: true,
|
|
|
+ message: '登录失败',
|
|
|
+ type: 'error'
|
|
|
+ });
|
|
|
+ draw()
|
|
|
+ return
|
|
|
}
|
|
|
- if (!isTrue){
|
|
|
+ debugger
|
|
|
+ if(data.length > 0 && data.length == 1){
|
|
|
+ let time2 = new Date(data[0]["GETTIME"]).getTime() - new Date(data[0]["LAST_TIME"]).getTime();
|
|
|
+ if (time2<=15*60*1000){
|
|
|
+ if (+data[0].LOGIN_COUNT>0){
|
|
|
+ if (+data[0].LOGIN_COUNT<5){
|
|
|
+ showMessage({
|
|
|
+ type:'error',
|
|
|
+ message:`密码错误${+data[0].LOGIN_COUNT }次,5次将锁定账号`
|
|
|
+ })
|
|
|
+
|
|
|
+ }else {
|
|
|
+ showMessage({
|
|
|
+ type:'error',
|
|
|
+ message:'账号已锁定,请15分钟后重试'
|
|
|
+ })
|
|
|
+ }
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ let LOGIN_LOCK = data[0]["LOGIN_LOCK"];
|
|
|
+ if (LOGIN_LOCK == 1) {
|
|
|
+
|
|
|
+ var time = new Date(data[0]["GETTIME"]).getTime() - new Date(data[0]["LAST_TIME"]).getTime();
|
|
|
+ time = time / 1000;
|
|
|
+
|
|
|
+ if (time < 20) {
|
|
|
+ showConfirm(() => {
|
|
|
+ confirmLogin(data)
|
|
|
+ },'当前用户已登录!是否继续登录','系统提示',{
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning"
|
|
|
+ })
|
|
|
+ }
|
|
|
+ else {
|
|
|
+ confirmLogin(data)
|
|
|
+ }
|
|
|
+ }else {
|
|
|
+ confirmLogin(data)
|
|
|
+ }
|
|
|
+ }else{
|
|
|
showMessage({
|
|
|
type:'error',
|
|
|
message:'无权登录'
|
|
|
})
|
|
|
- }else {
|
|
|
-
|
|
|
- router.push('/LoginedPage')
|
|
|
- localStorage.setItem('userInfoPsdOrUserNameMiddle',JSON.stringify({
|
|
|
- ...formInfo.value,
|
|
|
- psd:encode(formInfo.value.psd) + '21'
|
|
|
- }))
|
|
|
- localStorage.setItem('canSeeSystemArr',JSON.stringify(res.msg[0].Rows))
|
|
|
- loginPinia.$state.loginInfo = formInfo.value
|
|
|
- loginPinia.$state.canSeeSystemArr = res.msg[0].Rows
|
|
|
+ draw()
|
|
|
}
|
|
|
- // console.log('wodem',)
|
|
|
+
|
|
|
+
|
|
|
})
|
|
|
}
|
|
|
}
|
|
|
+function confirmLogin(data){
|
|
|
+ console.log(data);
|
|
|
+ debugger
|
|
|
+ formInfo.value.psd = data[0].TOKEN;
|
|
|
+ localStorage.setItem('userInfoPsdOrUserNameMiddle',JSON.stringify({
|
|
|
+ ...formInfo.value
|
|
|
+ }))
|
|
|
+ loginPinia.$state.loginInfo = formInfo.value
|
|
|
+ loginMyCim();
|
|
|
+}
|
|
|
+function loginMyCim(){
|
|
|
+ loginCim({
|
|
|
+ username:formInfo.value.username,
|
|
|
+ password:formInfo.value.psd
|
|
|
+ }).then(res => {
|
|
|
+ router.push('/LoginedPage')
|
|
|
+ localStorage.setItem('canSeeSystemArr',JSON.stringify(res.msg[0].Rows))
|
|
|
+ loginPinia.$state.canSeeSystemArr = res.msg[0].Rows
|
|
|
+ // console.log('wodem',)
|
|
|
+ })
|
|
|
+}
|
|
|
onMounted(() => {
|
|
|
- formInfo.value.vCodeReal = drawPic()
|
|
|
+ draw();
|
|
|
})
|
|
|
let showObj= ref({
|
|
|
isUserNameEmptyShow:false,
|
|
@@ -105,7 +168,6 @@ let showObj= ref({
|
|
|
let formInfo = ref({
|
|
|
psd:'',
|
|
|
username:'',
|
|
|
- vCodeReal:'',
|
|
|
codeUserInput:''
|
|
|
})
|
|
|
</script>
|
|
@@ -186,6 +248,10 @@ let formInfo = ref({
|
|
|
img{
|
|
|
width: 32px;
|
|
|
}
|
|
|
+ .login_img{
|
|
|
+ width: 200px;
|
|
|
+ height: 40px;
|
|
|
+ }
|
|
|
}
|
|
|
.welcome{
|
|
|
line-height: 50px;
|