inl-ui 0.0.39 → 0.0.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +8 -7
- package/dist/index.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/src/pageComponent/assets/styles/alarm/warning-record.less +7 -0
- package/src/pageComponent/assets/styles/login/login.less +2 -1
- package/src/pageComponent/assets/styles/systemManager/aboutNew.less +10 -11
- package/src/pageComponent/assets/styles/systemManager/index.less +13 -0
- package/src/pageComponent/assets/styles/systemManager/noticeManager/noticeCenter.less +12 -0
- package/src/pageComponent/assets/styles/systemManager/param-manager.less +7 -0
- package/src/pageComponent/assets/styles/systemManager/systemSetting.less +1 -1
- package/src/pageComponent/components/CommonTree.tsx +1 -1
- package/src/pageComponent/views/alarms/warning-record/index.tsx +1 -1
- package/src/pageComponent/views/alarms/warning-record/record-table.tsx +1 -1
- package/src/pageComponent/views/pss/assets/less/index.less +1 -0
- package/src/pageComponent/views/systemManager/noticeManager/noticeCenter.tsx +1 -1
- package/src/pageComponent/views/systemManager/noticeManager/noticeManager.tsx +1 -1
- package/src/pageComponent/views/systemManager/paramManager/index.tsx +1 -1
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
.aboutNew {
|
|
2
|
-
position: relative;
|
|
3
|
-
min-height: 600px;
|
|
4
2
|
height: 100%;
|
|
3
|
+
min-height: 500px;
|
|
4
|
+
overflow: auto;
|
|
5
|
+
position: relative;
|
|
5
6
|
|
|
6
7
|
.logoLine {
|
|
7
8
|
justify-content: space-between;
|
|
@@ -28,7 +29,7 @@
|
|
|
28
29
|
|
|
29
30
|
&::before {
|
|
30
31
|
content: "";
|
|
31
|
-
border-left: 3px solid #
|
|
32
|
+
border-left: 3px solid #1d33a2;
|
|
32
33
|
height: 10px;
|
|
33
34
|
margin-right: 12px;
|
|
34
35
|
}
|
|
@@ -45,16 +46,15 @@
|
|
|
45
46
|
font-size: 14px;
|
|
46
47
|
font-family: PingFangSC-Regular, PingFang SC;
|
|
47
48
|
font-weight: 400;
|
|
48
|
-
color: #
|
|
49
|
+
color: #5d616b;
|
|
49
50
|
}
|
|
50
51
|
|
|
51
52
|
.software {
|
|
52
53
|
height: 22px;
|
|
53
54
|
font-size: 14px;
|
|
54
|
-
font-family: PingFangSC-Semibold,
|
|
55
|
-
PingFang SC;
|
|
55
|
+
font-family: PingFangSC-Semibold, PingFang SC;
|
|
56
56
|
font-weight: 600;
|
|
57
|
-
color: #
|
|
57
|
+
color: #31363c;
|
|
58
58
|
line-height: 22px;
|
|
59
59
|
|
|
60
60
|
&:not(:first-child) {
|
|
@@ -63,7 +63,6 @@
|
|
|
63
63
|
}
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
-
|
|
67
66
|
.bottom_line {
|
|
68
67
|
position: absolute;
|
|
69
68
|
left: 0;
|
|
@@ -85,15 +84,15 @@
|
|
|
85
84
|
}
|
|
86
85
|
|
|
87
86
|
.label {
|
|
88
|
-
color: #
|
|
87
|
+
color: #31363c;
|
|
89
88
|
font-weight: 600;
|
|
90
89
|
}
|
|
91
90
|
|
|
92
91
|
.value {
|
|
93
|
-
color: #
|
|
92
|
+
color: #5d616b;
|
|
94
93
|
font-weight: 400;
|
|
95
94
|
}
|
|
96
95
|
}
|
|
97
96
|
}
|
|
98
97
|
}
|
|
99
|
-
}
|
|
98
|
+
}
|
|
@@ -67,6 +67,19 @@
|
|
|
67
67
|
.left {
|
|
68
68
|
width: 300px;
|
|
69
69
|
margin-right: 20px;
|
|
70
|
+
.dep-tree {
|
|
71
|
+
height: 100%;
|
|
72
|
+
|
|
73
|
+
.common-tree {
|
|
74
|
+
height: 100%;
|
|
75
|
+
flex-direction: column;
|
|
76
|
+
|
|
77
|
+
.tree-container {
|
|
78
|
+
flex: 1;
|
|
79
|
+
overflow: auto;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
}
|
|
70
83
|
}
|
|
71
84
|
.right {
|
|
72
85
|
flex: 1;
|
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
.noticeCenter {
|
|
2
|
+
flex-direction: column;
|
|
3
|
+
overflow: hidden;
|
|
2
4
|
box-sizing: border-box;
|
|
3
5
|
.volumeSent {
|
|
4
6
|
cursor: pointer;
|
|
5
7
|
}
|
|
8
|
+
|
|
9
|
+
.noticeCenter-content {
|
|
10
|
+
overflow: hidden;
|
|
11
|
+
flex-direction: column;
|
|
12
|
+
|
|
13
|
+
.ant-table-wrapper {
|
|
14
|
+
flex: 1;
|
|
15
|
+
overflow: auto;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
6
18
|
}
|
|
@@ -247,7 +247,7 @@ const CommonTree = defineComponent({
|
|
|
247
247
|
onBeforeUnmount(() => bus.off("tree/refresh", handleRefresh));
|
|
248
248
|
|
|
249
249
|
return () => (
|
|
250
|
-
<div class="common-tree">
|
|
250
|
+
<div class="common-tree flex">
|
|
251
251
|
{/* 搜索 */}
|
|
252
252
|
<a-input
|
|
253
253
|
style={{ marginBottom: "16px" }}
|
|
@@ -295,7 +295,7 @@ const WarningRecord = defineComponent({
|
|
|
295
295
|
});
|
|
296
296
|
|
|
297
297
|
return () => (
|
|
298
|
-
<div class="warning-record">
|
|
298
|
+
<div class="warning-record flex">
|
|
299
299
|
<QueryFilter onSubmit={search} enumObj={enumObj} />
|
|
300
300
|
<div class="operation" style={{ marginBottom: "16px" }}>
|
|
301
301
|
<a-space>
|