eoss-ui 0.5.85 → 0.5.87
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 +4 -4
- package/lib/button.js +4 -4
- package/lib/checkbox-group.js +4 -4
- package/lib/data-table-form.js +4 -4
- package/lib/data-table.js +25 -13
- package/lib/date-picker.js +4 -4
- package/lib/dialog.js +4 -4
- package/lib/eoss-ui.common.js +277 -219
- package/lib/flow-group.js +4 -4
- package/lib/flow-list.js +4 -4
- package/lib/flow.js +4 -4
- package/lib/form.js +4 -4
- package/lib/handle-user.js +4 -4
- package/lib/handler.js +4 -4
- package/lib/icon.js +4 -4
- package/lib/index.js +1 -1
- package/lib/input-number.js +4 -4
- package/lib/input.js +4 -4
- package/lib/login.js +41 -9
- package/lib/main.js +439 -425
- package/lib/nav.js +4 -4
- package/lib/page.js +4 -4
- package/lib/pagination.js +4 -4
- package/lib/player.js +4 -4
- package/lib/qr-code.js +4 -4
- package/lib/radio-group.js +4 -4
- package/lib/retrial-auth.js +4 -4
- package/lib/select-ganged.js +4 -4
- package/lib/select.js +4 -4
- package/lib/selector-panel.js +4 -4
- package/lib/selector.js +4 -4
- package/lib/sizer.js +4 -4
- package/lib/steps.js +4 -4
- package/lib/switch.js +4 -4
- package/lib/table-form.js +4 -4
- package/lib/tabs.js +4 -4
- package/lib/theme-chalk/button-group.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 +4 -4
- package/lib/tree-group.js +4 -4
- package/lib/tree.js +4 -4
- package/lib/upload.js +4 -4
- package/lib/utils/util.js +4 -4
- package/lib/wujie.js +4 -4
- package/lib/wxlogin.js +4 -4
- package/package.json +1 -1
- package/packages/data-table/src/main.vue +16 -5
- package/packages/login/src/main.vue +27 -3
- package/packages/main/src/public/search.vue +66 -72
- package/packages/main/src/simplicity/apps.vue +1 -0
- package/packages/main/src/simplicity/index.vue +6 -2
- package/packages/theme-chalk/lib/button-group.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/button-group.scss +3 -0
- package/packages/theme-chalk/src/simplicity.scss +6 -1
- package/src/index.js +1 -1
- package/src/utils/util.js +4 -4
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<component
|
|
3
|
-
|
|
3
|
+
v-show="showTable"
|
|
4
4
|
class="es-data-table"
|
|
5
5
|
label-width="0"
|
|
6
6
|
ref="component"
|
|
7
7
|
v-loading="tableLoading"
|
|
8
8
|
element-loading-background="rgba(0, 0, 0, 0.65)"
|
|
9
|
+
:is="tag"
|
|
9
10
|
:model="tag === 'div' ? '' : list"
|
|
10
11
|
:element-loading-text="tableLoadingText"
|
|
11
12
|
>
|
|
@@ -452,6 +453,7 @@ export default {
|
|
|
452
453
|
least: Boolean,
|
|
453
454
|
//保留搜索参数
|
|
454
455
|
retainSearh: Boolean,
|
|
456
|
+
//无线滚动
|
|
455
457
|
infiniteScroll: Boolean,
|
|
456
458
|
isJoin: {
|
|
457
459
|
type: Boolean,
|
|
@@ -502,11 +504,13 @@ export default {
|
|
|
502
504
|
options: {},
|
|
503
505
|
icon: true,
|
|
504
506
|
sysCodes: [],
|
|
505
|
-
infiniteDisabled: this.infiniteScroll,
|
|
507
|
+
infiniteDisabled: !this.infiniteScroll,
|
|
506
508
|
isReload: false,
|
|
507
509
|
pageView: null,
|
|
508
510
|
showSizer: false,
|
|
509
|
-
show: true
|
|
511
|
+
show: true,
|
|
512
|
+
isSetHeight: false,
|
|
513
|
+
showTable: false
|
|
510
514
|
};
|
|
511
515
|
},
|
|
512
516
|
computed: {
|
|
@@ -818,6 +822,9 @@ export default {
|
|
|
818
822
|
this.chekOpenTotalArea();
|
|
819
823
|
},
|
|
820
824
|
mounted() {
|
|
825
|
+
this.isSetHeight =
|
|
826
|
+
util.getStyle(this.$el.parentNode, 'height') == '0px' ? false : true;
|
|
827
|
+
this.showTable = true;
|
|
821
828
|
if (this.data.length) {
|
|
822
829
|
this.list = this.setData();
|
|
823
830
|
}
|
|
@@ -1586,7 +1593,7 @@ export default {
|
|
|
1586
1593
|
},
|
|
1587
1594
|
resetHeight(warn) {
|
|
1588
1595
|
this.$nextTick(() => {
|
|
1589
|
-
if (this.full && !this.height && !this.maxHeight) {
|
|
1596
|
+
if (this.full && !this.height && !this.maxHeight && this.isSetHeight) {
|
|
1590
1597
|
let height = this.$el.parentNode.offsetHeight;
|
|
1591
1598
|
if (height) {
|
|
1592
1599
|
height = parseInt(
|
|
@@ -1602,7 +1609,11 @@ export default {
|
|
|
1602
1609
|
);
|
|
1603
1610
|
for (let i = 0; i < this.$el.parentNode.childNodes.length; i++) {
|
|
1604
1611
|
let ele = this.$el.parentNode.childNodes[i];
|
|
1605
|
-
if (
|
|
1612
|
+
if (
|
|
1613
|
+
this.$el &&
|
|
1614
|
+
ele.offsetHeight !== undefined &&
|
|
1615
|
+
ele != this.$el
|
|
1616
|
+
) {
|
|
1606
1617
|
height =
|
|
1607
1618
|
height -
|
|
1608
1619
|
ele.offsetHeight -
|
|
@@ -104,6 +104,8 @@
|
|
|
104
104
|
:placeholder="password.placeholder"
|
|
105
105
|
autocomplete="off"
|
|
106
106
|
show-password
|
|
107
|
+
@paste.native.capture="handlePaste"
|
|
108
|
+
@copy.native.capture="handlePaste"
|
|
107
109
|
>
|
|
108
110
|
<template slot="prefix">
|
|
109
111
|
<i class="es-icon-mima es-label-password"></i>
|
|
@@ -160,7 +162,7 @@
|
|
|
160
162
|
>记住密码</el-checkbox
|
|
161
163
|
>
|
|
162
164
|
<div v-show="forget" class="es-password-forget">
|
|
163
|
-
<span @click="handleForget"
|
|
165
|
+
<span @click="handleForget">修改密码</span>
|
|
164
166
|
</div>
|
|
165
167
|
</div>
|
|
166
168
|
<el-button
|
|
@@ -594,7 +596,8 @@ export default {
|
|
|
594
596
|
default: 1500
|
|
595
597
|
},
|
|
596
598
|
isScale: Boolean,
|
|
597
|
-
showIosTips: Boolean
|
|
599
|
+
showIosTips: Boolean,
|
|
600
|
+
safe: Boolean
|
|
598
601
|
},
|
|
599
602
|
computed: {
|
|
600
603
|
transform() {
|
|
@@ -799,7 +802,25 @@ export default {
|
|
|
799
802
|
copyrightBgColor: null,
|
|
800
803
|
checkCode: '',
|
|
801
804
|
showAssistance: false,
|
|
802
|
-
doAssistance: null
|
|
805
|
+
doAssistance: null,
|
|
806
|
+
safes: {
|
|
807
|
+
paste: (event) => {
|
|
808
|
+
event.preventDefault();
|
|
809
|
+
return false;
|
|
810
|
+
},
|
|
811
|
+
contextmenu: (event) => {
|
|
812
|
+
event.preventDefault();
|
|
813
|
+
return false;
|
|
814
|
+
},
|
|
815
|
+
copy: (event) => {
|
|
816
|
+
event.preventDefault();
|
|
817
|
+
return false;
|
|
818
|
+
},
|
|
819
|
+
cut: (event) => {
|
|
820
|
+
event.preventDefault();
|
|
821
|
+
return false;
|
|
822
|
+
}
|
|
823
|
+
}
|
|
803
824
|
};
|
|
804
825
|
},
|
|
805
826
|
beforeCreate() {
|
|
@@ -1617,6 +1638,9 @@ export default {
|
|
|
1617
1638
|
if (e.keyCode == 9) {
|
|
1618
1639
|
return false;
|
|
1619
1640
|
}
|
|
1641
|
+
},
|
|
1642
|
+
handlePaste(event) {
|
|
1643
|
+
this.safe && event.preventDefault();
|
|
1620
1644
|
}
|
|
1621
1645
|
},
|
|
1622
1646
|
beforeDestroy() {
|
|
@@ -9,13 +9,7 @@
|
|
|
9
9
|
round
|
|
10
10
|
></el-input>
|
|
11
11
|
<el-tabs class="es-public-search-tabs" v-model="active">
|
|
12
|
-
<el-tab-pane
|
|
13
|
-
label="综合"
|
|
14
|
-
name="0"
|
|
15
|
-
v-loading="loading"
|
|
16
|
-
element-loading-background="rgba(0, 0, 0, 0.01)"
|
|
17
|
-
element-loading-text="加载中..."
|
|
18
|
-
>
|
|
12
|
+
<el-tab-pane label="综合" name="0">
|
|
19
13
|
<el-scrollbar class="es-scrollbar">
|
|
20
14
|
<template v-for="(item, index) in types">
|
|
21
15
|
<div
|
|
@@ -69,72 +63,72 @@
|
|
|
69
63
|
</template>
|
|
70
64
|
</el-scrollbar>
|
|
71
65
|
</el-tab-pane>
|
|
72
|
-
<
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
v-show="hides.includes(item.name)"
|
|
82
|
-
>
|
|
83
|
-
<el-scrollbar
|
|
84
|
-
class="es-scrollbar es-public-search-scrollbar"
|
|
85
|
-
:infinite-scroll="
|
|
86
|
-
() => {
|
|
87
|
-
handleSearchd(item, index);
|
|
88
|
-
}
|
|
89
|
-
"
|
|
90
|
-
:infinite-scroll-disabled="disabled"
|
|
91
|
-
:infinite-scroll-immediate="false"
|
|
66
|
+
<template v-for="(item, index) in types">
|
|
67
|
+
<el-tab-pane
|
|
68
|
+
:label="item.name"
|
|
69
|
+
:name="item.id || String(index + 1)"
|
|
70
|
+
:key="item.id"
|
|
71
|
+
v-loading="loadings[item.id || String(index)]"
|
|
72
|
+
element-loading-background="rgba(0, 0, 0, 0.01)"
|
|
73
|
+
element-loading-text="加载中..."
|
|
74
|
+
v-if="!hides.includes(item.name)"
|
|
92
75
|
>
|
|
93
|
-
<
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
class="es-public-search-list-item"
|
|
103
|
-
:key="ele.id"
|
|
104
|
-
@click="handleClick(ele, item)"
|
|
105
|
-
>
|
|
106
|
-
<es-icon
|
|
107
|
-
class="es-public-search-item-icon"
|
|
108
|
-
v-bind="getIcon(ele, item)"
|
|
109
|
-
:style="setStyle(ele, index)"
|
|
110
|
-
></es-icon>
|
|
111
|
-
<div class="es-public-search-item-name">
|
|
112
|
-
{{ ele.name || ele.title || ele.text }}
|
|
113
|
-
</div>
|
|
114
|
-
<div class="es-public-search-item-texts" v-if="ele.summary">
|
|
115
|
-
{{ ele.summary }}
|
|
116
|
-
</div>
|
|
117
|
-
<div class="es-public-search-item-texts">
|
|
118
|
-
<template v-if="Array.isArray(ele.infos || ele.footer)">
|
|
119
|
-
<span
|
|
120
|
-
v-for="(text, idx) in ele.infos || ele.footer"
|
|
121
|
-
class="es-public-search-item-text"
|
|
122
|
-
:key="idx"
|
|
123
|
-
>{{ text }}</span
|
|
124
|
-
>
|
|
125
|
-
</template>
|
|
126
|
-
<template v-else>{{ ele.infos || ele.footer }}</template>
|
|
127
|
-
</div>
|
|
128
|
-
</li>
|
|
129
|
-
</ul>
|
|
130
|
-
<p
|
|
131
|
-
class="es-public-search-no-more"
|
|
132
|
-
v-if="noMore[item.id || String(index)]"
|
|
76
|
+
<el-scrollbar
|
|
77
|
+
class="es-scrollbar es-public-search-scrollbar"
|
|
78
|
+
:infinite-scroll="
|
|
79
|
+
() => {
|
|
80
|
+
handleSearchd(item, index);
|
|
81
|
+
}
|
|
82
|
+
"
|
|
83
|
+
:infinite-scroll-disabled="disabled"
|
|
84
|
+
:infinite-scroll-immediate="false"
|
|
133
85
|
>
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
86
|
+
<div class="es-public-search-info" v-show="keyWords">
|
|
87
|
+
{{ item.totalCount }}条与"<span
|
|
88
|
+
class="es-public-search-more-quote"
|
|
89
|
+
>{{ keyWords }}</span
|
|
90
|
+
>"相关的搜索结果
|
|
91
|
+
</div>
|
|
92
|
+
<ul class="es-public-search-lists">
|
|
93
|
+
<li
|
|
94
|
+
v-for="ele in item.records"
|
|
95
|
+
class="es-public-search-list-item"
|
|
96
|
+
:key="ele.id"
|
|
97
|
+
@click="handleClick(ele, item)"
|
|
98
|
+
>
|
|
99
|
+
<es-icon
|
|
100
|
+
class="es-public-search-item-icon"
|
|
101
|
+
v-bind="getIcon(ele, item)"
|
|
102
|
+
:style="setStyle(ele, index)"
|
|
103
|
+
></es-icon>
|
|
104
|
+
<div class="es-public-search-item-name">
|
|
105
|
+
{{ ele.name || ele.title || ele.text }}
|
|
106
|
+
</div>
|
|
107
|
+
<div class="es-public-search-item-texts" v-if="ele.summary">
|
|
108
|
+
{{ ele.summary }}
|
|
109
|
+
</div>
|
|
110
|
+
<div class="es-public-search-item-texts">
|
|
111
|
+
<template v-if="Array.isArray(ele.infos || ele.footer)">
|
|
112
|
+
<span
|
|
113
|
+
v-for="(text, idx) in ele.infos || ele.footer"
|
|
114
|
+
class="es-public-search-item-text"
|
|
115
|
+
:key="idx"
|
|
116
|
+
>{{ text }}</span
|
|
117
|
+
>
|
|
118
|
+
</template>
|
|
119
|
+
<template v-else>{{ ele.infos || ele.footer }}</template>
|
|
120
|
+
</div>
|
|
121
|
+
</li>
|
|
122
|
+
</ul>
|
|
123
|
+
<p
|
|
124
|
+
class="es-public-search-no-more"
|
|
125
|
+
v-if="noMore[item.id || String(index)]"
|
|
126
|
+
>
|
|
127
|
+
没有更多了
|
|
128
|
+
</p>
|
|
129
|
+
</el-scrollbar>
|
|
130
|
+
</el-tab-pane>
|
|
131
|
+
</template>
|
|
138
132
|
</el-tabs>
|
|
139
133
|
</div>
|
|
140
134
|
</template>
|
|
@@ -311,8 +305,8 @@ export default {
|
|
|
311
305
|
},
|
|
312
306
|
searchAll(keyWords) {
|
|
313
307
|
for (let i = 0; i < this.types.length; i++) {
|
|
308
|
+
let item = this.types[i];
|
|
314
309
|
if (keyWords) {
|
|
315
|
-
let item = this.types[i];
|
|
316
310
|
if (item.name == '菜单' && this.menus.length) {
|
|
317
311
|
this.isLoading = false;
|
|
318
312
|
this.types[i].records = this.searchData(this.menus, keyWords);
|
|
@@ -170,7 +170,7 @@
|
|
|
170
170
|
<div
|
|
171
171
|
class="es-simplicity-tabs-handler-item"
|
|
172
172
|
:class="{ 'is-disabled': isDisabled.other }"
|
|
173
|
-
@click="isDisabled.
|
|
173
|
+
@click="isDisabled.other ? '' : handleTabsEvents(2)"
|
|
174
174
|
>
|
|
175
175
|
关闭其他
|
|
176
176
|
</div>
|
|
@@ -285,7 +285,11 @@
|
|
|
285
285
|
<notice :data="sysMsg" :winopen="winopen" @opened="handleOpened"></notice>
|
|
286
286
|
<!-- 消息提醒 end -->
|
|
287
287
|
|
|
288
|
-
<es-dialog
|
|
288
|
+
<es-dialog
|
|
289
|
+
class="es-public-search-dialog"
|
|
290
|
+
:visible.sync="showSearch"
|
|
291
|
+
size="lg"
|
|
292
|
+
>
|
|
289
293
|
<search
|
|
290
294
|
:apps="applications"
|
|
291
295
|
:menus="menus"
|
|
@@ -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{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
|
+
@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}.es-button-group>.el-dropdown>.el-button:not(.el-button--text) .el-badge{vertical-align:unset}.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}
|