eoss-ui 0.6.36 → 0.6.38
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/data-table.js +13 -11
- package/lib/eoss-ui.common.js +99 -53
- package/lib/form.js +14 -3
- package/lib/index.js +1 -1
- package/lib/select.js +0 -1
- package/lib/selector-panel.js +38 -15
- package/lib/theme-chalk/data-table.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/upload.js +19 -8
- package/package.json +3 -3
- package/packages/data-table/src/main.vue +1 -1
- package/packages/form/src/main.vue +3 -1
- package/packages/select/src/main.vue +0 -1
- package/packages/selector-panel/src/main.vue +8 -1
- package/packages/selector-panel/src/selection.vue +20 -3
- package/packages/theme-chalk/lib/data-table.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/src/data-table.scss +17 -0
- package/packages/upload/src/main.vue +14 -3
- package/src/index.js +1 -1
package/lib/upload.js
CHANGED
|
@@ -4006,8 +4006,8 @@ module.exports = require("js-base64");
|
|
|
4006
4006
|
// ESM COMPAT FLAG
|
|
4007
4007
|
__webpack_require__.r(__webpack_exports__);
|
|
4008
4008
|
|
|
4009
|
-
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/upload/src/main.vue?vue&type=template&id=
|
|
4010
|
-
var
|
|
4009
|
+
// CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/upload/src/main.vue?vue&type=template&id=8de518f6&
|
|
4010
|
+
var mainvue_type_template_id_8de518f6_render = function () {
|
|
4011
4011
|
var _vm = this
|
|
4012
4012
|
var _h = _vm.$createElement
|
|
4013
4013
|
var _c = _vm._self._c || _h
|
|
@@ -4388,10 +4388,10 @@ var mainvue_type_template_id_1d0cf2a3_render = function () {
|
|
|
4388
4388
|
: _vm._e()
|
|
4389
4389
|
}
|
|
4390
4390
|
var staticRenderFns = []
|
|
4391
|
-
|
|
4391
|
+
mainvue_type_template_id_8de518f6_render._withStripped = true
|
|
4392
4392
|
|
|
4393
4393
|
|
|
4394
|
-
// CONCATENATED MODULE: ./packages/upload/src/main.vue?vue&type=template&id=
|
|
4394
|
+
// CONCATENATED MODULE: ./packages/upload/src/main.vue?vue&type=template&id=8de518f6&
|
|
4395
4395
|
|
|
4396
4396
|
// EXTERNAL MODULE: ./src/config/api.js
|
|
4397
4397
|
var api = __webpack_require__(1);
|
|
@@ -4932,7 +4932,8 @@ var _props;
|
|
|
4932
4932
|
return true;
|
|
4933
4933
|
},
|
|
4934
4934
|
isSort: function isSort() {
|
|
4935
|
-
return this.dragSort && !this.isDisabled && this.isReadonly;
|
|
4935
|
+
// return this.dragSort && !this.isDisabled && this.isReadonly;
|
|
4936
|
+
return this.dragSort && !this.isDisabled;
|
|
4936
4937
|
},
|
|
4937
4938
|
datas: function datas() {
|
|
4938
4939
|
if (this.data) {
|
|
@@ -5453,10 +5454,20 @@ var _props;
|
|
|
5453
5454
|
method: this.method,
|
|
5454
5455
|
url: this.dochubConfig.sortDocumentsUrl || api["cc" /* uploadSort */],
|
|
5455
5456
|
data: {
|
|
5456
|
-
ids: ids
|
|
5457
|
+
ids: ids,
|
|
5458
|
+
documentIds: ids,
|
|
5459
|
+
ownId: this.ownId,
|
|
5460
|
+
code: this.code,
|
|
5461
|
+
bucketCode: this.code,
|
|
5462
|
+
businessId: this.ownId
|
|
5457
5463
|
},
|
|
5458
5464
|
params: {
|
|
5459
|
-
ids: ids
|
|
5465
|
+
ids: ids,
|
|
5466
|
+
documentIds: ids,
|
|
5467
|
+
ownId: this.ownId,
|
|
5468
|
+
code: this.code,
|
|
5469
|
+
bucketCode: this.code,
|
|
5470
|
+
businessId: this.ownId
|
|
5460
5471
|
}
|
|
5461
5472
|
}).then(function (res) {
|
|
5462
5473
|
if (res.rCode === 0) {
|
|
@@ -5553,7 +5564,7 @@ var componentNormalizer = __webpack_require__(3);
|
|
|
5553
5564
|
|
|
5554
5565
|
var component = Object(componentNormalizer["a" /* default */])(
|
|
5555
5566
|
src_mainvue_type_script_lang_js_,
|
|
5556
|
-
|
|
5567
|
+
mainvue_type_template_id_8de518f6_render,
|
|
5557
5568
|
staticRenderFns,
|
|
5558
5569
|
false,
|
|
5559
5570
|
null,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eoss-ui",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.38",
|
|
4
4
|
"description": "eoss内部业务组件",
|
|
5
5
|
"main": "lib/eoss-ui.common.js",
|
|
6
6
|
"files": [
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"stompjs": "^2.3.3",
|
|
71
71
|
"throttle-debounce": "^5.0.2",
|
|
72
72
|
"video.js": "^8.0.4",
|
|
73
|
-
"wujie-vue2": "^1.0.
|
|
73
|
+
"wujie-vue2": "^1.0.28"
|
|
74
74
|
},
|
|
75
75
|
"peerDependencies": {
|
|
76
76
|
"vue": "^2.5.22"
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"cp-cli": "^1.0.2",
|
|
99
99
|
"cross-env": "^3.1.3",
|
|
100
100
|
"css-loader": "^2.1.0",
|
|
101
|
-
"eoss-element": "^0.3.
|
|
101
|
+
"eoss-element": "^0.3.35",
|
|
102
102
|
"es6-promise": "^4.0.5",
|
|
103
103
|
"eslint": "4.18.2",
|
|
104
104
|
"eslint-config-elemefe": "0.1.1",
|
|
@@ -107,6 +107,7 @@
|
|
|
107
107
|
</template>
|
|
108
108
|
<template v-else>
|
|
109
109
|
<children
|
|
110
|
+
:key="item.key || item.label || item.title || index"
|
|
110
111
|
:tag="item.tag"
|
|
111
112
|
v-bind="{
|
|
112
113
|
mode: mode,
|
|
@@ -116,7 +117,6 @@
|
|
|
116
117
|
readonly: readonly,
|
|
117
118
|
optionData: optionDatas,
|
|
118
119
|
dragSort: dragSort,
|
|
119
|
-
key: item.key || item.label || item.title || index,
|
|
120
120
|
...(dragSort ? { ...item, fixed: false } : { ...item })
|
|
121
121
|
}"
|
|
122
122
|
v-on="{
|
|
@@ -504,6 +504,7 @@
|
|
|
504
504
|
v-model="models[item.name]"
|
|
505
505
|
btn-size="medium"
|
|
506
506
|
:readonly="readonly ? readonly : item.readonly"
|
|
507
|
+
:fileCount.sync="fileCount"
|
|
507
508
|
:rules="item.rules"
|
|
508
509
|
v-on="
|
|
509
510
|
handleExclAttribute({
|
|
@@ -2393,7 +2394,8 @@ export default {
|
|
|
2393
2394
|
uuid: util.uuid(32),
|
|
2394
2395
|
dialog: false,
|
|
2395
2396
|
refresh: true,
|
|
2396
|
-
ready: false
|
|
2397
|
+
ready: false,
|
|
2398
|
+
fileCount: 0
|
|
2397
2399
|
};
|
|
2398
2400
|
},
|
|
2399
2401
|
computed: {
|
|
@@ -202,7 +202,6 @@ export default {
|
|
|
202
202
|
this.label = this.service ? 'label' : 'shortName';
|
|
203
203
|
this.valKey = this.service ? 'value' : 'cciValue';
|
|
204
204
|
const options = store.get(val);
|
|
205
|
-
debugger;
|
|
206
205
|
if (options) {
|
|
207
206
|
this.options = JSON.parse(JSON.stringify(options));
|
|
208
207
|
} else {
|
|
@@ -82,6 +82,7 @@
|
|
|
82
82
|
:multiple="mix ? mix : multiple"
|
|
83
83
|
:max="max"
|
|
84
84
|
:showDisabled="showDisabled"
|
|
85
|
+
:disableds="disableds"
|
|
85
86
|
></selection>
|
|
86
87
|
<selection
|
|
87
88
|
v-model="checkeds"
|
|
@@ -211,7 +212,13 @@ export default {
|
|
|
211
212
|
default: true
|
|
212
213
|
},
|
|
213
214
|
max: Number,
|
|
214
|
-
mix: Boolean
|
|
215
|
+
mix: Boolean,
|
|
216
|
+
disableds: {
|
|
217
|
+
type: Array,
|
|
218
|
+
default() {
|
|
219
|
+
return [];
|
|
220
|
+
}
|
|
221
|
+
}
|
|
215
222
|
},
|
|
216
223
|
data() {
|
|
217
224
|
return {
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
v-show="item.disabled ? showDisabled : true"
|
|
15
15
|
v-bind="getprops($attrs, item)"
|
|
16
16
|
:label="isObject || typeof item == 'string' ? item : item[valueKey]"
|
|
17
|
-
:disabled="
|
|
17
|
+
:disabled="isDisabled(item)"
|
|
18
18
|
:class="{ 'es-radio-delete': genre === 'delete' }"
|
|
19
19
|
:value-key="valueKey"
|
|
20
20
|
:tooltip="item[tipKey]"
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
v-show="item.disabled ? showDisabled : true"
|
|
38
38
|
v-bind="getprops($attrs, item)"
|
|
39
39
|
:label="isObject || typeof item == 'string' ? item : item[valueKey]"
|
|
40
|
-
:disabled="
|
|
40
|
+
:disabled="isDisabled(item)"
|
|
41
41
|
:class="{ 'es-checkbox-delete': genre === 'delete' }"
|
|
42
42
|
:value-key="valueKey"
|
|
43
43
|
:tooltip="item[tipKey]"
|
|
@@ -91,7 +91,13 @@ export default {
|
|
|
91
91
|
default: true
|
|
92
92
|
},
|
|
93
93
|
max: Number,
|
|
94
|
-
mix: Boolean
|
|
94
|
+
mix: Boolean,
|
|
95
|
+
disableds: {
|
|
96
|
+
type: Array,
|
|
97
|
+
default() {
|
|
98
|
+
return [];
|
|
99
|
+
}
|
|
100
|
+
}
|
|
95
101
|
},
|
|
96
102
|
data() {
|
|
97
103
|
return {};
|
|
@@ -151,6 +157,17 @@ export default {
|
|
|
151
157
|
},
|
|
152
158
|
getprops(attrs, res) {
|
|
153
159
|
return util.isObject(res) ? { ...attrs, ...res } : attrs;
|
|
160
|
+
},
|
|
161
|
+
isDisabled(res) {
|
|
162
|
+
if (typeof res == 'string') {
|
|
163
|
+
return false;
|
|
164
|
+
}
|
|
165
|
+
if (this.disableds && this.disableds.length > 0) {
|
|
166
|
+
if (this.disableds.includes(res[this.valueKey])) {
|
|
167
|
+
return true;
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
return res.disabled;
|
|
154
171
|
}
|
|
155
172
|
},
|
|
156
173
|
beforeDestroy() {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@charset "UTF-8";.es-data-table,.es-data-table-content .es-table .el-table__body-wrapper .el-table__body{position:relative}.es-data-table .es-toolbar.es-table-toolbar-plus{padding:16px 16px 8px;border-color:transparent}.es-data-table .es-toolbar.es-table-toolbar-plus .es-advanced-filter.es-absolute{top:55px}.es-data-table .es-toolbar.es-table-toolbar-plus .es-advanced-filter.es-absolute .es-form{border:0}.es-data-table .es-toolbar+.es-data-table-content{padding:16px}.es-data-table .es-toolbar+.es-data-table-content.es-table-plus{padding-top:0}.es-data-table-content{background-color:#fafafa}.es-data-table-content .es-table:not(.el-table--border){border:1px solid #e1e1e1;border-bottom:0}.es-data-table-content .es-table thead th,.es-data-table-content .es-table thead tr{background-color:#f8f8f8;border-color:#e1e1e1}.es-data-table-content .es-table th,.es-data-table-content .es-table thead tr{padding:6px 0;text-align:center}.es-data-table-content .es-table th .cell,.es-data-table-content .es-table thead tr .cell{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.es-data-table-content .es-table td{padding:6px 0}.es-data-table-content .es-table td.es-table-handle-box .cell,.es-data-table-content .es-table td.is-center .cell{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.es-data-table-content .es-table td.is-right .cell{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.es-data-table-content .es-table .es-table-handle-box{text-align:center}.es-data-table-content .es-table+.es-table-page{margin-top:-1px}.es-data-table-content .es-table .el-table__fixed-right::before,.es-data-table-content .es-table .el-table__fixed::before{background-color:transparent}.es-data-table-content .es-table .cell{min-height:28px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}.es-data-table-content .es-table .cell:not(.el-tooltip){display:-webkit-box;display:-ms-flexbox;display:flex}.es-data-table-content .es-table .cell.el-tooltip{line-height:22px}.es-data-table-content .es-table .el-form-item{margin-bottom:0;width:100%}.es-data-table-content .es-table .el-form-item .el-input:not(.el-input--prefix) .el-input__inner{padding:0 8px;margin-top:0}.es-data-table-content .es-table .el-form-item .el-input-number,.es-data-table-content .es-table .el-form-item .el-select{width:100%}.es-data-table-content .es-table.el-scrollbar>.el-scrollbar__bar{z-index:8}.es-data-table-content.es-table-border-none .es-table{border:0}.es-data-table-content.es-table-border-none .es-table::before{content:none}.es-data-table-content.es-table-border-none .es-table td,.es-data-table-content.es-table-border-none .es-table th{border:0}.es-data-table-content.es-table-border-none .es-table-page{border:0;margin-top:0;background-color:#fff}.es-data-table-content .el-table__header,.es-data-table-content .el-table__header thead{color:#404040}.es-data-table-content .el-table__body tr.hover-row.current-row>td,.es-data-table-content .el-table__body tr.hover-row.el-table__row--striped.current-row>td,.es-data-table-content .el-table__body tr.hover-row.el-table__row--striped>td,.es-data-table-content .el-table__body tr.hover-row>td,.es-data-table-content .el-table__body tr:hover>td{background-color:#e6f7ff}.es-data-table-content .el-table__body tr.current-row>td{background-color:#91d5ff}.es-data-table-content .es-table-page{height:46px;border:1px solid #e1e1e1;padding:8px 24px;background-color:#f8f8f8}.es-data-table-content .es-table-page.es-loading-page{line-height:30px;font-size:14px;font-weight:400;color:rgba(0,0,0,.75)}.es-data-table-content.es-table-plus .el-table__header thead,.es-data-table-content.es-table-plus .es-table-page .el-pagination__total,.es-data-table-content.es-table-plus .es-table-page .el-select__caret{color:#6e7c98}.es-data-table-content .es-thead-border .el-table__header th:not(.gutter){border-right:1px solid #e1e1e1}.es-data-table-content .es-thead-border .el-table__header thead:not(.is-group) th:last-child{border-right:0;border-bottom:1px solid #e1e1e1}.es-data-table-content .es-thead-border .is-scrolling-right~.el-table__fixed-right:not(.el-table-box-shadow) thead th:last-child{border-left:0}.es-data-table-content .el-form-item__error{top:unset;bottom:0}.es-data-table-content .es-table:not(.el-table--border) .el-table--border td,.es-data-table-content .es-table:not(.el-table--border) .el-table--border th,.es-data-table-content .es-table:not(.el-table--border) .el-table__body-wrapper .el-table--border.is-scrolling-left~.el-table__fixed{border-right:0}.es-data-table-content .is-scrolling-right+.el-table__fixed-body-wrapper td{border-right:1px solid #e1e1e1}.es-data-table-content .is-scrolling-right+.el-table__fixed-body-wrapper td:last-child{border-right:0}.es-data-table-content.es-table-plus{background-color:#fff;padding-top:0}.es-data-table-content.es-table-plus .el-table__header th{background-color:#fff;border-color:#cdd9e4}.es-data-table-content.es-table-plus .el-table__header th:not(.gutter){border-right-color:transparent}.es-data-table-content.es-table-plus .es-table{border-color:transparent}.es-data-table-content.es-table-plus .es-table::before{background-color:#cdd9e4}.es-data-table-content.es-table-plus .es-table td{border-color:#cdd9e4}.es-data-table-content.es-table-plus .es-table .cell{min-height:35px}.es-data-table-content.es-table-plus .es-table-page{height:48px;padding:10px 24px;background-color:#fff;border-color:#cdd9e4 transparent transparent}.el-table--border::after,.el-table--group::after,.el-table::before{z-index:5}.es-table-sizer{height:100%}.sizer-btn-box{text-align:right;margin-top:7px}.es-table-sizer-tips{color:red;line-height:20px}.es-table-setting{font-size:16px;cursor:pointer;position:absolute;right:0;top:0;z-index:99}
|
|
1
|
+
@charset "UTF-8";.es-data-table,.es-data-table-content .es-table .el-table__body-wrapper .el-table__body{position:relative}.es-data-table .es-toolbar.es-table-toolbar-plus{padding:16px 16px 8px;border-color:transparent}.es-data-table .es-toolbar.es-table-toolbar-plus .es-advanced-filter.es-absolute{top:55px}.es-data-table .es-toolbar.es-table-toolbar-plus .es-advanced-filter.es-absolute .es-form{border:0}.es-data-table .es-toolbar+.es-data-table-content{padding:16px}.es-data-table .es-toolbar+.es-data-table-content.es-table-plus{padding-top:0}.es-data-table-content{background-color:#fafafa}.es-data-table-content .es-table:not(.el-table--border){border:1px solid #e1e1e1;border-bottom:0}.es-data-table-content .es-table thead th,.es-data-table-content .es-table thead tr{background-color:#f8f8f8;border-color:#e1e1e1}.es-data-table-content .es-table th,.es-data-table-content .es-table thead tr{padding:6px 0;text-align:center}.es-data-table-content .es-table th.is-right,.es-data-table-content .es-table thead tr.is-right{text-align:right}.es-data-table-content .es-table th.is-right .cell,.es-data-table-content .es-table thead tr.is-right .cell{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.es-data-table-content .es-table th.is-left,.es-data-table-content .es-table thead tr.is-left{text-align:left}.es-data-table-content .es-table th.is-left .cell,.es-data-table-content .es-table thead tr.is-left .cell{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.es-data-table-content .es-table th .cell,.es-data-table-content .es-table thead tr .cell{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.es-data-table-content .es-table td{padding:6px 0}.es-data-table-content .es-table td.es-table-handle-box .cell,.es-data-table-content .es-table td.is-center .cell{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.es-data-table-content .es-table td.is-right .cell{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.es-data-table-content .es-table td.is-left .cell{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.es-data-table-content .es-table .es-table-handle-box{text-align:center}.es-data-table-content .es-table+.es-table-page{margin-top:-1px}.es-data-table-content .es-table .el-table__fixed-right::before,.es-data-table-content .es-table .el-table__fixed::before{background-color:transparent}.es-data-table-content .es-table .cell{min-height:28px;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:center;align-content:center}.es-data-table-content .es-table .cell:not(.el-tooltip){display:-webkit-box;display:-ms-flexbox;display:flex}.es-data-table-content .es-table .cell.el-tooltip{line-height:22px}.es-data-table-content .es-table .el-form-item{margin-bottom:0;width:100%}.es-data-table-content .es-table .el-form-item .el-input:not(.el-input--prefix) .el-input__inner{padding:0 8px;margin-top:0}.es-data-table-content .es-table .el-form-item .el-input-number,.es-data-table-content .es-table .el-form-item .el-select{width:100%}.es-data-table-content .es-table.el-scrollbar>.el-scrollbar__bar{z-index:8}.es-data-table-content.es-table-border-none .es-table{border:0}.es-data-table-content.es-table-border-none .es-table::before{content:none}.es-data-table-content.es-table-border-none .es-table td,.es-data-table-content.es-table-border-none .es-table th{border:0}.es-data-table-content.es-table-border-none .es-table-page{border:0;margin-top:0;background-color:#fff}.es-data-table-content .el-table__header,.es-data-table-content .el-table__header thead{color:#404040}.es-data-table-content .el-table__body tr.hover-row.current-row>td,.es-data-table-content .el-table__body tr.hover-row.el-table__row--striped.current-row>td,.es-data-table-content .el-table__body tr.hover-row.el-table__row--striped>td,.es-data-table-content .el-table__body tr.hover-row>td,.es-data-table-content .el-table__body tr:hover>td{background-color:#e6f7ff}.es-data-table-content .el-table__body tr.current-row>td{background-color:#91d5ff}.es-data-table-content .es-table-page{height:46px;border:1px solid #e1e1e1;padding:8px 24px;background-color:#f8f8f8}.es-data-table-content .es-table-page.es-loading-page{line-height:30px;font-size:14px;font-weight:400;color:rgba(0,0,0,.75)}.es-data-table-content.es-table-plus .el-table__header thead,.es-data-table-content.es-table-plus .es-table-page .el-pagination__total,.es-data-table-content.es-table-plus .es-table-page .el-select__caret{color:#6e7c98}.es-data-table-content .es-thead-border .el-table__header th:not(.gutter){border-right:1px solid #e1e1e1}.es-data-table-content .es-thead-border .el-table__header thead:not(.is-group) th:last-child{border-right:0;border-bottom:1px solid #e1e1e1}.es-data-table-content .es-thead-border .is-scrolling-right~.el-table__fixed-right:not(.el-table-box-shadow) thead th:last-child{border-left:0}.es-data-table-content .el-form-item__error{top:unset;bottom:0}.es-data-table-content .es-table:not(.el-table--border) .el-table--border td,.es-data-table-content .es-table:not(.el-table--border) .el-table--border th,.es-data-table-content .es-table:not(.el-table--border) .el-table__body-wrapper .el-table--border.is-scrolling-left~.el-table__fixed{border-right:0}.es-data-table-content .is-scrolling-right+.el-table__fixed-body-wrapper td{border-right:1px solid #e1e1e1}.es-data-table-content .is-scrolling-right+.el-table__fixed-body-wrapper td:last-child{border-right:0}.es-data-table-content.es-table-plus{background-color:#fff;padding-top:0}.es-data-table-content.es-table-plus .el-table__header th{background-color:#fff;border-color:#cdd9e4}.es-data-table-content.es-table-plus .el-table__header th:not(.gutter){border-right-color:transparent}.es-data-table-content.es-table-plus .es-table{border-color:transparent}.es-data-table-content.es-table-plus .es-table::before{background-color:#cdd9e4}.es-data-table-content.es-table-plus .es-table td{border-color:#cdd9e4}.es-data-table-content.es-table-plus .es-table .cell{min-height:35px}.es-data-table-content.es-table-plus .es-table-page{height:48px;padding:10px 24px;background-color:#fff;border-color:#cdd9e4 transparent transparent}.el-table--border::after,.el-table--group::after,.el-table::before{z-index:5}.es-table-sizer{height:100%}.sizer-btn-box{text-align:right;margin-top:7px}.es-table-sizer-tips{color:red;line-height:20px}.es-table-setting{font-size:16px;cursor:pointer;position:absolute;right:0;top:0;z-index:99}
|