nsc-react-component 2.1.9 → 2.1.12
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/lib/base/iframe/index.d.ts +16 -0
- package/lib/base/iframe/index.js +108 -0
- package/lib/base/iframe/index.less +12 -0
- package/lib/base/table/index.js +4 -4
- package/lib/base/table/index.module.less +4 -27
- package/lib/base/tabs/index.d.ts +1 -1
- package/lib/base/tabs/index.js +27 -12
- package/lib/index.d.ts +1 -0
- package/lib/index.js +2 -1
- package/lib/page/BasePage/Form.js +4 -3
- package/lib/page/BasePage/index.d.ts +2 -0
- package/lib/page/BasePage/index.js +122 -42
- package/lib/page/BasePage/index.module.less +24 -4
- package/package.json +1 -1
|
@@ -1,17 +1,20 @@
|
|
|
1
1
|
.page {
|
|
2
|
-
min-height:
|
|
2
|
+
min-height: 35vw;
|
|
3
3
|
height: 100%;
|
|
4
4
|
display: flex;
|
|
5
5
|
.left {
|
|
6
6
|
width: 320px;
|
|
7
7
|
padding: 20px;
|
|
8
|
-
margin-right:
|
|
8
|
+
margin-right: 15px;
|
|
9
9
|
background: #fff;
|
|
10
|
+
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 10%);
|
|
10
11
|
}
|
|
11
12
|
.right {
|
|
12
13
|
// margin-left: 30px;
|
|
13
14
|
flex: 1;
|
|
15
|
+
width: 900px;
|
|
14
16
|
background: #fff;
|
|
17
|
+
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 10%);
|
|
15
18
|
padding: 0 20px 20px 20px;
|
|
16
19
|
.header {
|
|
17
20
|
display: flex;
|
|
@@ -44,7 +47,8 @@
|
|
|
44
47
|
margin-left: 20px;
|
|
45
48
|
}
|
|
46
49
|
button {
|
|
47
|
-
margin-right:
|
|
50
|
+
margin-right: 12px;
|
|
51
|
+
min-width: 80px;
|
|
48
52
|
}
|
|
49
53
|
}
|
|
50
54
|
.tool-buttons {
|
|
@@ -53,7 +57,7 @@
|
|
|
53
57
|
flex-wrap: nowrap;
|
|
54
58
|
width: calc(100% - 200px);
|
|
55
59
|
button {
|
|
56
|
-
margin-right:
|
|
60
|
+
margin-right: 12px;
|
|
57
61
|
min-width: 80px;
|
|
58
62
|
}
|
|
59
63
|
}
|
|
@@ -65,6 +69,10 @@
|
|
|
65
69
|
.ant-table-wrapper {
|
|
66
70
|
margin-top: 20px;
|
|
67
71
|
}
|
|
72
|
+
.ant-table {
|
|
73
|
+
height: 520px;
|
|
74
|
+
color: #606266;
|
|
75
|
+
}
|
|
68
76
|
}
|
|
69
77
|
}
|
|
70
78
|
}
|
|
@@ -81,10 +89,17 @@
|
|
|
81
89
|
margin-left: 10px;
|
|
82
90
|
cursor: pointer;
|
|
83
91
|
color: var(--ant-primary-color);
|
|
92
|
+
font-size: 12px;
|
|
84
93
|
.icon {
|
|
85
94
|
font-size: 12px;
|
|
86
95
|
// margin-left: 2px;
|
|
87
96
|
}
|
|
97
|
+
.text {
|
|
98
|
+
margin-left: 5px;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
.editor:hover {
|
|
102
|
+
color: var(--ant-primary-4);
|
|
88
103
|
}
|
|
89
104
|
.content-item {
|
|
90
105
|
height: 40px;
|
|
@@ -105,3 +120,8 @@
|
|
|
105
120
|
.col-text {
|
|
106
121
|
color: var(--ant-primary-color);
|
|
107
122
|
}
|
|
123
|
+
|
|
124
|
+
.expand-icon {
|
|
125
|
+
font-size: 10px;
|
|
126
|
+
margin-right: 6px;
|
|
127
|
+
}
|