|
@@ -16,114 +16,171 @@
|
|
|
<el-input size="large" show-password ref="refPassword" v-model="formInline.password" type="password" name="password" placeholder="密码" />
|
|
|
</el-form-item>
|
|
|
<div class="rowSS">
|
|
|
- <el-form-item prop="identifyCode" :rules="formRules.isNotNull">
|
|
|
- <el-input size="large" @keyup.enter="handleLogin" v-model="formInline.identifyCode" placeholder="请输入验证码" />
|
|
|
+ <el-form-item prop="verificationCode" :rules="formRules.isNotNull">
|
|
|
+ <el-input size="large" @keyup.enter="handleLogin" v-model="formInline.verificationCode" placeholder="请输入验证码" />
|
|
|
</el-form-item>
|
|
|
- <Identify style="margin-left:18px" />
|
|
|
+ <Identify :identifyCode="identifyCode" @changeCode="changeCode" style="margin-left:18px" />
|
|
|
</div>
|
|
|
<div class="tip-message">{{ tipMessage }}</div>
|
|
|
<el-button :loading="loading" type="primary" class="login-btn" size="large" @click.prevent="handleLogin">
|
|
|
- Login
|
|
|
+ 登录
|
|
|
</el-button>
|
|
|
</el-form>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script setup lang="ts">
|
|
|
-import { ref, reactive } from 'vue'
|
|
|
-import settings from '@/settings'
|
|
|
-import Identify from './identify.vue'
|
|
|
-import { ElMessage } from 'element-plus'
|
|
|
-import { ObjTy } from '~/common'
|
|
|
-import { useUserStore } from '@/store/user'
|
|
|
+import { ref, reactive, onBeforeMount } from "vue";
|
|
|
+import { GetCheckCode, gettoken, GetSystemSet } from "@/api/newLogin";
|
|
|
+import { setCodeToken, getCodeToken } from "@/utils/auth";
|
|
|
+import Identify from "./identify.vue";
|
|
|
+import { ElMessage } from "element-plus";
|
|
|
+import { ObjTy } from "~/common";
|
|
|
+import { useUserStore } from "@/store/user";
|
|
|
+import MD5 from "blueimp-md5";
|
|
|
//element valid
|
|
|
-const formRules = useElement().formRules
|
|
|
+const formRules = useElement().formRules;
|
|
|
//form
|
|
|
let formInline = reactive({
|
|
|
- username: 'admin',
|
|
|
- password: '123456',
|
|
|
- identifyCode: '1234'
|
|
|
-})
|
|
|
+ username: "",
|
|
|
+ password: "",
|
|
|
+ verificationCode: "",
|
|
|
+});
|
|
|
+const identifyCode = ref("");
|
|
|
let state: ObjTy = reactive({
|
|
|
otherQuery: {},
|
|
|
- redirect: undefined
|
|
|
-})
|
|
|
-const title = ref('系统名称')
|
|
|
-const imgUrl = ref('https://cube.elemecdn.com/')
|
|
|
+ redirect: undefined,
|
|
|
+});
|
|
|
+const title = ref("系统名称");
|
|
|
+const imgUrl = ref("https://cube.elemecdn.com/");
|
|
|
/* listen router change */
|
|
|
-const route = useRoute()
|
|
|
+const route = useRoute();
|
|
|
let getOtherQuery = (query: any) => {
|
|
|
return Object.keys(query).reduce((acc: any, cur: any) => {
|
|
|
- if (cur !== 'redirect') {
|
|
|
- acc[cur] = query[cur]
|
|
|
+ if (cur !== "redirect") {
|
|
|
+ acc[cur] = query[cur];
|
|
|
}
|
|
|
- return acc
|
|
|
- }, {})
|
|
|
-}
|
|
|
-const errorHandler = () => true
|
|
|
+ return acc;
|
|
|
+ }, {});
|
|
|
+};
|
|
|
+const errorHandler = () => true;
|
|
|
watch(
|
|
|
() => route.query,
|
|
|
(query) => {
|
|
|
if (query) {
|
|
|
- state.redirect = query.redirect
|
|
|
- state.otherQuery = getOtherQuery(query)
|
|
|
+ state.redirect = query.redirect;
|
|
|
+ state.otherQuery = getOtherQuery(query);
|
|
|
}
|
|
|
},
|
|
|
{ immediate: true }
|
|
|
-)
|
|
|
+);
|
|
|
+
|
|
|
+//获取token
|
|
|
+onBeforeMount(() => {
|
|
|
+ getToken();
|
|
|
+});
|
|
|
+
|
|
|
+const getToken = async () => {
|
|
|
+ const res = await gettoken({
|
|
|
+ appid: PLATFROM_CONFIG.appId,
|
|
|
+ appSecret: PLATFROM_CONFIG.appKeyString,
|
|
|
+ });
|
|
|
+ if (res.code == 0 && res.data) {
|
|
|
+ setCodeToken(res.data.appToken);
|
|
|
+ getCheckCode();
|
|
|
+ //getSystemSet();
|
|
|
+ } else {
|
|
|
+ ElMessage.error(res.message);
|
|
|
+ }
|
|
|
+};
|
|
|
+
|
|
|
+//获取动态验证码
|
|
|
+const getCheckCode = async () => {
|
|
|
+ const { code, message, data } = await GetCheckCode({
|
|
|
+ appToken: getCodeToken(),
|
|
|
+ });
|
|
|
+ if (code == 0) {
|
|
|
+ identifyCode.value = data;
|
|
|
+ } else {
|
|
|
+ ElMessage.error(message);
|
|
|
+ }
|
|
|
+};
|
|
|
|
|
|
+//切换验证码
|
|
|
+const changeCode = () => {
|
|
|
+ getCheckCode();
|
|
|
+};
|
|
|
+
|
|
|
+//获取系统设置
|
|
|
+const getSystemSet = async () => {
|
|
|
+ const { code, message } = await GetSystemSet({});
|
|
|
+ if (code == 0) {
|
|
|
+ ElMessage.success(message);
|
|
|
+ } else {
|
|
|
+ ElMessage.error(message);
|
|
|
+ }
|
|
|
+};
|
|
|
/*
|
|
|
* login relative
|
|
|
* */
|
|
|
-let loading = ref(false)
|
|
|
-let tipMessage = ref('')
|
|
|
+let loading = ref(false);
|
|
|
+let tipMessage = ref("");
|
|
|
|
|
|
-const refloginForm: any = ref(null)
|
|
|
+const refloginForm: any = ref(null);
|
|
|
let handleLogin = () => {
|
|
|
refloginForm.value.validate((valid: any) => {
|
|
|
if (valid) {
|
|
|
- loginReq()
|
|
|
+ loginReq();
|
|
|
} else {
|
|
|
- return false
|
|
|
+ return false;
|
|
|
}
|
|
|
- })
|
|
|
-}
|
|
|
+ });
|
|
|
+};
|
|
|
|
|
|
//use the auto import from vite.config.js of AutoImport
|
|
|
-const router = useRouter()
|
|
|
+const router = useRouter();
|
|
|
let loginReq = () => {
|
|
|
- loading.value = true
|
|
|
- const userStore = useUserStore()
|
|
|
+ loading.value = true;
|
|
|
+ const params = {
|
|
|
+ username: formInline.username.replace(/\s+/g, ""),
|
|
|
+ password: MD5(formInline.password.replace(/\s+/g, "")),
|
|
|
+ // password: this.loginForm.password.replace(/\s+/g, ""),
|
|
|
+ verificationCode: formInline.verificationCode.replace(/\s+/g, ""),
|
|
|
+ };
|
|
|
+ const userStore = useUserStore();
|
|
|
userStore
|
|
|
- .login(formInline)
|
|
|
+ .login(params)
|
|
|
.then(() => {
|
|
|
- ElMessage({ message: '登录成功', type: 'success' })
|
|
|
- router.push({ path: state.redirect || '/', query: state.otherQuery })
|
|
|
+ ElMessage({ message: "登录成功", type: "success" });
|
|
|
+ sessionStorage.setItem("userName", params.username);
|
|
|
+ router.push({ path: state.redirect || "/", query: state.otherQuery });
|
|
|
})
|
|
|
.catch((res) => {
|
|
|
- tipMessage.value = res.msg
|
|
|
+ console.log(res);
|
|
|
+ tipMessage.value = res.msg;
|
|
|
useCommon()
|
|
|
.sleep(30)
|
|
|
.then(() => {
|
|
|
- loading.value = false
|
|
|
- })
|
|
|
- })
|
|
|
-}
|
|
|
+ getCheckCode();
|
|
|
+ loading.value = false;
|
|
|
+ });
|
|
|
+ });
|
|
|
+};
|
|
|
/*
|
|
|
* password show or hidden
|
|
|
* */
|
|
|
-let passwordType = ref('password')
|
|
|
-const refPassword: any = ref(null)
|
|
|
+let passwordType = ref("password");
|
|
|
+const refPassword: any = ref(null);
|
|
|
let showPwd = () => {
|
|
|
- if (passwordType.value === 'password') {
|
|
|
- passwordType.value = ''
|
|
|
+ if (passwordType.value === "password") {
|
|
|
+ passwordType.value = "";
|
|
|
} else {
|
|
|
- passwordType.value = 'password'
|
|
|
+ passwordType.value = "password";
|
|
|
}
|
|
|
nextTick(() => {
|
|
|
- refPassword.value.focus()
|
|
|
- })
|
|
|
-}
|
|
|
+ refPassword.value.focus();
|
|
|
+ });
|
|
|
+};
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
@@ -133,7 +190,7 @@ $light_gray: #eee;
|
|
|
.login-container {
|
|
|
height: 100vh;
|
|
|
width: 100%;
|
|
|
- background-image: url('../../assets/login/bg.jpg');
|
|
|
+ background-image: url("../../assets/login/bg.jpg");
|
|
|
background-repeat: no-repeat;
|
|
|
background-size: 100% 100%;
|
|
|
.login-form {
|