1
This commit is contained in:
7
.env
7
.env
@@ -16,9 +16,14 @@ VITE_API_URL = /api
|
|||||||
# ADMIN 服务地址
|
# ADMIN 服务地址
|
||||||
VITE_ADMIN_PROXY_PATH = http://scj-v3.zhxy.link/
|
VITE_ADMIN_PROXY_PATH = http://scj-v3.zhxy.link/
|
||||||
|
|
||||||
# 前端加密密钥
|
# 前端加密密钥(AES,未启用 SM2 时使用)
|
||||||
VITE_PWD_ENC_KEY='pigxpigxpigxpigx'
|
VITE_PWD_ENC_KEY='pigxpigxpigxpigx'
|
||||||
|
|
||||||
|
# 登录使用 SM2 加密密码:设为 true 时密码用 SM2 公钥加密,需后端配置 security.sm2-private-key
|
||||||
|
VITE_LOGIN_SM2_ENABLE=true
|
||||||
|
# SM2 公钥(十六进制,04 开头 130 字符),与后端私钥成对
|
||||||
|
VITE_SM2_PUBLIC_KEY=04de67d5234bb13b5bbe524a71d1e48ac302014be3c3c6ba74b33bb5a125717b0e8873ad3971a6082138e0556a7ec334d460458c6c46753b65acc93ec1b99bb8fd
|
||||||
|
|
||||||
# OAUTH2 密码模式客户端信息
|
# OAUTH2 密码模式客户端信息
|
||||||
VITE_OAUTH2_PASSWORD_CLIENT='pig:pig'
|
VITE_OAUTH2_PASSWORD_CLIENT='pig:pig'
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ import request from '/@/utils/request';
|
|||||||
import { Session } from '/@/utils/storage';
|
import { Session } from '/@/utils/storage';
|
||||||
import { validateNull } from '/@/utils/validate';
|
import { validateNull } from '/@/utils/validate';
|
||||||
import { useUserInfo } from '/@/stores/userInfo';
|
import { useUserInfo } from '/@/stores/userInfo';
|
||||||
import other from '/@/utils/other';
|
import other, { sm2Encrypt } from '/@/utils/other';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* https://www.ietf.org/rfc/rfc6749.txt
|
* https://www.ietf.org/rfc/rfc6749.txt
|
||||||
@@ -10,6 +10,11 @@ import other from '/@/utils/other';
|
|||||||
*/
|
*/
|
||||||
const FORM_CONTENT_TYPE = 'application/x-www-form-urlencoded';
|
const FORM_CONTENT_TYPE = 'application/x-www-form-urlencoded';
|
||||||
|
|
||||||
|
/** 登录是否使用 SM2 加密密码(需后端配置 SM2 私钥并支持 Enc-Flag: sm2) */
|
||||||
|
const LOGIN_SM2_ENABLE = import.meta.env.VITE_LOGIN_SM2_ENABLE === 'true';
|
||||||
|
/** SM2 公钥(十六进制,与后端私钥成对),用于前端加密密码 */
|
||||||
|
const SM2_PUBLIC_KEY = import.meta.env.VITE_SM2_PUBLIC_KEY || '';
|
||||||
|
|
||||||
// 登录方式
|
// 登录方式
|
||||||
export enum LoginTypeEnum {
|
export enum LoginTypeEnum {
|
||||||
PASSWORD,
|
PASSWORD,
|
||||||
@@ -47,8 +52,15 @@ export enum SocialLoginEnum {
|
|||||||
export const login = (data: any) => {
|
export const login = (data: any) => {
|
||||||
const basicAuth = 'Basic ' + window.btoa(import.meta.env.VITE_OAUTH2_PASSWORD_CLIENT);
|
const basicAuth = 'Basic ' + window.btoa(import.meta.env.VITE_OAUTH2_PASSWORD_CLIENT);
|
||||||
Session.set('basicAuth', basicAuth);
|
Session.set('basicAuth', basicAuth);
|
||||||
// 密码加密
|
let encPassword: string;
|
||||||
const encPassword = other.encryption(data.password, import.meta.env.VITE_PWD_ENC_KEY);
|
let encFlag: string;
|
||||||
|
if (LOGIN_SM2_ENABLE && SM2_PUBLIC_KEY) {
|
||||||
|
encPassword = sm2Encrypt(data.password, SM2_PUBLIC_KEY);
|
||||||
|
encFlag = 'sm2';
|
||||||
|
} else {
|
||||||
|
encPassword = other.encryption(data.password, import.meta.env.VITE_PWD_ENC_KEY);
|
||||||
|
encFlag = 'false';
|
||||||
|
}
|
||||||
const { username, randomStr, code, grant_type, scope } = data;
|
const { username, randomStr, code, grant_type, scope } = data;
|
||||||
return request({
|
return request({
|
||||||
url: '/auth/oauth2/token',
|
url: '/auth/oauth2/token',
|
||||||
@@ -59,7 +71,7 @@ export const login = (data: any) => {
|
|||||||
skipToken: true,
|
skipToken: true,
|
||||||
Authorization: basicAuth,
|
Authorization: basicAuth,
|
||||||
'Content-Type': FORM_CONTENT_TYPE,
|
'Content-Type': FORM_CONTENT_TYPE,
|
||||||
"Enc-Flag": "false",
|
'Enc-Flag': encFlag,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -42,7 +42,6 @@ export const useUserInfo = defineStore('userInfo', {
|
|||||||
async login(data:any) {
|
async login(data:any) {
|
||||||
data.grant_type = 'password';
|
data.grant_type = 'password';
|
||||||
data.scope = 'server';
|
data.scope = 'server';
|
||||||
|
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
login(data)
|
login(data)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ import {verifyUrl} from '/@/utils/toolsValidate';
|
|||||||
import request from '/@/utils/request';
|
import request from '/@/utils/request';
|
||||||
import {useMessage} from '/@/hooks/message';
|
import {useMessage} from '/@/hooks/message';
|
||||||
import * as CryptoJS from 'crypto-js';
|
import * as CryptoJS from 'crypto-js';
|
||||||
import {sm4} from 'sm-crypto'
|
import { sm4, sm2 } from 'sm-crypto'
|
||||||
import {validateNull} from './validate';
|
import {validateNull} from './validate';
|
||||||
|
|
||||||
|
|
||||||
@@ -240,6 +240,17 @@ export function sm4Decryption(src: string, keyWord: string) {
|
|||||||
return sm4.decrypt(src, keyWord);
|
return sm4.decrypt(src, keyWord);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* SM2 加密(登录密码等,与后端 SM2 私钥解密配套)
|
||||||
|
* @param msg 明文
|
||||||
|
* @param publicKey 后端提供的 SM2 公钥(十六进制,04 开头 130 字符或 128 字符压缩格式)
|
||||||
|
* @returns 十六进制密文,格式 C1C3C2
|
||||||
|
*/
|
||||||
|
export function sm2Encrypt(msg: string, publicKey: string): string {
|
||||||
|
if (!msg || !publicKey) return msg;
|
||||||
|
return sm2.doEncrypt(msg, publicKey, 1);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Base64 加密
|
* Base64 加密
|
||||||
* @param {*} src 明文
|
* @param {*} src 明文
|
||||||
@@ -370,6 +381,9 @@ const other = {
|
|||||||
decryption: (src: string, keyWord: string) => {
|
decryption: (src: string, keyWord: string) => {
|
||||||
return decryption(src, keyWord);
|
return decryption(src, keyWord);
|
||||||
},
|
},
|
||||||
|
sm2Encrypt: (msg: string, publicKey: string) => {
|
||||||
|
return sm2Encrypt(msg, publicKey);
|
||||||
|
},
|
||||||
base64Encrypt: (data: any) => {
|
base64Encrypt: (data: any) => {
|
||||||
return base64Encrypt(data);
|
return base64Encrypt(data);
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -145,23 +145,23 @@ const changeSwitch = async (id: string) => {
|
|||||||
|
|
||||||
const initscheduleList = () => {
|
const initscheduleList = () => {
|
||||||
// 初始化日程列表
|
// 初始化日程列表
|
||||||
list({
|
// list({
|
||||||
startDate: startDateRef.value,
|
// startDate: startDateRef.value,
|
||||||
endDate: endDateRef.value,
|
// endDate: endDateRef.value,
|
||||||
}).then((res) => {
|
// }).then((res) => {
|
||||||
// 获取返回结果的数据并转换为合适的格式
|
// // 获取返回结果的数据并转换为合适的格式
|
||||||
reminders.value = res.data.map((item: any) => {
|
// reminders.value = res.data.map((item: any) => {
|
||||||
return {
|
// return {
|
||||||
key: item.id,
|
// key: item.id,
|
||||||
highlight: {
|
// highlight: {
|
||||||
color: 'primary',
|
// color: 'primary',
|
||||||
fillMode: 'outline',
|
// fillMode: 'outline',
|
||||||
},
|
// },
|
||||||
dates: item.scheduleDate,
|
// dates: item.scheduleDate,
|
||||||
customData: item,
|
// customData: item,
|
||||||
};
|
// };
|
||||||
});
|
// });
|
||||||
});
|
// });
|
||||||
};
|
};
|
||||||
|
|
||||||
// 过滤日历中选中的单元格是否有日程
|
// 过滤日历中选中的单元格是否有日程
|
||||||
|
|||||||
Reference in New Issue
Block a user