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
4efb6a0b
Commit
4efb6a0b
authored
Sep 24, 2025
by
wanglizhen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
系统参数
parent
3d4c6e2c
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
89 行增加
和
38 行删除
+89
-38
src/assets/images/systemConfig/systemParamPage.png
+0
-0
src/views/systemConfig/SystemParam/index.vue
+89
-38
没有找到文件。
src/assets/images/systemConfig/systemParamPage.png
0 → 100644
View file @
4efb6a0b
363 Bytes
src/views/systemConfig/SystemParam/index.vue
View file @
4efb6a0b
...
...
@@ -3,7 +3,7 @@ import { onMounted, ref, toRefs } from 'vue'
import
{
queryAll
}
from
'@/api/systemConfig/systemParam.js'
const
collapseData
=
ref
([])
const
collapseValue
=
ref
([
1
]
)
const
activeName
=
ref
(
1
)
// 获取数据
const
getQueryAll
=
async
()
=>
{
...
...
@@ -28,11 +28,29 @@ onMounted(() => {
<
template
>
<div
class=
"app-container scroller"
>
<PageTitle>
<template
#
title
>
系统参数
</
template
>
</PageTitle>
<div
class=
"app-container__body"
>
<el-collapse
v-model=
"collapseValue"
accordion
>
<div
class=
"pageTitle"
>
<img
class=
"icon"
src=
"@/assets/images/systemConfig/systemParamPage.png"
alt=
""
>
<span>
系统参数
</span>
</div>
<div
class=
"box"
>
<div
class=
"line"
></div>
<div
class=
"content"
>
<el-tabs
v-model=
"activeName"
>
<el-tab-pane
:label=
"item.category"
:name=
"index + 1"
v-for=
"(item, index) in collapseData"
:key=
"index"
>
<div
class=
"contentActive"
>
<div
style=
"overflow: auto; height: 100%; padding: 20px 0px;"
>
<div
class=
"item"
v-for=
"(property, index) in item.list"
:key=
"index"
>
<div
class=
"key"
>
{{
property
.
key
}}
</div>
<div
class=
"value"
>
{{
property
.
value
}}
</div>
</div>
</div>
</div>
</el-tab-pane>
</el-tabs>
</div>
</div>
<!--
<el-collapse
v-model=
"collapseValue"
accordion
>
<el-collapse-item
:title=
"item.category"
:name=
"index + 1"
v-for=
"(item, index) in collapseData"
:key=
"index"
>
<div
class=
"contentActive"
>
<div
style=
"overflow: auto; height: 100%; padding: 20px 0px;"
>
...
...
@@ -43,48 +61,82 @@ onMounted(() => {
</div>
</div>
</el-collapse-item>
</el-collapse>
</el-collapse>
-->
</div>
</div>
</
template
>
<
style
lang=
"scss"
scoped
>
.app-container__body
{
.contentActive
{
height
:
400px
;
.item
{
display
:
flex
;
height
:
32px
;
color
:
#7a8495
;
.key
{
padding-left
:
5px
;
width
:
300px
;
vertical-align
:
middle
;
float
:
left
;
font-size
:
14px
;
font-weight
:
700
;
box-sizing
:
border-box
;
.pageTitle
{
margin-bottom
:
20px
;
display
:
flex
;
align-items
:
center
;
font-size
:
16px
;
font-weight
:
500
;
letter-spacing
:
0px
;
line-height
:
22px
;
color
:
rgba
(
53
,
64
,
79
,
1
);
.icon
{
margin-right
:
6px
;
width
:
16px
;
height
:
16px
;
}
}
.box
{
display
:
flex
;
flex-direction
:
column
;
flex
:
1
;
overflow
:
hidden
;
background
:
#fff
;
.line
{
width
:
100%
;
height
:
2px
;
border-radius
:
5px
5px
0px
0px
;
background
:
linear-gradient
(
90deg
,
rgba
(
33
,
103
,
217
,
1
)
0%
,
rgba
(
17
,
200
,
250
,
1
)
34.03%
,
rgba
(
33
,
103
,
217
,
1
)
64.58%
,
rgba
(
48
,
128
,
255
,
1
)
100%
);
}
.content
{
padding
:
28px
30px
;
flex
:
1
;
overflow
:
hidden
;
:deep(.el-tabs--top){
height
:
100%
;
.el-tab-pane{
height
:
100%
;
}
}
.value
{
:deep
(
.el-tabs__content
)
{
flex
:
1
;
line-height
:
32px
;
overflow
:
hidden
;
}
.contentActive
{
height
:
100%
;
.item
{
display
:
flex
;
color
:
#7a8495
;
.key
{
padding-left
:
5px
;
width
:
300px
;
vertical-align
:
middle
;
float
:
left
;
font-size
:
14px
;
font-weight
:
700
;
box-sizing
:
border-box
;
}
.value
{
flex
:
1
;
line-height
:
32px
;
}
}
}
}
}
:deep
(
.el-collapse-item__wrap
)
{
border
:
none
;
}
:deep
(
.el-collapse-item
)
{
margin-bottom
:
6px
;
}
:deep
(
.el-collapse-item__header
)
{
height
:
32px
;
padding-left
:
20px
;
background
:
#7a8495
;
color
:
#fff
;
}
:deep
(
.el-collapse-item__header.is-active
)
{
background
:
#2c9ef7
;
}
}
</
style
>
\ No newline at end of file
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论