Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
N
nse-ui
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Members
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
吴超
nse-ui
Commits
d1d8c7f0
Commit
d1d8c7f0
authored
Sep 22, 2025
by
wanglizhen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
加密规则
parent
b929416d
全部展开
隐藏空白字符变更
内嵌
并排
正在显示
6 个修改的文件
包含
137 行增加
和
117 行删除
+137
-117
src/assets/images/ruleConfig/encryptionPage.png
+0
-0
src/views/ruleConfig/Discover/index.vue
+1
-1
src/views/ruleConfig/Encryption/index.vue
+0
-0
src/views/ruleConfig/Encryption/modules/AddEncryption.vue
+64
-56
src/views/ruleConfig/Encryption/modules/AddKey.vue
+70
-58
src/views/ruleConfig/Encryption/modules/UploadModule.vue
+2
-2
没有找到文件。
src/assets/images/ruleConfig/encryptionPage.png
0 → 100644
View file @
d1d8c7f0
285 Bytes
src/views/ruleConfig/Discover/index.vue
View file @
d1d8c7f0
...
@@ -233,7 +233,7 @@ onMounted(() => {
...
@@ -233,7 +233,7 @@ onMounted(() => {
<div
class=
"app-container scroller"
>
<div
class=
"app-container scroller"
>
<div
class=
"app-container__body"
>
<div
class=
"app-container__body"
>
<div
class=
"pageTitle"
>
<div
class=
"pageTitle"
>
<img
class=
"icon"
src=
"@/assets/images/ruleConfig/
d
iscoverPage.png"
alt=
""
>
<img
class=
"icon"
src=
"@/assets/images/ruleConfig/
D
iscoverPage.png"
alt=
""
>
<span>
发现规则
</span>
<span>
发现规则
</span>
</div>
</div>
<div
class=
"box"
>
<div
class=
"box"
>
...
...
src/views/ruleConfig/Encryption/index.vue
View file @
d1d8c7f0
差异被折叠。
点击展开。
src/views/ruleConfig/Encryption/modules/AddEncryption.vue
View file @
d1d8c7f0
<
script
setup
lang=
"ts"
name=
"AddDomain"
>
<
script
setup
lang=
"ts"
name=
"AddDomain"
>
import
{
onMounted
,
reactive
,
ref
,
toRefs
,
watch
,
computed
}
from
"vue"
;
import
{
onMounted
,
reactive
,
ref
,
toRefs
,
watch
,
computed
}
from
"vue"
;
import
type
{
FormInstance
}
from
"element-plus"
;
import
type
{
FormInstance
}
from
"element-plus"
;
import
{
ElMessage
}
from
'element-plus'
import
{
ElMessage
}
from
"element-plus"
;
import
{
save
}
from
'@/api/ruleConfig/encryption'
import
{
save
}
from
"@/api/ruleConfig/encryption"
;
const
props
=
defineProps
<
{
const
props
=
defineProps
<
{
itemData
:
Object
;
itemData
:
Object
;
...
@@ -11,12 +11,10 @@ const props = defineProps<{
...
@@ -11,12 +11,10 @@ const props = defineProps<{
typeNameDict
:
any
;
typeNameDict
:
any
;
}
>
();
}
>
();
const
emit
=
defineEmits
([
'cancel'
,
'confirm'
]);
const
emit
=
defineEmits
([
"cancel"
,
"confirm"
]);
const
data
=
reactive
({
const
data
=
reactive
({
form
:
<
any
>
{
form
:
<
any
>
{},
},
rules
:
{
rules
:
{
encryption_type
:
[
encryption_type
:
[
{
{
...
@@ -31,55 +29,57 @@ const data = reactive({
...
@@ -31,55 +29,57 @@ const data = reactive({
const
{
form
,
rules
}
=
toRefs
(
data
);
const
{
form
,
rules
}
=
toRefs
(
data
);
const
readOnly
=
ref
(
true
);
const
readOnly
=
ref
(
true
);
const
typeNameList
=
ref
([])
const
typeNameList
=
ref
([])
;
const
encryptionTypeOptions
=
computed
(()
=>
props
.
encryptionTypeDict
)
const
encryptionTypeOptions
=
computed
(()
=>
props
.
encryptionTypeDict
)
;
const
formRef
=
ref
<
FormInstance
>
();
const
formRef
=
ref
<
FormInstance
>
();
// 取消
// 取消
const
cancel
=
()
=>
{
const
cancel
=
()
=>
{
if
(
props
.
type
===
'edit'
)
{
if
(
props
.
type
===
"edit"
)
{
readOnly
.
value
=
true
readOnly
.
value
=
true
;
const
data
=
JSON
.
parse
(
JSON
.
stringify
(
props
.
itemData
));
const
data
=
JSON
.
parse
(
JSON
.
stringify
(
props
.
itemData
));
form
.
value
=
{
...
form
.
value
,
...
data
};
form
.
value
=
{
...
form
.
value
,
...
data
};
}
else
if
(
props
.
type
===
'add'
)
{
}
else
if
(
props
.
type
===
"add"
)
{
emit
(
'cancel'
)
emit
(
"cancel"
);
form
.
value
=
{}
form
.
value
=
{}
;
}
}
}
}
;
const
confirm
=
()
=>
{
const
confirm
=
()
=>
{
formRef
.
value
?.
validate
((
valid
)
=>
{
formRef
.
value
?.
validate
((
valid
)
=>
{
if
(
valid
)
{
if
(
valid
)
{
addDataFun
()
addDataFun
()
;
}
else
{
}
else
{
}
}
});
});
}
}
;
// 添加加密分类
// 添加加密分类
const
addDataFun
=
()
=>
{
const
addDataFun
=
()
=>
{
if
(
props
.
type
===
'edit'
)
{
if
(
props
.
type
===
"edit"
)
{
form
.
value
=
{
...
form
.
value
,...{
id
:
form
.
value
.
id
}}
form
.
value
=
{
...
form
.
value
,
...{
id
:
form
.
value
.
id
}
};
}
}
save
(
form
.
value
).
then
(
res
=>
{
save
(
form
.
value
).
then
(
(
res
)
=>
{
const
{
flag
}
=
res
const
{
flag
}
=
res
;
if
(
flag
)
{
if
(
flag
)
{
ElMessage
.
success
((
props
.
type
===
"add"
||
!
form
.
value
.
id
)
?
"新增成功"
:
"修改成功"
);
ElMessage
.
success
(
if
(
props
.
type
===
'edit'
)
{
props
.
type
===
"add"
||
!
form
.
value
.
id
?
"新增成功"
:
"修改成功"
readOnly
.
value
=
true
);
}
else
if
(
props
.
type
===
'add'
)
{
if
(
props
.
type
===
"edit"
)
{
form
.
value
=
{}
readOnly
.
value
=
true
;
}
else
if
(
props
.
type
===
"add"
)
{
form
.
value
=
{};
}
}
emit
(
'confirm'
,
props
.
type
)
emit
(
"confirm"
,
props
.
type
);
}
}
})
})
;
}
}
;
// 分类称验证
// 分类称验证
const
validateRulename
=
(
rule
,
value
,
callback
)
=>
{
const
validateRulename
=
(
rule
,
value
,
callback
)
=>
{
const
state
=
typeNameList
.
value
.
includes
(
value
);
const
state
=
typeNameList
.
value
.
includes
(
value
);
if
(
state
)
{
if
(
state
)
{
callback
(
new
Error
(
'加密名称已存在'
));
callback
(
new
Error
(
"加密名称已存在"
));
}
else
{
}
else
{
callback
();
callback
();
}
}
...
@@ -88,7 +88,7 @@ const validateRulename = (rule, value, callback) => {
...
@@ -88,7 +88,7 @@ const validateRulename = (rule, value, callback) => {
watch
(
watch
(
()
=>
props
.
type
,
()
=>
props
.
type
,
(
newVal
)
=>
{
(
newVal
)
=>
{
readOnly
.
value
=
props
.
type
===
'edit'
?
true
:
false
;
readOnly
.
value
=
props
.
type
===
"edit"
?
true
:
false
;
},
},
{
deep
:
true
,
immediate
:
true
}
{
deep
:
true
,
immediate
:
true
}
);
);
...
@@ -97,13 +97,15 @@ watch(
...
@@ -97,13 +97,15 @@ watch(
()
=>
props
.
itemData
,
()
=>
props
.
itemData
,
(
newVal
)
=>
{
(
newVal
)
=>
{
if
(
props
.
type
===
"add"
)
{
if
(
props
.
type
===
"add"
)
{
form
.
value
=
{}
form
.
value
=
{}
;
}
}
if
(
props
.
type
===
'edit'
&&
props
.
itemData
)
{
if
(
props
.
type
===
"edit"
&&
props
.
itemData
)
{
const
data
=
JSON
.
parse
(
JSON
.
stringify
(
props
.
itemData
));
const
data
=
JSON
.
parse
(
JSON
.
stringify
(
props
.
itemData
));
form
.
value
=
{
...
form
.
value
,
...
data
};
form
.
value
=
{
...
form
.
value
,
...
data
};
if
(
props
.
type
===
'edit'
)
{
if
(
props
.
type
===
"edit"
)
{
typeNameList
.
value
=
typeNameList
.
value
.
filter
(
item
=>
item
!==
data
.
encryption_name
)
typeNameList
.
value
=
typeNameList
.
value
.
filter
(
(
item
)
=>
item
!==
data
.
encryption_name
);
}
}
}
}
},
},
...
@@ -113,10 +115,12 @@ watch(
...
@@ -113,10 +115,12 @@ watch(
watch
(
watch
(
()
=>
props
.
typeNameDict
,
()
=>
props
.
typeNameDict
,
(
newVal
)
=>
{
(
newVal
)
=>
{
typeNameList
.
value
=
props
.
typeNameDict
typeNameList
.
value
=
props
.
typeNameDict
;
const
data
=
JSON
.
parse
(
JSON
.
stringify
(
props
.
itemData
));
const
data
=
JSON
.
parse
(
JSON
.
stringify
(
props
.
itemData
));
if
(
props
.
type
===
'edit'
&&
data
)
{
if
(
props
.
type
===
"edit"
&&
data
)
{
typeNameList
.
value
=
typeNameList
.
value
.
filter
(
item
=>
item
!==
data
.
encryption_name
)
typeNameList
.
value
=
typeNameList
.
value
.
filter
(
(
item
)
=>
item
!==
data
.
encryption_name
);
}
}
},
},
{
deep
:
true
,
immediate
:
true
}
{
deep
:
true
,
immediate
:
true
}
...
@@ -126,25 +130,29 @@ watch(
...
@@ -126,25 +130,29 @@ watch(
<
template
>
<
template
>
<div>
<div>
<el-form
ref=
"formRef"
:model=
"form"
:rules=
"rules"
label-width=
"100px"
:disabled=
"readOnly"
>
<el-form
ref=
"formRef"
:model=
"form"
:rules=
"rules"
label-width=
"100px"
:disabled=
"readOnly"
>
<el-form-item
label=
"加密名称"
prop=
"encryption_name"
required
:rules=
"[
{ required: true, message: '请输入加密名称', trigger:'blur' },{ required: true, validator: validateRulename, trigger:'blur' }]">
<div
class=
"formBox"
>
<el-input
v-model=
"form.encryption_name"
></el-input>
<el-form-item
label=
"加密名称"
prop=
"encryption_name"
required
</el-form-item>
:rules=
"[
{ required: true, message: '请输入加密名称', trigger:'blur' },{ required: true, validator: validateRulename, trigger:'blur' }]">
<el-form-item
label=
"加密方式"
prop=
"encryption_type"
required
>
<el-input
v-model=
"form.encryption_name"
></el-input>
<div
style=
"width: 100%;background: #F3F5FA;"
>
</el-form-item>
<el-select
v-model=
"form.encryption_type"
>
<el-form-item
label=
"加密方式"
prop=
"encryption_type"
required
>
<el-option
v-for=
"item in encryptionTypeOptions"
:key=
"item.value"
:label=
"item.text"
:value=
"item.value"
>
<div
style=
"width: 100%;background: #F3F5FA;"
>
</el-option>
<el-input
v-model=
"form.encryption_type"
v-if=
"readOnly"
></el-input>
</el-select>
<el-select
v-model=
"form.encryption_type"
v-if=
"!readOnly"
>
</div>
<el-option
v-for=
"item in encryptionTypeOptions"
:key=
"item.value"
:label=
"item.text"
:value=
"item.value"
>
</el-form-item>
</el-option>
<el-form-item
label=
"备注"
>
</el-select>
<el-input
type=
"textarea"
rows=
"4"
v-model=
"form.note"
></el-input>
</div>
</el-form-item>
</el-form-item>
<el-form-item
label=
"备注"
>
<el-input
type=
"textarea"
rows=
"4"
v-model=
"form.note"
></el-input>
</el-form-item>
</div>
</el-form>
</el-form>
<div
class=
"btn"
>
<div
class=
"btn"
>
<el-button
type=
"primary"
style=
"width:
15
0px;"
@
click=
"readOnly = false"
v-if=
"readOnly"
>
编辑
</el-button>
<el-button
type=
"primary"
style=
"width:
8
0px;"
@
click=
"readOnly = false"
v-if=
"readOnly"
>
编辑
</el-button>
<el-button
type=
"
info"
style=
"width: 150px;"
@
click=
"cancel"
v-if=
"!readOnly"
>
取消
</el-button>
<el-button
type=
"
primary"
style=
"width: 80px;"
@
click=
"confirm"
v-if=
"!readOnly"
>
确认
</el-button>
<el-button
type=
"primary"
style=
"width: 150px;"
@
click=
"confirm"
v-if=
"!readOnly"
>
确认
</el-button>
<el-button
style=
"width: 80px;"
@
click=
"cancel"
v-if=
"!readOnly"
>
取消
</el-button>
</div>
</div>
</div>
</div>
</
template
>
</
template
>
...
...
src/views/ruleConfig/Encryption/modules/AddKey.vue
View file @
d1d8c7f0
...
@@ -2,7 +2,11 @@
...
@@ -2,7 +2,11 @@
import
{
onMounted
,
reactive
,
ref
,
toRefs
,
watch
,
computed
}
from
"vue"
;
import
{
onMounted
,
reactive
,
ref
,
toRefs
,
watch
,
computed
}
from
"vue"
;
import
type
{
FormInstance
}
from
"element-plus"
;
import
type
{
FormInstance
}
from
"element-plus"
;
import
{
ElMessage
}
from
"element-plus"
;
import
{
ElMessage
}
from
"element-plus"
;
import
{
getRandomValue
,
testEncryption
,
saveSecretKey
}
from
'@/api/ruleConfig/encryption'
import
{
getRandomValue
,
testEncryption
,
saveSecretKey
,
}
from
"@/api/ruleConfig/encryption"
;
const
props
=
defineProps
<
{
const
props
=
defineProps
<
{
itemData
:
Object
;
itemData
:
Object
;
...
@@ -11,12 +15,10 @@ const props = defineProps<{
...
@@ -11,12 +15,10 @@ const props = defineProps<{
keyNameDict
:
any
;
keyNameDict
:
any
;
}
>
();
}
>
();
const
emit
=
defineEmits
([
'cancel'
,
'confirm'
]);
const
emit
=
defineEmits
([
"cancel"
,
"confirm"
]);
const
data
=
reactive
({
const
data
=
reactive
({
form
:
<
any
>
{
form
:
<
any
>
{},
},
rules
:
{
rules
:
{
sectet_key_value
:
[
sectet_key_value
:
[
{
{
...
@@ -34,7 +36,7 @@ const readOnly = ref(true);
...
@@ -34,7 +36,7 @@ const readOnly = ref(true);
const
testParam
=
ref
(
""
);
// 测试参数
const
testParam
=
ref
(
""
);
// 测试参数
const
encryptedValue
=
ref
(
""
);
// 加密后的值
const
encryptedValue
=
ref
(
""
);
// 加密后的值
const
formRef
=
ref
<
FormInstance
>
();
const
formRef
=
ref
<
FormInstance
>
();
const
keyNameList
=
ref
([])
const
keyNameList
=
ref
([])
;
// 取消
// 取消
const
cancel
=
()
=>
{
const
cancel
=
()
=>
{
...
@@ -50,7 +52,7 @@ const cancel = () => {
...
@@ -50,7 +52,7 @@ const cancel = () => {
const
confirm
=
()
=>
{
const
confirm
=
()
=>
{
formRef
.
value
?.
validate
((
valid
)
=>
{
formRef
.
value
?.
validate
((
valid
)
=>
{
if
(
valid
)
{
if
(
valid
)
{
saveSecretKeyFun
()
saveSecretKeyFun
()
;
}
else
{
}
else
{
}
}
});
});
...
@@ -63,32 +65,34 @@ const saveSecretKeyFun = () => {
...
@@ -63,32 +65,34 @@ const saveSecretKeyFun = () => {
encryption_id
:
encryption_id
,
encryption_id
:
encryption_id
,
secret_key_name
:
secret_key_name
,
secret_key_name
:
secret_key_name
,
sectet_key_value
:
sectet_key_value
,
sectet_key_value
:
sectet_key_value
,
};
if
(
props
.
type
===
"edit"
)
{
data
=
{
...
data
,
...{
id
:
id
}
};
}
}
if
(
props
.
type
===
'edit'
)
{
saveSecretKey
(
data
).
then
((
res
)
=>
{
data
=
{...
data
,...{
id
:
id
}}
const
{
flag
}
=
res
;
}
saveSecretKey
(
data
).
then
(
res
=>
{
const
{
flag
}
=
res
if
(
flag
)
{
if
(
flag
)
{
ElMessage
.
success
((
props
.
type
===
"add"
||
!
form
.
value
.
id
)
?
"新增成功"
:
"修改成功"
);
ElMessage
.
success
(
if
(
props
.
type
===
'edit'
)
{
props
.
type
===
"add"
||
!
form
.
value
.
id
?
"新增成功"
:
"修改成功"
readOnly
.
value
=
true
);
}
else
if
(
props
.
type
===
'add'
)
{
if
(
props
.
type
===
"edit"
)
{
form
.
value
=
{}
readOnly
.
value
=
true
;
}
else
if
(
props
.
type
===
"add"
)
{
form
.
value
=
{};
}
}
testParam
.
value
=
""
testParam
.
value
=
""
;
encryptedValue
.
value
=
""
encryptedValue
.
value
=
""
;
emit
(
'confirm'
,
props
.
type
)
emit
(
"confirm"
,
props
.
type
);
}
}
})
})
;
}
}
;
// 密钥生成
// 密钥生成
const
getKeyGeneration
=
()
=>
{
const
getKeyGeneration
=
()
=>
{
const
{
encryption_type
}
=
form
.
value
;
const
{
encryption_type
}
=
form
.
value
;
getRandomValue
({
type
:
encryption_type
}).
then
((
res
)
=>
{
getRandomValue
({
type
:
encryption_type
}).
then
((
res
)
=>
{
const
{
flag
,
data
}
=
res
;
const
{
flag
,
data
}
=
res
;
if
(
flag
){
if
(
flag
)
{
form
.
value
.
sectet_key_value
=
data
;
form
.
value
.
sectet_key_value
=
data
;
}
}
});
});
...
@@ -104,20 +108,20 @@ const getKeyText = () => {
...
@@ -104,20 +108,20 @@ const getKeyText = () => {
param
:
testParam
.
value
,
param
:
testParam
.
value
,
type
:
encryption_type
,
type
:
encryption_type
,
secret_key
:
form
.
value
.
sectet_key_value
,
secret_key
:
form
.
value
.
sectet_key_value
,
}
}
;
testEncryption
(
data
).
then
((
res
)
=>
{
testEncryption
(
data
).
then
((
res
)
=>
{
const
{
flag
,
data
}
=
res
;
const
{
flag
,
data
}
=
res
;
if
(
flag
){
if
(
flag
)
{
encryptedValue
.
value
=
data
;
encryptedValue
.
value
=
data
;
}
}
});
});
}
}
;
// 分类称验证
// 分类称验证
const
validateRulename
=
(
rule
,
value
,
callback
)
=>
{
const
validateRulename
=
(
rule
,
value
,
callback
)
=>
{
const
state
=
keyNameList
.
value
.
includes
(
value
);
const
state
=
keyNameList
.
value
.
includes
(
value
);
if
(
state
)
{
if
(
state
)
{
callback
(
new
Error
(
'加密名称已存在'
));
callback
(
new
Error
(
"加密名称已存在"
));
}
else
{
}
else
{
callback
();
callback
();
}
}
...
@@ -135,13 +139,15 @@ watch(
...
@@ -135,13 +139,15 @@ watch(
()
=>
props
.
itemData
,
()
=>
props
.
itemData
,
(
newVal
)
=>
{
(
newVal
)
=>
{
if
(
props
.
type
===
"add"
)
{
if
(
props
.
type
===
"add"
)
{
form
.
value
=
{}
form
.
value
=
{}
;
}
}
if
(
props
.
itemData
)
{
if
(
props
.
itemData
)
{
const
data
=
JSON
.
parse
(
JSON
.
stringify
(
props
.
itemData
));
const
data
=
JSON
.
parse
(
JSON
.
stringify
(
props
.
itemData
));
form
.
value
=
{
...
form
.
value
,
...
data
};
form
.
value
=
{
...
form
.
value
,
...
data
};
if
(
props
.
type
===
'edit'
&&
data
)
{
if
(
props
.
type
===
"edit"
&&
data
)
{
keyNameList
.
value
=
keyNameList
.
value
.
filter
(
item
=>
item
!==
data
.
secret_key_name
)
keyNameList
.
value
=
keyNameList
.
value
.
filter
(
(
item
)
=>
item
!==
data
.
secret_key_name
);
}
}
}
}
},
},
...
@@ -151,10 +157,12 @@ watch(
...
@@ -151,10 +157,12 @@ watch(
watch
(
watch
(
()
=>
props
.
keyNameDict
,
()
=>
props
.
keyNameDict
,
(
newVal
)
=>
{
(
newVal
)
=>
{
keyNameList
.
value
=
props
.
keyNameDict
keyNameList
.
value
=
props
.
keyNameDict
;
const
data
=
JSON
.
parse
(
JSON
.
stringify
(
props
.
itemData
));
const
data
=
JSON
.
parse
(
JSON
.
stringify
(
props
.
itemData
));
if
(
props
.
type
===
'edit'
&&
data
)
{
if
(
props
.
type
===
"edit"
&&
data
)
{
keyNameList
.
value
=
keyNameList
.
value
.
filter
(
item
=>
item
!==
data
.
secret_key_name
)
keyNameList
.
value
=
keyNameList
.
value
.
filter
(
(
item
)
=>
item
!==
data
.
secret_key_name
);
}
}
},
},
{
deep
:
true
,
immediate
:
true
}
{
deep
:
true
,
immediate
:
true
}
...
@@ -164,32 +172,36 @@ watch(
...
@@ -164,32 +172,36 @@ watch(
<
template
>
<
template
>
<div>
<div>
<el-form
ref=
"formRef"
:model=
"form"
:rules=
"rules"
label-width=
"100px"
:disabled=
"readOnly"
>
<el-form
ref=
"formRef"
:model=
"form"
:rules=
"rules"
label-width=
"100px"
:disabled=
"readOnly"
>
<el-form-item
label=
"密钥名称"
prop=
"secret_key_name"
required
:rules=
"[
{ required: true, message: '请输入加密名称', trigger:'blur' },{ required: true, validator: validateRulename, trigger:'blur' }]">
<div
class=
"formBox"
>
<el-input
v-model=
"form.secret_key_name"
></el-input>
<el-form-item
label=
"密钥名称"
prop=
"secret_key_name"
required
</el-form-item>
:rules=
"[
{ required: true, message: '请输入加密名称', trigger:'blur' },{ required: true, validator: validateRulename, trigger:'blur' }]">
<el-form-item
label=
"加密算法"
>
<el-input
v-model=
"form.secret_key_name"
></el-input>
<el-input
v-model=
"form.encryption_name"
disabled
></el-input>
</el-form-item>
</el-form-item>
<el-form-item
label=
"加密算法"
>
<el-form-item
label=
"密钥值"
prop=
"sectet_key_value"
required
>
<el-input
v-model=
"form.encryption_name"
disabled
></el-input>
<div
style=
"width: 100%;display: flex;align-items: center;"
>
</el-form-item>
<el-input
v-model=
"form.sectet_key_value"
disabled
style=
"flex: 1;"
></el-input>
<el-form-item
label=
"密钥值"
prop=
"sectet_key_value"
required
>
<el-button
type=
"primary"
style=
"margin-left: 8px;"
@
click=
"getKeyGeneration"
v-if=
"(!form.sectet_key_value) && !readOnly"
>
密钥生成
</el-button>
<div
style=
"width: 100%;display: flex;align-items: center;"
>
</div>
<el-input
v-model=
"form.sectet_key_value"
disabled
style=
"flex: 1;"
></el-input>
</el-form-item>
<el-button
type=
"primary"
style=
"margin-left: 8px;"
@
click=
"getKeyGeneration"
<el-form-item
label=
"测试"
>
v-if=
"(!form.sectet_key_value) && !readOnly"
>
密钥生成
</el-button>
<div
style=
"width: 100%;display: flex;align-items: center;"
>
</div>
<el-input
v-model=
"testParam"
style=
"flex: 1;"
></el-input>
</el-form-item>
<el-button
type=
"primary"
style=
"margin-left: 8px;"
@
click=
"getKeyText"
v-if=
"!readOnly"
>
测试
</el-button>
<el-form-item
label=
"测试"
>
</div>
<div
style=
"width: 100%;display: flex;align-items: center;"
>
</el-form-item>
<el-input
v-model=
"testParam"
style=
"flex: 1;"
></el-input>
<el-form-item
label=
"加密后的值"
>
<el-button
type=
"primary"
style=
"margin-left: 8px;"
@
click=
"getKeyText"
v-if=
"!readOnly"
>
测试
</el-button>
<el-input
v-model=
"encryptedValue"
disabled
></el-input>
</div>
</el-form-item>
</el-form-item>
<el-form-item
label=
"加密后的值"
>
<el-input
v-model=
"encryptedValue"
disabled
></el-input>
</el-form-item>
</div>
</el-form>
</el-form>
<div
class=
"btn"
>
<div
class=
"btn"
>
<el-button
type=
"primary"
style=
"width:
15
0px;"
@
click=
"readOnly = false"
v-if=
"readOnly"
>
编辑
</el-button>
<el-button
type=
"primary"
style=
"width:
8
0px;"
@
click=
"readOnly = false"
v-if=
"readOnly"
>
编辑
</el-button>
<el-button
type=
"
info"
style=
"width: 150px;"
@
click=
"cancel"
v-if=
"!readOnly"
>
取消
</el-button>
<el-button
type=
"
primary"
style=
"width: 80px;"
@
click=
"confirm"
v-if=
"!readOnly"
>
确认
</el-button>
<el-button
type=
"primary"
style=
"width: 150px;"
@
click=
"confirm"
v-if=
"!readOnly"
>
确认
</el-button>
<el-button
style=
"width: 80px;"
@
click=
"cancel"
v-if=
"!readOnly"
>
取消
</el-button>
</div>
</div>
</div>
</div>
</
template
>
</
template
>
...
...
src/views/ruleConfig/Encryption/modules/UploadModule.vue
View file @
d1d8c7f0
...
@@ -48,8 +48,8 @@ const handleFileChange = (file) => {
...
@@ -48,8 +48,8 @@ const handleFileChange = (file) => {
@
file-change=
"handleFileChange"
/>
@
file-change=
"handleFileChange"
/>
</div>
</div>
<div
class=
"btn"
>
<div
class=
"btn"
>
<el-button
type=
"
info"
style=
"width: 150px;"
@
click=
"cancel"
>
取消
</el-button>
<el-button
type=
"
primary"
:loading=
"uploadLoading"
style=
"width: 80px;"
@
click=
"confirm"
>
确认
</el-button>
<el-button
type=
"primary"
:loading=
"uploadLoading"
style=
"width: 150px;"
@
click=
"confirm"
>
确认
</el-button>
<el-button
style=
"width: 80px;"
@
click=
"cancel"
>
取消
</el-button>
</div>
</div>
</div>
</div>
</
template
>
</
template
>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论