eoss-ui 0.5.84 → 0.5.85
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 +17 -16
- package/lib/button.js +17 -16
- package/lib/checkbox-group.js +17 -16
- package/lib/config/api.js +3 -2
- package/lib/data-table-form.js +17 -16
- package/lib/data-table.js +417 -262
- package/lib/date-picker.js +17 -16
- package/lib/dialog.js +17 -16
- package/lib/eoss-ui.common.js +6189 -13674
- package/lib/flow-group.js +17 -16
- package/lib/flow-list.js +17 -16
- package/lib/flow.js +17 -16
- package/lib/form.js +5647 -13458
- package/lib/handle-user.js +17 -16
- package/lib/handler.js +23 -18
- package/lib/icon.js +17 -16
- package/lib/index.js +1 -1
- package/lib/input-number.js +17 -16
- package/lib/input.js +17 -16
- package/lib/login.js +28 -19
- package/lib/main.js +579 -418
- package/lib/nav.js +17 -16
- package/lib/notify.js +3 -2
- package/lib/page.js +17 -16
- package/lib/pagination.js +17 -16
- package/lib/player.js +17 -16
- package/lib/qr-code.js +17 -16
- package/lib/radio-group.js +17 -16
- package/lib/retrial-auth.js +17 -16
- package/lib/select-ganged.js +17 -16
- package/lib/select.js +18 -17
- package/lib/selector-panel.js +17 -16
- package/lib/selector.js +17 -16
- package/lib/sizer.js +17 -16
- package/lib/steps.js +17 -16
- package/lib/switch.js +17 -16
- package/lib/table-form.js +17 -16
- package/lib/tabs.js +17 -16
- 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 +17 -16
- package/lib/tree-group.js +17 -16
- package/lib/tree.js +17 -16
- package/lib/upload.js +30 -29
- package/lib/utils/util.js +14 -14
- package/lib/wujie.js +17 -16
- package/lib/wxlogin.js +17 -16
- 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 +12 -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 +2 -2
|
@@ -2,23 +2,20 @@
|
|
|
2
2
|
<div class="es-main">
|
|
3
3
|
<div class="es-simplicity-side">
|
|
4
4
|
<img class="es-simplicity-logo" v-if="mainLogo" :src="mainLogo" />
|
|
5
|
-
<div
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
}}
|
|
5
|
+
<div
|
|
6
|
+
class="es-simplicity-org-name es-text-ellipsis-row2"
|
|
7
|
+
:title="simpleUserInfo.orgShortName || simpleUserInfo.orgName"
|
|
8
|
+
>
|
|
9
|
+
{{ simpleUserInfo.orgShortName || simpleUserInfo.orgName }}
|
|
11
10
|
</div>
|
|
12
11
|
<el-popover
|
|
13
12
|
class="es-simplicity-user-popover"
|
|
14
13
|
placement="right-start"
|
|
15
14
|
width="360"
|
|
16
15
|
trigger="click"
|
|
17
|
-
@show="showUserInfo"
|
|
18
16
|
>
|
|
19
17
|
<!-- 用户信息 -->
|
|
20
18
|
<user
|
|
21
|
-
v-if="showUser"
|
|
22
19
|
:user="user"
|
|
23
20
|
:notifyList="notifyList"
|
|
24
21
|
:notify="notify"
|
|
@@ -113,6 +110,7 @@
|
|
|
113
110
|
:applications="applications"
|
|
114
111
|
:business="business"
|
|
115
112
|
:systems="systems"
|
|
113
|
+
:user="user"
|
|
116
114
|
@click="handlerClickApps"
|
|
117
115
|
></apps>
|
|
118
116
|
<!-- 应用 end -->
|
|
@@ -207,11 +205,7 @@
|
|
|
207
205
|
slot="append"
|
|
208
206
|
v-bind="handleConfig"
|
|
209
207
|
:data="handleData"
|
|
210
|
-
:hide="
|
|
211
|
-
home: indexUrl ? false : true,
|
|
212
|
-
index: doorIndex ? false : true,
|
|
213
|
-
...hides
|
|
214
|
-
}"
|
|
208
|
+
:hide="hide"
|
|
215
209
|
:online="userNums"
|
|
216
210
|
:notice-num="notice"
|
|
217
211
|
@click="handleClick"
|
|
@@ -292,7 +286,12 @@
|
|
|
292
286
|
<!-- 消息提醒 end -->
|
|
293
287
|
|
|
294
288
|
<es-dialog :visible.sync="showSearch" size="lg">
|
|
295
|
-
<search
|
|
289
|
+
<search
|
|
290
|
+
:apps="applications"
|
|
291
|
+
:menus="menus"
|
|
292
|
+
:menuIcon="menuIcon"
|
|
293
|
+
@select="handleSelect"
|
|
294
|
+
></search>
|
|
296
295
|
</es-dialog>
|
|
297
296
|
<!-- 公用弹窗 -->
|
|
298
297
|
<es-dialog :title="dialog.title" :visible.sync="dialog.show" size="md">
|
|
@@ -415,11 +414,6 @@ export default {
|
|
|
415
414
|
type: String,
|
|
416
415
|
default: systemMode
|
|
417
416
|
},
|
|
418
|
-
//记录菜单点击率作为工作台常用应用数据
|
|
419
|
-
recordApp: {
|
|
420
|
-
type: Boolean,
|
|
421
|
-
default: true
|
|
422
|
-
},
|
|
423
417
|
sysCode: String,
|
|
424
418
|
appCode: String,
|
|
425
419
|
//logo
|
|
@@ -599,7 +593,8 @@ export default {
|
|
|
599
593
|
//选中菜单
|
|
600
594
|
active: '',
|
|
601
595
|
//单位名称
|
|
602
|
-
simpleUserInfo: {}
|
|
596
|
+
simpleUserInfo: {},
|
|
597
|
+
topRightToolHide: ''
|
|
603
598
|
};
|
|
604
599
|
},
|
|
605
600
|
computed: {
|
|
@@ -642,6 +637,30 @@ export default {
|
|
|
642
637
|
return typeof this.onlineView == 'string' ? this.onlineView : '';
|
|
643
638
|
}
|
|
644
639
|
return false;
|
|
640
|
+
},
|
|
641
|
+
//隐藏操作按键
|
|
642
|
+
hide() {
|
|
643
|
+
let topRightToolHide = {};
|
|
644
|
+
if (this.topRightToolHide) {
|
|
645
|
+
topRightToolHide = JSON.parse(
|
|
646
|
+
this.topRightToolHide.replace(
|
|
647
|
+
/(['"])?([a-zA-Z0-9_]+)(['"])?:/g,
|
|
648
|
+
'"$2":'
|
|
649
|
+
)
|
|
650
|
+
);
|
|
651
|
+
}
|
|
652
|
+
let hides = {
|
|
653
|
+
home: this.indexUrl ? false : true,
|
|
654
|
+
index: this.doorIndex ? false : true
|
|
655
|
+
};
|
|
656
|
+
|
|
657
|
+
if (this.layout === 'subsystem' || this.application) {
|
|
658
|
+
hides.system = false;
|
|
659
|
+
}
|
|
660
|
+
if (this.layout === 'topside' || this.layout === 'side') {
|
|
661
|
+
hides.user = true;
|
|
662
|
+
}
|
|
663
|
+
return { ...hides, ...this.hides, ...topRightToolHide };
|
|
645
664
|
}
|
|
646
665
|
},
|
|
647
666
|
watch: {
|
|
@@ -765,6 +784,7 @@ export default {
|
|
|
765
784
|
}
|
|
766
785
|
if (i === 'doorIndex' && results[i]) {
|
|
767
786
|
util.win.open(results[i]);
|
|
787
|
+
this.doorIndex = results[i];
|
|
768
788
|
}
|
|
769
789
|
if (i === 'subsystemName' && results[i]) {
|
|
770
790
|
document.title = results[i];
|
|
@@ -821,6 +841,12 @@ export default {
|
|
|
821
841
|
this.aiConfig = results[i].aiConfig;
|
|
822
842
|
}
|
|
823
843
|
}
|
|
844
|
+
if (results[i].portalPage || results[i].portalpage) {
|
|
845
|
+
this.doorIndex = results[i].portalPage || results[i].portalpage;
|
|
846
|
+
}
|
|
847
|
+
if (results[i].topRightToolHide) {
|
|
848
|
+
this.topRightToolHide = results[i].topRightToolHide;
|
|
849
|
+
}
|
|
824
850
|
}
|
|
825
851
|
if (i === 'userModel' && results[i]) {
|
|
826
852
|
if (results[i].userHeadUrl) {
|
|
@@ -1410,18 +1436,16 @@ export default {
|
|
|
1410
1436
|
* @date 2024年9月7日
|
|
1411
1437
|
**/
|
|
1412
1438
|
handlerClickMenu(res) {
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
.catch(() => {});
|
|
1424
|
-
}
|
|
1439
|
+
util
|
|
1440
|
+
.ajax({
|
|
1441
|
+
url: recordUserApp,
|
|
1442
|
+
params: {
|
|
1443
|
+
userId: this.user.userId,
|
|
1444
|
+
appId: res.id
|
|
1445
|
+
}
|
|
1446
|
+
})
|
|
1447
|
+
.then(() => {})
|
|
1448
|
+
.catch(() => {});
|
|
1425
1449
|
this.showMsg = false;
|
|
1426
1450
|
this.showSet = false;
|
|
1427
1451
|
let i = util.indexOfObj(this.tabs, res, 'id');
|
|
@@ -1610,6 +1634,9 @@ export default {
|
|
|
1610
1634
|
this.showMsg = !this.showMsg;
|
|
1611
1635
|
this.showSet = false;
|
|
1612
1636
|
break;
|
|
1637
|
+
case 'index':
|
|
1638
|
+
util.win.open(this.doorIndex, '_self');
|
|
1639
|
+
break;
|
|
1613
1640
|
case 'set':
|
|
1614
1641
|
this.showSet = !this.showSet;
|
|
1615
1642
|
this.showMsg = false;
|
|
@@ -1825,6 +1852,15 @@ export default {
|
|
|
1825
1852
|
},
|
|
1826
1853
|
false
|
|
1827
1854
|
);
|
|
1855
|
+
},
|
|
1856
|
+
handleSelect(res, parent) {
|
|
1857
|
+
this.showSearch = false;
|
|
1858
|
+
if (parent.name === '应用') {
|
|
1859
|
+
this.handlerClickApps(res);
|
|
1860
|
+
}
|
|
1861
|
+
if (parent.name === '菜单') {
|
|
1862
|
+
this.handlerClickApp(res);
|
|
1863
|
+
}
|
|
1828
1864
|
}
|
|
1829
1865
|
},
|
|
1830
1866
|
beforeDestroy() {
|
|
@@ -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}
|