实验室运维前端-web
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
jinna 0db1160063 提交package.json 1 year ago
public 实验室运维项目前端代码提交 1 year ago
src 修改首页工作台跳转至设备管理逻辑 1 year ago
.browserslistrc 实验室运维项目前端代码提交 1 year ago
.editorconfig 实验室运维项目前端代码提交 1 year ago
.eslintrc.js 实验室运维项目前端代码提交 1 year ago
.gitignore PC端消息通知接口联调,页面修改 1 year ago
.postcssrc.js 实验室运维项目前端代码提交 1 year ago
LICENSE 实验室运维项目前端代码提交 1 year ago
README.md 实验室运维项目前端代码提交 1 year ago
babel.config.js 实验室运维项目前端代码提交 1 year ago
build.sh 实验室运维项目前端代码提交 1 year ago
package-lock.json 实验室运维项目前端代码提交 1 year ago
package.json 提交package.json 1 year ago
vue.config.js 实验室运维项目前端代码提交 1 year ago
yarn.lock 实验室运维项目前端代码提交 1 year ago

README.md

项目启动

node版本

14.x.x

install

npm install

修改服务器链接配置

vue.config.js文件的devServer配置中

run

npm run serve

加密

oauth2加密配置

website.js 配置如下

// 使用后端工程 @org.springblade.test.Sm2KeyGenerator 获取,需和后端配置保持一致
oauth2: {
  publicKey: 'xxxxx',
}

报文加密配置

crypto.js 配置如下

// 使用@org.springblade.test.CryptoKeyGenerator获取,需和后端配置保持一致
export default class crypto {
  static cryptoKey = 'xxxxx';
  static aesKey = 'xxxxx';
  static desKey = 'xxxxx';
}