Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
yma16
myblogVue_django
提交
4b8812e5
M
myblogVue_django
项目概览
yma16
/
myblogVue_django
通知
5
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
myblogVue_django
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
4b8812e5
编写于
2月 15, 2023
作者:
yma16
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
perf: 封装动态标签
上级
52f45789
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
36 addition
and
4 deletion
+36
-4
src/components/Article.vue
src/components/Article.vue
+4
-4
src/style/special.css
src/style/special.css
+1
-0
src/utils/aesEncode.js
src/utils/aesEncode.js
+31
-0
未找到文件。
src/components/Article.vue
浏览文件 @
4b8812e5
...
@@ -68,7 +68,7 @@
...
@@ -68,7 +68,7 @@
>
>
<div
<div
v-bind:class=
"[
v-bind:class=
"[
{ li_active: index ===
challenge_loc
},
{ li_active: index ===
activeChallengeIndex
},
li_errorClass,
li_errorClass,
]"
]"
>
>
...
@@ -154,7 +154,7 @@
...
@@ -154,7 +154,7 @@
>
>
<div
<div
v-bind:class=
"[
v-bind:class=
"[
{ li_active: index ===
challenge_loc
},
{ li_active: index ===
activeChallengeIndex
},
li_errorClass,
li_errorClass,
]"
]"
>
>
...
@@ -332,7 +332,7 @@ export default {
...
@@ -332,7 +332,7 @@ export default {
weather_low
:
[],
weather_low
:
[],
toTopIsShow
:
false
,
toTopIsShow
:
false
,
article_loc
:
0
,
article_loc
:
0
,
challenge_loc
:
-
1
,
activeChallengeIndex
:
-
1
,
topShow
:
false
,
topShow
:
false
,
userImg
:
''
,
userImg
:
''
,
username
:
'
匿名
'
,
username
:
'
匿名
'
,
...
@@ -490,7 +490,7 @@ export default {
...
@@ -490,7 +490,7 @@ export default {
},
},
li_errorClass
:
function
()
{},
li_errorClass
:
function
()
{},
clickChallengeEvent
:
function
(
item
,
index
)
{
clickChallengeEvent
:
function
(
item
,
index
)
{
this
.
challenge_loc
=
index
this
.
activeChallengeIndex
=
index
if
(
item
.
isJumpPath
)
{
if
(
item
.
isJumpPath
)
{
this
.
$router
this
.
$router
.
push
({
.
push
({
...
...
src/style/special.css
0 → 100644
浏览文件 @
4b8812e5
src/utils/aesEncode.js
0 → 100644
浏览文件 @
4b8812e5
import
CryptoJS
from
'
crypto-js
'
export
default
{
// 随机生成指定数量的16进制key
generatekey
(
num
)
{
let
library
=
'
ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789
'
let
key
=
''
for
(
let
i
=
0
;
i
<
num
;
i
++
)
{
let
randomPoz
=
Math
.
floor
(
Math
.
random
()
*
library
.
length
)
key
+=
library
.
substring
(
randomPoz
,
randomPoz
+
1
)
}
return
key
},
// 加密
encrypt
(
word
,
keyStr
)
{
// 判断是否存在ksy,不存在就用定义好的key
keyStr
=
keyStr
||
'
abcdsxyzhkj12345
'
const
key
=
CryptoJS
.
enc
.
Utf8
.
parse
(
keyStr
)
const
srcs
=
CryptoJS
.
enc
.
Utf8
.
parse
(
word
)
const
encrypted
=
CryptoJS
.
AES
.
encrypt
(
srcs
,
key
,
{
mode
:
CryptoJS
.
mode
.
ECB
,
padding
:
CryptoJS
.
pad
.
Pkcs7
})
return
encrypted
.
toString
()
},
// 解密
decrypt
(
word
,
keyStr
)
{
keyStr
=
keyStr
||
'
abcdsxyzhkj12345
'
const
key
=
CryptoJS
.
enc
.
Utf8
.
parse
(
keyStr
)
const
decrypt
=
CryptoJS
.
AES
.
decrypt
(
word
,
key
,
{
mode
:
CryptoJS
.
mode
.
ECB
,
padding
:
CryptoJS
.
pad
.
Pkcs7
})
return
CryptoJS
.
enc
.
Utf8
.
stringify
(
decrypt
).
toString
()
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录