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.
@@ -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 #1D33A2;
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: #5D616B;
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: #31363C;
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: #31363C;
87
+ color: #31363c;
89
88
  font-weight: 600;
90
89
  }
91
90
 
92
91
  .value {
93
- color: #5D616B;
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
  }
@@ -1,8 +1,15 @@
1
1
  .param-manager {
2
+ flex-direction: column;
3
+ overflow: hidden;
2
4
  .ant-tabs {
3
5
  position: relative;
4
6
  }
7
+
5
8
  .tab-item {
9
+ .ant-tabs-content-holder {
10
+ overflow: auto;
11
+ }
12
+
6
13
  .operation {
7
14
  text-align: right;
8
15
  & > .ant-space {
@@ -1,10 +1,10 @@
1
1
  .systemConfig {
2
2
  width: 100%;
3
3
  position: relative;
4
- padding: 10px;
5
4
  display: flex;
6
5
  justify-content: space-between;
7
6
  font-size: 14px;
7
+ overflow: auto;
8
8
  .systemConfig_left {
9
9
  width: 48%;
10
10
  }
@@ -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" }}
@@ -63,7 +63,7 @@ const WarningRecord = defineComponent({
63
63
  };
64
64
 
65
65
  return () => (
66
- <div class="warning-record-index">
66
+ <div class="warning-record-index flex" style="overflow: hidden;">
67
67
  {isDetailShow.value ? (
68
68
  <AlarmDetail
69
69
  record={detailRecord.value}
@@ -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>
@@ -1,5 +1,6 @@
1
1
  .pssIndex {
2
2
  height: 100%;
3
+ overflow: hidden;
3
4
 
4
5
  .pssList {
5
6
  height: 100%;
@@ -241,7 +241,7 @@ const noticeCenter = defineComponent({
241
241
  </a-row>
242
242
  </a-form>
243
243
  </div>
244
- <div class="noticeCenter-content">
244
+ <div class="noticeCenter-content flex">
245
245
  <div style={"margin-bottom: 20px;"}>
246
246
  <a-button
247
247
  type="primary"
@@ -65,7 +65,7 @@ const noticeManager = defineComponent({
65
65
  http();
66
66
  });
67
67
  return () => (
68
- <div class="noticeManager">
68
+ <div class="noticeManager flex">
69
69
  <div class="noticeManager-top">
70
70
  <a-button
71
71
  type="primary"
@@ -95,7 +95,7 @@ const ParamManager = defineComponent({
95
95
  );
96
96
 
97
97
  return () => (
98
- <div class="param-manager">
98
+ <div class="param-manager flex">
99
99
  {!props.menu && (
100
100
  <a-space>
101
101
  {menus.value.map((item: any, index: number) => (