eoss-ui 0.5.84 → 0.5.86
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/button-group.js +20 -19
- package/lib/button.js +20 -19
- package/lib/checkbox-group.js +20 -19
- package/lib/config/api.js +3 -2
- package/lib/data-table-form.js +20 -19
- package/lib/data-table.js +420 -265
- package/lib/date-picker.js +20 -19
- package/lib/dialog.js +20 -19
- package/lib/eoss-ui.common.js +6193 -13677
- package/lib/flow-group.js +20 -19
- package/lib/flow-list.js +20 -19
- package/lib/flow.js +20 -19
- package/lib/form.js +5650 -13461
- package/lib/handle-user.js +20 -19
- package/lib/handler.js +26 -21
- package/lib/icon.js +20 -19
- package/lib/index.js +1 -1
- package/lib/input-number.js +20 -19
- package/lib/input.js +20 -19
- package/lib/login.js +31 -22
- package/lib/main.js +358 -196
- package/lib/nav.js +20 -19
- package/lib/notify.js +3 -2
- package/lib/page.js +20 -19
- package/lib/pagination.js +20 -19
- package/lib/player.js +20 -19
- package/lib/qr-code.js +20 -19
- package/lib/radio-group.js +20 -19
- package/lib/retrial-auth.js +20 -19
- package/lib/select-ganged.js +20 -19
- package/lib/select.js +21 -20
- package/lib/selector-panel.js +20 -19
- package/lib/selector.js +20 -19
- package/lib/sizer.js +20 -19
- package/lib/steps.js +20 -19
- package/lib/switch.js +20 -19
- package/lib/table-form.js +20 -19
- package/lib/tabs.js +20 -19
- package/lib/theme-chalk/calendar.css +1 -1
- package/lib/theme-chalk/data-table.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/main.css +1 -1
- package/lib/theme-chalk/simplicity.css +1 -1
- package/lib/tips.js +20 -19
- package/lib/tree-group.js +20 -19
- package/lib/tree.js +20 -19
- package/lib/upload.js +33 -32
- package/lib/utils/util.js +17 -17
- package/lib/wujie.js +20 -19
- package/lib/wxlogin.js +20 -19
- package/package.json +2 -2
- package/packages/data-table/src/children.vue +3 -2
- package/packages/data-table/src/column.vue +2 -4
- package/packages/data-table/src/main.vue +150 -66
- package/packages/data-table/src/sizer.vue +51 -22
- package/packages/form/src/main.vue +119 -2103
- package/packages/handler/src/main.vue +5 -0
- package/packages/login/src/main.vue +12 -1
- package/packages/main/src/default/index.vue +35 -54
- package/packages/main/src/public/search.vue +138 -31
- package/packages/main/src/simplicity/apps.vue +13 -0
- package/packages/main/src/simplicity/handler.vue +0 -2
- package/packages/main/src/simplicity/index.vue +68 -32
- package/packages/select/src/main.vue +1 -1
- package/packages/theme-chalk/lib/calendar.css +1 -1
- package/packages/theme-chalk/lib/data-table.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/main.css +1 -1
- package/packages/theme-chalk/lib/simplicity.css +1 -1
- package/packages/theme-chalk/src/calendar.scss +3 -3
- package/packages/theme-chalk/src/data-table.scss +12 -0
- package/packages/theme-chalk/src/main.scss +2 -1
- package/packages/theme-chalk/src/simplicity.scss +15 -2
- package/packages/upload/src/main.vue +16 -12
- package/src/config/api.js +3 -2
- package/src/index.js +1 -1
- package/src/utils/util.js +6 -6
package/lib/tabs.js
CHANGED
|
@@ -2016,20 +2016,20 @@ var identical = function identical(_ref7) {
|
|
|
2016
2016
|
* @date 2022年5月7日
|
|
2017
2017
|
* @param {Array} [arry] - 被查找的数组
|
|
2018
2018
|
* @param {Object} [target] - 目标对象
|
|
2019
|
-
* @param {String} [key] - 目标对象的属性名
|
|
2019
|
+
* @param {String/Array} [key] - 目标对象的属性名
|
|
2020
2020
|
**/
|
|
2021
2021
|
var indexOfObj = function indexOfObj(arry, target, key) {
|
|
2022
2022
|
for (var i = 0; i < arry.length; i++) {
|
|
2023
2023
|
if (key) {
|
|
2024
|
-
if (key.indexOf(',') > -1) {
|
|
2025
|
-
var keys = key.split(',');
|
|
2026
|
-
for (var
|
|
2027
|
-
var k = keys[
|
|
2028
|
-
if (typeof target === 'string' && arry[
|
|
2029
|
-
return
|
|
2024
|
+
if (key.indexOf(',') > -1 || Array.isArray(key)) {
|
|
2025
|
+
var keys = key.indexOf(',') > -1 ? key.split(',') : key;
|
|
2026
|
+
for (var n = 0; n < keys.length; n++) {
|
|
2027
|
+
var k = keys[n];
|
|
2028
|
+
if (typeof target === 'string' && arry[i][k] === target) {
|
|
2029
|
+
return i;
|
|
2030
2030
|
}
|
|
2031
|
-
if (target[k] === arry[
|
|
2032
|
-
return
|
|
2031
|
+
if (target[k] && arry[i][k] && target[k] === arry[i][k]) {
|
|
2032
|
+
return i;
|
|
2033
2033
|
}
|
|
2034
2034
|
}
|
|
2035
2035
|
} else {
|
|
@@ -2772,22 +2772,22 @@ var setStorage = function setStorage(_ref14) {
|
|
|
2772
2772
|
localStorage.setItem(key[i], value);
|
|
2773
2773
|
}
|
|
2774
2774
|
} else {
|
|
2775
|
-
for (var
|
|
2776
|
-
var val = _typeof(key[
|
|
2777
|
-
localStorage.setItem(
|
|
2775
|
+
for (var _i7 in key) {
|
|
2776
|
+
var val = _typeof(key[_i7]) === 'object' ? JSON.stringify(key[_i7]) : key[_i7];
|
|
2777
|
+
localStorage.setItem(_i7, val);
|
|
2778
2778
|
}
|
|
2779
2779
|
}
|
|
2780
2780
|
} else {
|
|
2781
2781
|
if (typeof key === 'string') {
|
|
2782
2782
|
sessionStorage.setItem(key, value);
|
|
2783
2783
|
} else if (Array.isArray(key)) {
|
|
2784
|
-
for (var
|
|
2785
|
-
sessionStorage.setItem(key[
|
|
2784
|
+
for (var _i8 in key) {
|
|
2785
|
+
sessionStorage.setItem(key[_i8], value);
|
|
2786
2786
|
}
|
|
2787
2787
|
} else {
|
|
2788
|
-
for (var
|
|
2789
|
-
var _val = _typeof(key[
|
|
2790
|
-
sessionStorage.setItem(
|
|
2788
|
+
for (var _i9 in key) {
|
|
2789
|
+
var _val = _typeof(key[_i9]) === 'object' ? JSON.stringify(key[_i9]) : key[_i9];
|
|
2790
|
+
sessionStorage.setItem(_i9, _val);
|
|
2791
2791
|
}
|
|
2792
2792
|
}
|
|
2793
2793
|
}
|
|
@@ -3437,7 +3437,7 @@ var sysMsgPage = '/main2/notify/sysMsgPage'; // 获取系统消息
|
|
|
3437
3437
|
var ignoreSysMsg = '/main2/notify/ignoreSysMsg'; // 忽略系统消息
|
|
3438
3438
|
var ignoreAllSysMsg = '/main2/notify/ignoreAllSysMsg'; // 忽略全部系统消息
|
|
3439
3439
|
// 框架 - 搜索
|
|
3440
|
-
var searchType = '/
|
|
3440
|
+
var searchType = '/oceansearch/v2/search/catalog'; // 搜索分类类型
|
|
3441
3441
|
|
|
3442
3442
|
// 附件相关
|
|
3443
3443
|
var getAdjunctProperties = '/main2/mecpfileManagement/getAdjunctProperties'; // 获取附件扩展类型大小
|
|
@@ -3613,7 +3613,8 @@ var sendDelete = '/notify2/notifySendRecord/deleteById';
|
|
|
3613
3613
|
var sendBatch = '/notify2/sendRecord/reSendNotifyMessageBatch';
|
|
3614
3614
|
|
|
3615
3615
|
// 表单结构
|
|
3616
|
-
|
|
3616
|
+
|
|
3617
|
+
var formContents = '/lowcode/admin/online/onlineForm/getOnlineFormFromCache';
|
|
3617
3618
|
|
|
3618
3619
|
/***/ }),
|
|
3619
3620
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.es-calendar{background-color:#fff}.es-calendar .es-calendar-title{height:44px;padding:12px 30px;background-color:#fff;font-family:PingFang SC,PingFang SC;font-weight:400;font-size:14px;color:#262626;line-height:20px;text-align:center;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.es-calendar .es-calendar-title .es-calendar-next,.es-calendar .es-calendar-title .es-calendar-prev{cursor:pointer;font-size:14px;color:#8c8c8c;line-height:20px}.es-calendar .es-calendar-title .es-calendar-prev{margin-right:8px}.es-calendar .es-calendar-title .es-calendar-next{margin-left:8px}.es-calendar .es-calendar-title .es-title .es-calendar-picker .el-input__inner{width:76px;height:20px;line-height:20px;text-align:center;padding:0;border:0!important;-webkit-box-shadow:none!important;box-shadow:none!important;cursor:pointer}.es-calendar .es-calendar-title .es-title .es-calendar-picker .el-input__prefix,.es-calendar .es-calendar-title .es-title .es-calendar-picker .el-input__suffix{display:none}.es-calendar .es-calendar-weeks{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:4px}.es-calendar .es-calendar-weeks .es-week{width:14.28571%;height:32px;text-align:center;line-height:32px;font-size:14px;color:#8c8c8c;font-weight:700}.es-calendar .es-calendar-days{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.es-calendar .es-calendar-days .es-day{width:14.28571%;height:32px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.es-calendar .es-calendar-days .es-day .es-day-item{width:28px;height:28px;font-weight:400;font-size:14px;color:#262626;text-align:center;line-height:28px;position:relative;cursor:pointer}.es-calendar .es-calendar-days .es-day .es-day-item.es-disabled-day{color:#bfbfbf}.es-calendar .es-calendar-days .es-day .es-day-item.es-today{color
|
|
1
|
+
.es-calendar{background-color:#fff}.es-calendar .es-calendar-title{height:44px;padding:12px 30px;background-color:#fff;font-family:PingFang SC,PingFang SC;font-weight:400;font-size:14px;color:#262626;line-height:20px;text-align:center;position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.es-calendar .es-calendar-title .es-calendar-next,.es-calendar .es-calendar-title .es-calendar-prev{cursor:pointer;font-size:14px;color:#8c8c8c;line-height:20px}.es-calendar .es-calendar-title .es-calendar-prev{margin-right:8px}.es-calendar .es-calendar-title .es-calendar-next{margin-left:8px}.es-calendar .es-calendar-title .es-title .es-calendar-picker .el-input__inner{width:76px;height:20px;line-height:20px;text-align:center;padding:0;border:0!important;-webkit-box-shadow:none!important;box-shadow:none!important;cursor:pointer}.es-calendar .es-calendar-title .es-title .es-calendar-picker .el-input__prefix,.es-calendar .es-calendar-title .es-title .es-calendar-picker .el-input__suffix{display:none}.es-calendar .es-calendar-weeks{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:4px}.es-calendar .es-calendar-weeks .es-week{width:14.28571%;height:32px;text-align:center;line-height:32px;font-size:14px;color:#8c8c8c;font-weight:700}.es-calendar .es-calendar-days{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.es-calendar .es-calendar-days .es-day{width:14.28571%;height:32px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.es-calendar .es-calendar-days .es-day .es-day-item{width:28px;height:28px;font-weight:400;font-size:14px;color:#262626;text-align:center;line-height:28px;position:relative;cursor:pointer}.es-calendar .es-calendar-days .es-day .es-day-item.es-disabled-day{color:#bfbfbf}.es-calendar .es-calendar-days .es-day .es-day-item.es-today{color:var(--theme-primary-light-7,#2778e5);border:1px solid var(--theme-primary-light-7,#2778e5);line-height:26px;border-radius:15px}.es-calendar .es-calendar-days .es-day .es-day-item.es-select{color:#fff;background-color:var(--theme-primary-light-7,#2778e5);border-radius:15px}.es-calendar .es-calendar-days .es-day .es-day-item.es-disabled{cursor:not-allowed}.es-calendar .es-calendar-switch{height:22px;line-height:22px;font-weight:700;text-align:center;color:#8c8c8c}.es-calendar .es-calendar-switch .es-switch-icon{font-size:14px;cursor:pointer}
|
|
@@ -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-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}.sizer-btn-box{text-align:right;margin-top:7px}
|
|
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}
|