nsc-react-component 2.13.0 → 2.13.2
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/upload/index.js +4 -5
- package/lib/base/upload/index.js.map +1 -1
- package/lib/page/BasePage/index.d.ts +1 -6
- package/lib/page/BasePage/index.js +114 -198
- package/lib/page/BasePage/index.js.map +1 -1
- package/lib/page/BasePage/index.module.less +58 -92
- package/package.json +1 -1
- package/lib/page/BasePage/index.module copy.less +0 -144
|
@@ -1,144 +0,0 @@
|
|
|
1
|
-
.page {
|
|
2
|
-
// min-height: 540px;
|
|
3
|
-
height: 100%;
|
|
4
|
-
background: #fff;
|
|
5
|
-
border-radius: 10px;
|
|
6
|
-
.page-title {
|
|
7
|
-
padding: 20px 20px 0px 20px;
|
|
8
|
-
font-size: 24px;
|
|
9
|
-
font-family: PingFangSC-Semibold, PingFang SC;
|
|
10
|
-
font-weight: 600;
|
|
11
|
-
color: #333333;
|
|
12
|
-
}
|
|
13
|
-
.page-pane {
|
|
14
|
-
// min-height: 540px;
|
|
15
|
-
// height: 100%;
|
|
16
|
-
display: flex;
|
|
17
|
-
.left {
|
|
18
|
-
max-width: 265px;
|
|
19
|
-
padding: 20px;
|
|
20
|
-
margin-right: 15px;
|
|
21
|
-
background: #fff;
|
|
22
|
-
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 10%);
|
|
23
|
-
width: 20%;
|
|
24
|
-
border-radius: 10px;
|
|
25
|
-
}
|
|
26
|
-
.right {
|
|
27
|
-
// margin-left: 30px;
|
|
28
|
-
flex: 1;
|
|
29
|
-
width: calc(80% - 15px);
|
|
30
|
-
background: #fff;
|
|
31
|
-
box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 10%);
|
|
32
|
-
padding: 0 20px 0px 20px;
|
|
33
|
-
border-radius: 10px;
|
|
34
|
-
.tool-buttons {
|
|
35
|
-
display: flex;
|
|
36
|
-
// margin-top: 20px;
|
|
37
|
-
flex-wrap: wrap;
|
|
38
|
-
width: calc(100% - 200px);
|
|
39
|
-
margin-bottom: 16px;
|
|
40
|
-
button {
|
|
41
|
-
margin-right: 12px;
|
|
42
|
-
min-width: 80px;
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
.tool-buttons-margin {
|
|
46
|
-
margin-top: 18px;
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
.no-left-right {
|
|
50
|
-
box-shadow: none;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.table {
|
|
54
|
-
margin-top: -30px;
|
|
55
|
-
:global {
|
|
56
|
-
.ant-btn-link {
|
|
57
|
-
min-width: 0;
|
|
58
|
-
padding: 0;
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
.table-top {
|
|
63
|
-
margin-top: 0px;
|
|
64
|
-
}
|
|
65
|
-
.table-top2 {
|
|
66
|
-
margin-top: 20px;
|
|
67
|
-
}
|
|
68
|
-
.table-top3 {
|
|
69
|
-
margin-top: 20px;
|
|
70
|
-
}
|
|
71
|
-
.table-page {
|
|
72
|
-
// :global {
|
|
73
|
-
// .ant-table-wrapper {
|
|
74
|
-
// margin-top: 10px;
|
|
75
|
-
// }
|
|
76
|
-
// }
|
|
77
|
-
}
|
|
78
|
-
.table-page-notool {
|
|
79
|
-
:global {
|
|
80
|
-
.ant-table {
|
|
81
|
-
height: 435px;
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
.action {
|
|
88
|
-
display: flex;
|
|
89
|
-
align-items: center;
|
|
90
|
-
// justify-content: center;
|
|
91
|
-
// padding-left: 10px;
|
|
92
|
-
// padding-right: 10px;
|
|
93
|
-
// width: 100%;
|
|
94
|
-
}
|
|
95
|
-
.delete {
|
|
96
|
-
cursor: pointer;
|
|
97
|
-
color: #ff534c;
|
|
98
|
-
}
|
|
99
|
-
.editor {
|
|
100
|
-
margin-left: 12px;
|
|
101
|
-
font-size: 12px;
|
|
102
|
-
cursor: pointer;
|
|
103
|
-
// color: var(--ant-primary-color);
|
|
104
|
-
.icon {
|
|
105
|
-
margin-right: 6px;
|
|
106
|
-
}
|
|
107
|
-
.text {
|
|
108
|
-
margin-left: 0px;
|
|
109
|
-
}
|
|
110
|
-
}
|
|
111
|
-
.editor:hover {
|
|
112
|
-
color: var(--ant-primary-5);
|
|
113
|
-
}
|
|
114
|
-
.editor_first {
|
|
115
|
-
margin-left: 0;
|
|
116
|
-
}
|
|
117
|
-
.content-item {
|
|
118
|
-
height: 40px;
|
|
119
|
-
line-height: 40px;
|
|
120
|
-
margin-left: 0;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
.col-back {
|
|
124
|
-
border-radius: 4px;
|
|
125
|
-
padding: 5px 15px 5px 15px;
|
|
126
|
-
background-color: var(--ant-primary-2);
|
|
127
|
-
border: 1px solid var(--ant-primary-4);
|
|
128
|
-
text-align: center;
|
|
129
|
-
}
|
|
130
|
-
.col-text {
|
|
131
|
-
color: var(--ant-primary-color);
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.expand-icon {
|
|
135
|
-
font-size: 10px;
|
|
136
|
-
margin-right: 6px;
|
|
137
|
-
}
|
|
138
|
-
.form {
|
|
139
|
-
:gloabl {
|
|
140
|
-
.ant-picker {
|
|
141
|
-
width: 100%;
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
}
|