Browse Source

去掉些固定标识

Karsa 1 year ago
parent
commit
d3bea6e542
3 changed files with 6 additions and 4 deletions
  1. 1 1
      index.html
  2. 3 1
      src/api/crypto.js
  3. 2 2
      src/main.js

+ 1 - 1
index.html

@@ -6,7 +6,7 @@
 	<meta name="renderer" content="webkit" />
 	<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" />
 	<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
-	<title>弘则ETA</title>
+	<title>ETA</title>
 
 	<link rel="stylesheet" href="./static/css/iconfont.css"/>
 	<link rel="icon" type="image/x-icon" href="./static/fa.ico" id="icon"/>

+ 3 - 1
src/api/crypto.js

@@ -1,4 +1,6 @@
-const key = '6WpHp4vSvLVQK8SLioNZ7WMq';
+const key = '6WpHp4vSvLVQK8SLioNZ7WMq'; //eta
+// const key = 'cJ3b1I4YBlTc85vnxy36xip2'; //逸诺
+// const key = 'bvS3kVp7QIZoD70fPk1wk41n'; //试用
 
 class CryptoJS {
 	// 3DES加密,CBC/PKCS5Padding

+ 2 - 2
src/main.js

@@ -176,8 +176,8 @@ router.beforeEach(async(to, from, next) => {
 router.afterEach((to, from, next) => {
   // 改变页面标题
   document.title = to.matched[to.matched.length - 1].name
-    ? `弘则ETA-${to.matched[to.matched.length - 1].name}`
-    : "弘则ETA";
+    ? `ETA-${to.matched[to.matched.length - 1].name}`
+    : "ETA";
   window.scrollTo(0, 0);
 });