eoss-ui 0.5.81-beta11 → 0.5.81-beta13

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.
Files changed (34) hide show
  1. package/lib/button-group.js +27 -8
  2. package/lib/button.js +2 -1
  3. package/lib/data-table.js +58 -33
  4. package/lib/eoss-ui.common.js +271 -215
  5. package/lib/index.js +1 -1
  6. package/lib/main.js +167 -156
  7. package/lib/pagination.js +4 -4
  8. package/lib/theme-chalk/button-group.css +1 -1
  9. package/lib/theme-chalk/data-table.css +1 -1
  10. package/lib/theme-chalk/index.css +1 -1
  11. package/lib/theme-chalk/main.css +1 -1
  12. package/lib/theme-chalk/simplicity.css +1 -1
  13. package/lib/theme-chalk/toolbar.css +1 -1
  14. package/package.json +2 -2
  15. package/packages/button/src/main.vue +2 -1
  16. package/packages/button-group/src/main.vue +8 -6
  17. package/packages/data-table/src/column.vue +2 -0
  18. package/packages/data-table/src/main.vue +30 -18
  19. package/packages/data-table/src/sizer.vue +3 -0
  20. package/packages/main/src/simplicity/handler.vue +1 -1
  21. package/packages/main/src/simplicity/index.vue +9 -4
  22. package/packages/main/src/simplicity/sub-menu.vue +5 -1
  23. package/packages/pagination/src/main.vue +2 -2
  24. package/packages/theme-chalk/lib/button-group.css +1 -1
  25. package/packages/theme-chalk/lib/data-table.css +1 -1
  26. package/packages/theme-chalk/lib/index.css +1 -1
  27. package/packages/theme-chalk/lib/main.css +1 -1
  28. package/packages/theme-chalk/lib/simplicity.css +1 -1
  29. package/packages/theme-chalk/lib/toolbar.css +1 -1
  30. package/packages/theme-chalk/src/button-group.scss +16 -2
  31. package/packages/theme-chalk/src/data-table.scss +59 -22
  32. package/packages/theme-chalk/src/simplicity.scss +10 -0
  33. package/packages/theme-chalk/src/toolbar.scss +14 -3
  34. package/src/index.js +1 -1
@@ -12,6 +12,9 @@
12
12
  <es-toolbar
13
13
  v-if="showToolbar"
14
14
  ref="toolbar"
15
+ :class="{
16
+ 'es-table-toolbar-plus': mode == 'plus'
17
+ }"
15
18
  v-bind="{
16
19
  contents: toolbars,
17
20
  showLabel: showLabel,
@@ -35,7 +38,10 @@
35
38
  <div
36
39
  style="styles"
37
40
  class="es-data-table-content"
38
- :class="border == 'none' ? 'es-table-border-none' : ''"
41
+ :class="{
42
+ 'es-table-border-none': border == 'none',
43
+ 'es-table-plus': mode == 'plus'
44
+ }"
39
45
  ref="esTableContent"
40
46
  v-if="show"
41
47
  >
@@ -71,11 +77,6 @@
71
77
  (theadBorder && border != 'none' ? ' es-thead-border' : '')
72
78
  "
73
79
  >
74
- <!-- <el-table-column v-if="dragSort" width="32" fixed>
75
- <template slot-scope="scope">
76
- <es-icon :contents="dragSortIcon"></es-icon>
77
- </template>
78
- </el-table-column> -->
79
80
  <slot name="prepend"></slot>
80
81
  <slot></slot>
81
82
  <template v-for="(item, index) in theads">
@@ -100,6 +101,7 @@
100
101
  v-else
101
102
  :key="item.label || item.title"
102
103
  v-bind="{
104
+ mode: mode,
103
105
  name: name,
104
106
  indexs: index,
105
107
  form: form,
@@ -153,6 +155,7 @@
153
155
  </div>
154
156
  <es-pagination
155
157
  v-else-if="page"
158
+ ref="pagination"
156
159
  v-bind="config"
157
160
  class="es-table-page"
