cloud-web-corejs 1.0.54-dev.360 → 1.0.54-dev.361
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/package.json +1 -1
- package/src/components/fileLibrary/mixins/indexMixins.js +187 -106
- package/src/index.js +0 -13
- package/src/components/table/plugins/extend-cell-area/vxe-table-extend-cell-area.css +0 -197
- package/src/components/table/plugins/extend-cell-area/vxe-table-extend-cell-area.es6.min copy.js +0 -6073
- package/src/components/table/plugins/extend-cell-area/vxe-table-extend-cell-area.es6.min2.js +0 -11015
- package/src/components/table/plugins/extend-cell-area/vxe-table-extend-cell-area.scss +0 -199
package/src/index.js
CHANGED
|
@@ -28,19 +28,6 @@ import 'vxe-table/lib/style.css';
|
|
|
28
28
|
import '@base/components/table/plugins/extend-cell-area/vxe-table-extend-cell-area.es6.min.js'
|
|
29
29
|
import '@base/components/table/plugins/extend-cell-area/vxe-table-extend-cell-area.min.css'
|
|
30
30
|
|
|
31
|
-
// 设置授权信息
|
|
32
|
-
VXETable.setup({
|
|
33
|
-
// showAuthLog: true, // 是否在控制台显示授权信息,专业版支持关闭
|
|
34
|
-
// authId: 'gbeumewkoyt2rhf9', // 获取授权后在官网登录后进入“用户中心”查看
|
|
35
|
-
authId: 'gbeumewkoyt2rhft', // 获取授权后在官网登录后进入“用户中心”查看
|
|
36
|
-
// onAuth (e) {
|
|
37
|
-
// // 打印授权状态
|
|
38
|
-
// console.log(e)
|
|
39
|
-
// }
|
|
40
|
-
})
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
31
|
import Vab from '@base/utils/vab';
|
|
45
32
|
|
|
46
33
|
Vue.use(Vab);
|
|
@@ -1,197 +0,0 @@
|
|
|
1
|
-
.vxe-table--cell-area {
|
|
2
|
-
position: initial;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
.vxe-header--column.col--cell-active {
|
|
6
|
-
position: relative;
|
|
7
|
-
}
|
|
8
|
-
.vxe-header--column.col--cell-active:not(.col--group)::after {
|
|
9
|
-
border-bottom: var(--vxe-ui-table-cell-area-status-border-width, 1px) solid var(--vxe-ui-font-primary-color, #409eff);
|
|
10
|
-
}
|
|
11
|
-
.vxe-header--column.col--cell-active::after {
|
|
12
|
-
content: "";
|
|
13
|
-
position: absolute;
|
|
14
|
-
bottom: 0;
|
|
15
|
-
left: 0;
|
|
16
|
-
height: 100%;
|
|
17
|
-
width: 100%;
|
|
18
|
-
background: var(--vxe-ui-table-header-active-area-background-color, rgba(64, 158, 255, 0.1));
|
|
19
|
-
-webkit-user-select: none;
|
|
20
|
-
-moz-user-select: none;
|
|
21
|
-
-ms-user-select: none;
|
|
22
|
-
user-select: none;
|
|
23
|
-
pointer-events: none;
|
|
24
|
-
pointer-events: none;
|
|
25
|
-
z-index: 1;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.vxe-table .vxe-body--column.col--to-row {
|
|
29
|
-
background-color: var(--vxe-ui-table-header-background-color, #f8f8f9);
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
.vxe-table--fnr.vxe-modal--wrapper .vxe-modal--content {
|
|
33
|
-
padding: 0;
|
|
34
|
-
}
|
|
35
|
-
.vxe-table--fnr.vxe-modal--wrapper .vxe-modal--content {
|
|
36
|
-
display: flex;
|
|
37
|
-
flex-direction: column;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
.vxe-table--fnr .vxe-table--fnr-tabs {
|
|
41
|
-
flex-shrink: 0;
|
|
42
|
-
border-bottom: 1px solid var(--vxe-ui-table-border-color, #e8eaec);
|
|
43
|
-
background-color: var(--vxe-ui-tabs-card-header-background-color);
|
|
44
|
-
-webkit-user-select: none;
|
|
45
|
-
-moz-user-select: none;
|
|
46
|
-
-ms-user-select: none;
|
|
47
|
-
user-select: none;
|
|
48
|
-
}
|
|
49
|
-
.vxe-table--fnr .vxe-table--fnr-tabs > span {
|
|
50
|
-
position: relative;
|
|
51
|
-
display: inline-block;
|
|
52
|
-
padding: 0 1em;
|
|
53
|
-
height: 2.4em;
|
|
54
|
-
line-height: 2.4em;
|
|
55
|
-
text-align: center;
|
|
56
|
-
border-right: 1px solid var(--vxe-ui-table-border-color, #e8eaec);
|
|
57
|
-
background-color: var(--vxe-ui-table-header-background-color, #f8f8f8);
|
|
58
|
-
vertical-align: bottom;
|
|
59
|
-
cursor: pointer;
|
|
60
|
-
}
|
|
61
|
-
.vxe-table--fnr .vxe-table--fnr-tabs > span.is--active {
|
|
62
|
-
background-color: var(--vxe-ui-layout-background-color, #ffffff);
|
|
63
|
-
}
|
|
64
|
-
.vxe-table--fnr .vxe-table--fnr-tabs > span.is--active:after {
|
|
65
|
-
content: "";
|
|
66
|
-
position: absolute;
|
|
67
|
-
left: 0;
|
|
68
|
-
bottom: -1px;
|
|
69
|
-
width: 100%;
|
|
70
|
-
height: 1px;
|
|
71
|
-
background-color: var(--vxe-ui-layout-background-color, #ffffff);
|
|
72
|
-
z-index: 1;
|
|
73
|
-
}
|
|
74
|
-
.vxe-table--fnr .vxe-table--fnr-body {
|
|
75
|
-
flex-shrink: 0;
|
|
76
|
-
padding: 0.3em 1em 0 1em;
|
|
77
|
-
}
|
|
78
|
-
.vxe-table--fnr .vxe-table--fnr-form {
|
|
79
|
-
width: 100%;
|
|
80
|
-
border: 0;
|
|
81
|
-
border-spacing: 0;
|
|
82
|
-
border-collapse: separate;
|
|
83
|
-
}
|
|
84
|
-
.vxe-table--fnr .vxe-table--fnr-form tr {
|
|
85
|
-
visibility: hidden;
|
|
86
|
-
}
|
|
87
|
-
.vxe-table--fnr .vxe-table--fnr-form tr.is--visible {
|
|
88
|
-
visibility: visible;
|
|
89
|
-
}
|
|
90
|
-
.vxe-table--fnr .vxe-table--fnr-form-title {
|
|
91
|
-
white-space: nowrap;
|
|
92
|
-
padding-right: 0.8em;
|
|
93
|
-
}
|
|
94
|
-
.vxe-table--fnr .vxe-table--fnr-form-content,
|
|
95
|
-
.vxe-table--fnr .vxe-table--fnr-form-input {
|
|
96
|
-
width: 100%;
|
|
97
|
-
}
|
|
98
|
-
.vxe-table--fnr .vxe-table--fnr-form-content {
|
|
99
|
-
padding: 0.3em 0;
|
|
100
|
-
}
|
|
101
|
-
.vxe-table--fnr .vxe-table--fnr-form-filter {
|
|
102
|
-
padding-left: 1.8em;
|
|
103
|
-
vertical-align: top;
|
|
104
|
-
}
|
|
105
|
-
.vxe-table--fnr .vxe-table--fnr-form-filter > .vxe-checkbox {
|
|
106
|
-
display: block;
|
|
107
|
-
margin: 0.6em 0 0 0;
|
|
108
|
-
}
|
|
109
|
-
.vxe-table--fnr .vxe-table--fnr-footer {
|
|
110
|
-
flex-shrink: 0;
|
|
111
|
-
padding: 0.8em 1em;
|
|
112
|
-
overflow: hidden;
|
|
113
|
-
text-align: right;
|
|
114
|
-
}
|
|
115
|
-
.vxe-table--fnr .vxe-table--fnr-search {
|
|
116
|
-
display: flex;
|
|
117
|
-
flex-direction: column;
|
|
118
|
-
flex-grow: 1;
|
|
119
|
-
border-top: 1px solid var(--vxe-ui-table-border-color, #e8eaec);
|
|
120
|
-
border-bottom: 1px solid var(--vxe-ui-table-border-color, #e8eaec);
|
|
121
|
-
overflow: hidden;
|
|
122
|
-
}
|
|
123
|
-
.vxe-table--fnr .vxe-table--fnr-search .vxe-table--fnr-search-list,
|
|
124
|
-
.vxe-table--fnr .vxe-table--fnr-search .vxe-list--virtual-wrapper {
|
|
125
|
-
height: 100%;
|
|
126
|
-
}
|
|
127
|
-
.vxe-table--fnr .vxe-table--fnr-search-header {
|
|
128
|
-
flex-shrink: 0;
|
|
129
|
-
height: 2.5em;
|
|
130
|
-
line-height: 2.5em;
|
|
131
|
-
padding: 0 0.8em;
|
|
132
|
-
font-weight: 700;
|
|
133
|
-
background-color: var(--vxe-ui-table-header-background-color, #f8f8f8);
|
|
134
|
-
}
|
|
135
|
-
.vxe-table--fnr .vxe-table--fnr-search-header,
|
|
136
|
-
.vxe-table--fnr .vxe-table--fnr-find-item {
|
|
137
|
-
display: flex;
|
|
138
|
-
}
|
|
139
|
-
.vxe-table--fnr .vxe-table--fnr-search-header > div,
|
|
140
|
-
.vxe-table--fnr .vxe-table--fnr-find-item > div {
|
|
141
|
-
-webkit-user-select: none;
|
|
142
|
-
-moz-user-select: none;
|
|
143
|
-
-ms-user-select: none;
|
|
144
|
-
user-select: none;
|
|
145
|
-
overflow: hidden;
|
|
146
|
-
text-overflow: ellipsis;
|
|
147
|
-
white-space: nowrap;
|
|
148
|
-
}
|
|
149
|
-
.vxe-table--fnr .vxe-table--fnr-search-header > div:nth-child(1),
|
|
150
|
-
.vxe-table--fnr .vxe-table--fnr-find-item > div:nth-child(1) {
|
|
151
|
-
width: 100px;
|
|
152
|
-
flex-shrink: 0;
|
|
153
|
-
}
|
|
154
|
-
.vxe-table--fnr .vxe-table--fnr-search-header > div:nth-child(2),
|
|
155
|
-
.vxe-table--fnr .vxe-table--fnr-find-item > div:nth-child(2) {
|
|
156
|
-
width: 160px;
|
|
157
|
-
flex-shrink: 0;
|
|
158
|
-
}
|
|
159
|
-
.vxe-table--fnr .vxe-table--fnr-search-header > div:nth-child(3),
|
|
160
|
-
.vxe-table--fnr .vxe-table--fnr-find-item > div:nth-child(3) {
|
|
161
|
-
flex-grow: 1;
|
|
162
|
-
}
|
|
163
|
-
.vxe-table--fnr .vxe-table--fnr-search-body {
|
|
164
|
-
flex-grow: 1;
|
|
165
|
-
overflow: hidden;
|
|
166
|
-
border-top: 1px solid var(--vxe-ui-table-border-color, #e8eaec);
|
|
167
|
-
border-bottom: 1px solid var(--vxe-ui-table-border-color, #e8eaec);
|
|
168
|
-
}
|
|
169
|
-
.vxe-table--fnr .vxe-table--fnr-find-item {
|
|
170
|
-
height: 2em;
|
|
171
|
-
line-height: 2em;
|
|
172
|
-
padding: 0 0.8em;
|
|
173
|
-
cursor: pointer;
|
|
174
|
-
}
|
|
175
|
-
.vxe-table--fnr .vxe-table--fnr-find-item.is--active {
|
|
176
|
-
color: var(--vxe-ui-font-primary-color, #409eff);
|
|
177
|
-
background-color: var(--vxe-ui-table-row-current-background-color, #e6f7ff);
|
|
178
|
-
}
|
|
179
|
-
.vxe-table--fnr .vxe-table--fnr-find-item:hover.is--active {
|
|
180
|
-
background-color: var(--vxe-ui-table-row-hover-current-background-color, #d7effb);
|
|
181
|
-
}
|
|
182
|
-
.vxe-table--fnr .vxe-table--fnr-find-item:hover > div {
|
|
183
|
-
text-decoration: underline;
|
|
184
|
-
}
|
|
185
|
-
.vxe-table--fnr .vxe-table--fnr-search-footer {
|
|
186
|
-
flex-shrink: 0;
|
|
187
|
-
height: 2em;
|
|
188
|
-
line-height: 2em;
|
|
189
|
-
padding: 0 0.8em;
|
|
190
|
-
visibility: hidden;
|
|
191
|
-
}
|
|
192
|
-
.vxe-table--fnr .vxe-table--fnr-search-footer.is--error {
|
|
193
|
-
color: var(--vxe-ui-status-error-color, #f56c6c);
|
|
194
|
-
}
|
|
195
|
-
.vxe-table--fnr .vxe-table--fnr-search-footer.is--visible {
|
|
196
|
-
visibility: visible;
|
|
197
|
-
}
|