158
161
  :position="page.position"
@@ -167,7 +170,7 @@
167
170
  <slot name="dialog"></slot>
168
171
  <slot name="other"></slot>
169
172
  </div>
170
- <sizer ref="sizer" :data="theads"></sizer>
173
+ <sizer ref="sizer" :data="theads" :mode="mode"></sizer>
171
174
  </component>
172
175
  </template>
173
176
  <script>
@@ -178,6 +181,8 @@ import sizer from './sizer.vue';
178
181
  import util from 'eoss-ui/src/utils/util';
179
182
  import bus from 'eoss-ui/src/utils/bus';
180
183
  import qs from 'qs';
184
+ const dataTableMode =
185
+ util.win.top.dataTableMode || util.win.dataTableMode || 'default';
181
186
  export default {
182
187
  name: 'EsDataTable',
183
188
  inheritAttrs: false,
@@ -203,6 +208,10 @@ export default {
203
208
  }
204
209
  },
205
210
  props: {
211
+ mode: {
212
+ type: String,
213
+ default: dataTableMode
214
+ },
206
215
  service: String,
207
216
  loading: {
208
217
  type: Boolean,
@@ -450,7 +459,11 @@ export default {
450
459
  config: {
451
460
  pageNum: 1,
452
461
  pageSize: 20,
453
- totalCount: 0
462
+ totalCount: 0,
463
+ layout:
464
+ this.mode == 'plus'
465
+ ? 'total, sizes, prev, pager, next, jumper'
466
+ : undefined
454
467
  },
455
468
  searchWhere: {},
456
469
  advanceWhere: {},
@@ -676,7 +689,7 @@ export default {
676
689
  }
677
690
  },
678
691
  zoom: {
679
- handler(val) {
692
+ handler() {
680
693
  if (
681
694
  this.tableHeight != 'auto' &&
682
695
  this.tableHeight !== false &&
@@ -708,7 +721,7 @@ export default {
708
721
  },
709
722
  param: {
710
723
  deep: true,
711
- handler(val) {
724
+ handler() {
712
725
  this.getTableData();
713
726
  }
714
727
  },
@@ -718,12 +731,6 @@ export default {
718
731
  handler(val) {
719
732
  if (typeof val === 'object') {
720
733
  this.config = util.extend({}, this.config, val);
721
- } else {
722
- this.config = {
723
- pageNum: 1,
724
- pageSize: 20,
725
- totalCount: 0
726
- };
727
734
  }
728
735
  }
729
736
  },
@@ -1009,6 +1016,7 @@ export default {
1009
1016
  this.list = results.data || results.records || [];
1010
1017
  this.config.totalCount =
1011
1018
  results.count || results.total || results.totalCount;
1019
+ this.config.pageCount = results.pageCount;
1012
1020
  this.getOptions(this.theadData);
1013
1021
  }
1014
1022
  } else {
@@ -1097,6 +1105,7 @@ export default {
1097
1105
  }
1098
1106
  this.config.totalCount =
1099
1107
  results.count || results.total || results.totalCount;
1108
+ this.config.pageCount = results.pageCount;
1100
1109
  this.checked &&
1101
1110
  this.$nextTick(() => {
1102
1111
  this.checkSelect(this.checked);
@@ -1540,8 +1549,11 @@ export default {
1540
1549
  parseInt(util.getStyle(ele, 'margin-bottom'), 10);
1541
1550
  }
1542
1551
  }
1543
- height -= this.showToolbar ? 45 : 0;
1544
- height -= this.page === false ? 0 : 46;
1552
+ height -= this.showToolbar
1553
+ ? this.$refs.toolbar.$el.offsetHeight
1554
+ : 0;
1555
+ height -=
1556
+ this.page === false ? 0 : this.$refs.pagination.$el.offsetHeight;
1545
1557
  height -= this.title ? this.$refs.title.offsetHeight : 0;
1546
1558
  height -= parseInt(
1547
1559
  util.getStyle(this.$refs.esTableContent, 'padding-top'),
@@ -7,6 +7,7 @@
7
7
  row-key="id"
8
8
  default-expand-all
9
9
  height="500px"
10
+ :mode="mode"
10
11
  :data="theads"
11
12
  :thead="thead"
12
13
  :tree-props="{ children: 'childHead' }"
@@ -26,6 +27,7 @@ import util from 'eoss-ui/src/utils/util';
26
27
  export default {
27
28
  name: 'Sizer',
28
29
  props: {
30
+ mode: String,
29
31
  data: Array
30
32
  },
31
33
  computed: {
@@ -89,6 +91,7 @@ export default {
89
91
  },
90
92
  mounted() {
91
93
  this.newThead = util.extend(true, [], this.data);
94
+ console.log(this.mode, 90909);
92
95
  },
93
96
  methods: {
94
97
  show() {
@@ -67,7 +67,7 @@ export default {
67
67
  default() {
68
68
  return {
69
69
  type: 'index',
70
- open: doorIndex,
70
+ link: doorIndex,
71
71
  icon: 'es-icon-home',
72
72
  title: '门户'
73
73
  };
@@ -62,15 +62,13 @@
62
62
  :class="{ 'is-active': active == item.id }"
63
63
  :key="item.id"
64
64
  :title="item.text || item.name"
65
+ @click.stop="handlerClickApp(item)"
65
66
  >
66
67
  <i
67
68
  class="el-icon-circle-close"
68
69
  @click.stop="handleDelete(index)"
69
70
  ></i>
70
- <el-badge
71
- v-bind="getBadge(item)"
72
- @click.stop="handlerClickApp(item)"
73
- >
71
+ <el-badge v-bind="getBadge(item)">
74
72
  <es-icon
75
73
  class="es-simplicity-side-app-icon"
76
74
  :contents="item.icons || item.icon || menuIcon"
@@ -102,6 +100,7 @@
102
100
  <div class="es-simplicity-main">
103
101
  <!-- 菜单 -->
104
102
  <sub-menu
103
+ :mode="mode"
105
104
  :visible.sync="showMenu"
106
105
  :closed.sync="fold"
107
106
  :size="menuWidth"
@@ -308,6 +307,7 @@
308
307
  </template>
309
308
 
310
309
  <script>
310
+ const dataTableMode = util.win.dataTableMode || 'default';
311
311
  import avatar from './avatar.vue';
312
312
  import handler from './handler.vue';
313
313
  import subMenu from './sub-menu.vue';
@@ -394,6 +394,11 @@ export default {
394
394
  online
395
395
  },
396
396
  props: {
397
+ //模式
398
+ mode: {
399
+ type: String,
400
+ default: dataTableMode
401
+ },
397
402
  appCode: String,
398
403
  //logo
399
404
  logo: String,
@@ -11,7 +11,10 @@
11
11
  :wrapperClosable="false"
12
12
  :visible.sync="show"
13
13
  >
14
- <div class="es-simplicity-menus">
14
+ <div
15
+ class="es-simplicity-menus"
16
+ :class="{ 'es-simplicity-menus-plus': mode == 'plus' }"
17
+ >
15
18
  <div class="es-simplicity-menus-box" :style="{ width: width + 'px' }">
16
19
  <div class="es-simplicity-menus-title">
17
20
  <span class="es-simplicity-menus-title-text" v-if="!fold">{{
@@ -97,6 +100,7 @@ export default {
97
100
  name: 'SubMenu',
98
101
  components: { MenuList },
99
102
  props: {
103
+ mode: String,
100
104
  title: String,
101
105
  active: String,
102
106
  closed: Boolean,
@@ -20,7 +20,7 @@
20
20
  </template>
21
21
  <script>
22
22
  import util from 'eoss-ui/src/utils/util';
23
- const pageLayout =
23
+ const paginationLayout =
24
24
  util.win.top.tableLayout ||
25
25
  util.win.tableLayout ||
26
26
  'prev, pager, next, sizes, total';
@@ -65,7 +65,7 @@ export default {
65
65
  // 自定义排版
66
66
  layout: {
67
67
  type: String,
68
- default: pageLayout
68
+ default: paginationLayout
69
69
  },
70
70
  // 只有一页时是否隐藏
71
71
  hideOnSinglePage: {
@@ -1 +1 @@
1
- @charset "UTF-8";.el-button-group>.es-selector,.el-button-group>.es-upload{float:left}.el-button-group>.es-selector:first-child>.el-button,.el-button-group>.es-upload:first-child>.el-upload--handle>.el-upload>.el-button{border-top-right-radius:0;border-bottom-right-radius:0}.el-button-group>.es-selector:not(:first-child):not(:last-child)>.el-button,.el-button-group>.es-upload:not(:first-child):not(:last-child)>.el-upload--handle>.el-upload>.el-button{border-radius:0}.el-button-group>.es-selector:last-child>.el-button,.el-button-group>.es-upload:last-child>.el-upload--handle>.el-upload>.el-button{border-top-left-radius:0;border-bottom-left-radius:0}.el-button-group>.es-selector:not(:last-child)>.el-button,.el-button-group>.es-upload:not(:last-child)>.el-upload--handle>.el-upload>.el-button{margin-right:-1px}.es-button-group{display:-webkit-box;display:-ms-flexbox;display:flex}.es-button-group>.el-dropdown>.el-button{border-color:#d9d9d9}.el-button-group>.el-button:not(.el-button--text)+.es-button:not(.el-button--text),.el-button-group>.es-button:not(.el-button--text)+.el-button:not(.el-button--text),.el-button-group>.es-button:not(.el-button--text)+.es-button:not(.el-button--text){margin-left:0}.el-button-group>.es-selector:first-child>.el-button.el-button--danger,.el-button-group>.es-selector:first-child>.el-button.el-button--info,.el-button-group>.es-selector:first-child>.el-button.el-button--primary,.el-button-group>.es-selector:first-child>.el-button.el-button--success,.el-button-group>.es-selector:first-child>.el-button.el-button--warning{border-right-color:rgba(255,255,255,.5)}.el-button-group>.es-selector:not(:first-child):not(:last-child)>.el-button.el-button--danger,.el-button-group>.es-selector:not(:first-child):not(:last-child)>.el-button.el-button--info,.el-button-group>.es-selector:not(:first-child):not(:last-child)>.el-button.el-button--primary,.el-button-group>.es-selector:not(:first-child):not(:last-child)>.el-button.el-button--success,.el-button-group>.es-selector:not(:first-child):not(:last-child)>.el-button.el-button--warning{border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.el-button-group>.es-selector:last-child>.el-button.el-button--danger,.el-button-group>.es-selector:last-child>.el-button.el-button--info,.el-button-group>.es-selector:last-child>.el-button.el-button--primary,.el-button-group>.es-selector:last-child>.el-button.el-button--success,.el-button-group>.es-selector:last-child>.el-button.el-button--warning{border-left-color:rgba(255,255,255,.5)}.el-button-group>.es-upload:first-child>.el-upload--handle>.el-upload>.el-button.el-button--danger,.el-button-group>.es-upload:first-child>.el-upload--handle>.el-upload>.el-button.el-button--info,.el-button-group>.es-upload:first-child>.el-upload--handle>.el-upload>.el-button.el-button--primary,.el-button-group>.es-upload:first-child>.el-upload--handle>.el-upload>.el-button.el-button--success,.el-button-group>.es-upload:first-child>.el-upload--handle>.el-upload>.el-button.el-button--warning{border-right-color:rgba(255,255,255,.5)}.el-button-group>.es-upload:not(:first-child):not(:last-child)>.el-upload--handle>.el-upload>.el-button.el-button--danger,.el-button-group>.es-upload:not(:first-child):not(:last-child)>.el-upload--handle>.el-upload>.el-button.el-button--info,.el-button-group>.es-upload:not(:first-child):not(:last-child)>.el-upload--handle>.el-upload>.el-button.el-button--primary,.el-button-group>.es-upload:not(:first-child):not(:last-child)>.el-upload--handle>.el-upload>.el-button.el-button--success,.el-button-group>.es-upload:not(:first-child):not(:last-child)>.el-upload--handle>.el-upload>.el-button.el-button--warning{border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.el-button-group>.es-upload:last-child>.el-upload--handle>.el-upload>.el-button.el-button--danger,.el-button-group>.es-upload:last-child>.el-upload--handle>.el-upload>.el-button.el-button--info,.el-button-group>.es-upload:last-child>.el-upload--handle>.el-upload>.el-button.el-button--primary,.el-button-group>.es-upload:last-child>.el-upload--handle>.el-upload>.el-button.el-button--success,.el-button-group>.es-upload:last-child>.el-upload--handle>.el-upload>.el-button.el-button--warning{border-left-color:rgba(255,255,255,.5)}.es-dropdown-padding{padding:0}.es-dropdown-selector>.el-button,.es-dropdown-upload>.el-upload--handle>.el-upload>.el-button{display:block;width:100%;text-align:left;padding:6px 20px;line-height:24px;font-size:14px;border:0}.es-dropdown-upload>.el-upload--handle,.es-dropdown-upload>.el-upload--handle>.el-upload{display:block}.es-dropdown-upload>.el-upload--handle>.el-upload>.el-button{color:rgba(0,0,0,.75)}.es-dropdown-upload>.el-upload--handle>.el-upload>.el-button:hover{color:#69c0ff}.es-dropdown-selector>.el-button{color:rgba(0,0,0,.75)}.es-dropdown-selector>.el-button:hover{color:#69c0ff}
1
+ @charset "UTF-8";.el-button-group>.es-selector,.el-button-group>.es-upload{float:left}.el-button-group>.es-selector:first-child>.el-button,.el-button-group>.es-upload:first-child>.el-upload--handle>.el-upload>.el-button{border-top-right-radius:0;border-bottom-right-radius:0}.el-button-group>.es-selector:not(:first-child):not(:last-child)>.el-button,.el-button-group>.es-upload:not(:first-child):not(:last-child)>.el-upload--handle>.el-upload>.el-button{border-radius:0}.el-button-group>.es-selector:last-child>.el-button,.el-button-group>.es-upload:last-child>.el-upload--handle>.el-upload>.el-button{border-top-left-radius:0;border-bottom-left-radius:0}.el-button-group>.es-selector:not(:last-child)>.el-button,.el-button-group>.es-upload:not(:last-child)>.el-upload--handle>.el-upload>.el-button{margin-right:-1px}.es-button-group{display:-webkit-box;display:-ms-flexbox;display:flex}.es-button-group>.el-dropdown{margin-left:10px}.es-button-group>.el-dropdown>.el-button:not(.el-button--text){border-color:#d9d9d9}.el-button-group>.el-button:not(.el-button--text)+.es-button:not(.el-button--text),.el-button-group>.es-button:not(.el-button--text)+.el-button:not(.el-button--text),.el-button-group>.es-button:not(.el-button--text)+.el-dropdown,.el-button-group>.es-button:not(.el-button--text)+.es-button:not(.el-button--text),.el-button-group>.es-button:not(.el-button--text)+.es-selector,.el-button-group>.es-button:not(.el-button--text)+.es-upload{margin-left:0}.el-button-group>.es-selector+.el-button--text,.el-button-group>.es-selector+.el-dropdown,.el-button-group>.es-selector:not(:first-child):not(:last-child),.el-button-group>.es-upload+.el-button--text,.el-button-group>.es-upload+.el-dropdown,.el-button-group>.es-upload:not(:first-child):not(:last-child){margin-left:10px}.el-button-group>.es-selector:first-child>.el-button.el-button--danger,.el-button-group>.es-selector:first-child>.el-button.el-button--info,.el-button-group>.es-selector:first-child>.el-button.el-button--primary,.el-button-group>.es-selector:first-child>.el-button.el-button--success,.el-button-group>.es-selector:first-child>.el-button.el-button--warning{border-right-color:rgba(255,255,255,.5)}.el-button-group>.es-selector:not(:first-child):not(:last-child)>.el-button.el-button--danger,.el-button-group>.es-selector:not(:first-child):not(:last-child)>.el-button.el-button--info,.el-button-group>.es-selector:not(:first-child):not(:last-child)>.el-button.el-button--primary,.el-button-group>.es-selector:not(:first-child):not(:last-child)>.el-button.el-button--success,.el-button-group>.es-selector:not(:first-child):not(:last-child)>.el-button.el-button--warning{border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.el-button-group>.es-selector:last-child>.el-button.el-button--danger,.el-button-group>.es-selector:last-child>.el-button.el-button--info,.el-button-group>.es-selector:last-child>.el-button.el-button--primary,.el-button-group>.es-selector:last-child>.el-button.el-button--success,.el-button-group>.es-selector:last-child>.el-button.el-button--warning{border-left-color:rgba(255,255,255,.5)}.el-button-group>.es-upload:first-child>.el-upload--handle>.el-upload>.el-button.el-button--danger,.el-button-group>.es-upload:first-child>.el-upload--handle>.el-upload>.el-button.el-button--info,.el-button-group>.es-upload:first-child>.el-upload--handle>.el-upload>.el-button.el-button--primary,.el-button-group>.es-upload:first-child>.el-upload--handle>.el-upload>.el-button.el-button--success,.el-button-group>.es-upload:first-child>.el-upload--handle>.el-upload>.el-button.el-button--warning{border-right-color:rgba(255,255,255,.5)}.el-button-group>.es-upload:not(:first-child):not(:last-child)>.el-upload--handle>.el-upload>.el-button.el-button--danger,.el-button-group>.es-upload:not(:first-child):not(:last-child)>.el-upload--handle>.el-upload>.el-button.el-button--info,.el-button-group>.es-upload:not(:first-child):not(:last-child)>.el-upload--handle>.el-upload>.el-button.el-button--primary,.el-button-group>.es-upload:not(:first-child):not(:last-child)>.el-upload--handle>.el-upload>.el-button.el-button--success,.el-button-group>.es-upload:not(:first-child):not(:last-child)>.el-upload--handle>.el-upload>.el-button.el-button--warning{border-left-color:rgba(255,255,255,.5);border-right-color:rgba(255,255,255,.5)}.el-button-group>.es-upload:last-child>.el-upload--handle>.el-upload>.el-button.el-button--danger,.el-button-group>.es-upload:last-child>.el-upload--handle>.el-upload>.el-button.el-button--info,.el-button-group>.es-upload:last-child>.el-upload--handle>.el-upload>.el-button.el-button--primary,.el-button-group>.es-upload:last-child>.el-upload--handle>.el-upload>.el-button.el-button--success,.el-button-group>.es-upload:last-child>.el-upload--handle>.el-upload>.el-button.el-button--warning{border-left-color:rgba(255,255,255,.5)}.es-dropdown-padding{padding:0}.es-dropdown-selector>.el-button,.es-dropdown-upload>.el-upload--handle>.el-upload>.el-button{display:block;width:100%;text-align:left;padding:6px 20px;line-height:24px;font-size:14px;border:0}.es-dropdown-upload>.el-upload--handle,.es-dropdown-upload>.el-upload--handle>.el-upload{display:block}.es-dropdown-upload>.el-upload--handle>.el-upload>.el-button{color:rgba(0,0,0,.75)}.es-dropdown-upload>.el-upload--handle>.el-upload>.el-button:hover{color:#69c0ff}.es-dropdown-selector>.el-button{color:rgba(0,0,0,.75)}.es-dropdown-selector>.el-button:hover{color:#69c0ff}
@@ -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-data-table-content{padding:16px}.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:28px}.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-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}.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{padding:16px 16px 8px}.es-data-table .es-toolbar.es-table-toolbar-plus{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}