element-ui-root 2.9.9 → 3.0.2
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/dist/index.common.js +85 -44
- package/dist/index.css +1 -1
- package/dist/index.umd.js +85 -44
- package/dist/index.umd.min.js +1 -1
- package/package.json +1 -1
package/dist/index.common.js
CHANGED
|
@@ -19245,6 +19245,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19245
19245
|
"attrs": {
|
|
19246
19246
|
"clearable": true,
|
|
19247
19247
|
"filterable": true,
|
|
19248
|
+
"collapse-tags": true,
|
|
19248
19249
|
"placeholder": props.placeholder || `请选择${words}`
|
|
19249
19250
|
},
|
|
19250
19251
|
"on": {
|
|
@@ -61785,27 +61786,38 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
61785
61786
|
},
|
|
61786
61787
|
methods: {
|
|
61787
61788
|
create() {
|
|
61788
|
-
const h = this.$createElement;
|
|
61789
61789
|
let column = [...this.column, this.suffix()];
|
|
61790
|
-
return column.map((a, b) =>
|
|
61791
|
-
|
|
61792
|
-
|
|
61793
|
-
|
|
61794
|
-
|
|
61795
|
-
|
|
61796
|
-
|
|
61797
|
-
|
|
61798
|
-
|
|
61799
|
-
|
|
61800
|
-
|
|
61801
|
-
|
|
61802
|
-
|
|
61803
|
-
|
|
61804
|
-
|
|
61805
|
-
|
|
61806
|
-
|
|
61807
|
-
|
|
61808
|
-
|
|
61790
|
+
return column.map((a, b) => this.output(a, b));
|
|
61791
|
+
},
|
|
61792
|
+
output(a, b) {
|
|
61793
|
+
const h = this.$createElement;
|
|
61794
|
+
if (a && Object.keys(a).length > 0) {
|
|
61795
|
+
let {
|
|
61796
|
+
type = null,
|
|
61797
|
+
render = null,
|
|
61798
|
+
header = null,
|
|
61799
|
+
...r
|
|
61800
|
+
} = a;
|
|
61801
|
+
let child = a.children || a.child || a.node || a.list || [];
|
|
61802
|
+
let field = a.field || a.index || a.name || a.prop;
|
|
61803
|
+
let label = a.label || a.title || a.text;
|
|
61804
|
+
let props = {
|
|
61805
|
+
key: b,
|
|
61806
|
+
prop: field,
|
|
61807
|
+
scopedSlot: field,
|
|
61808
|
+
sortable: field ? a.sortable ? a.sortable : this.sortable : false,
|
|
61809
|
+
formatter: render ? render : type ? (e, f, g, h) => this.format(a, b, e, h) : null,
|
|
61810
|
+
showOverflowTooltip: a.showOverflowTooltip ? a.showOverflowTooltip : this.showOverflowTooltip,
|
|
61811
|
+
...r
|
|
61812
|
+
};
|
|
61813
|
+
if (child.length > 0) {
|
|
61814
|
+
return h("el-table-column", {
|
|
61815
|
+
"key": b,
|
|
61816
|
+
"attrs": {
|
|
61817
|
+
"label": label
|
|
61818
|
+
}
|
|
61819
|
+
}, [child.map((c, d) => this.output(c, `${b}-${d}`))]);
|
|
61820
|
+
} else {
|
|
61809
61821
|
return h("el-table-column", {
|
|
61810
61822
|
"props": {
|
|
61811
61823
|
...props
|
|
@@ -61827,7 +61839,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
61827
61839
|
}
|
|
61828
61840
|
}, [label])])]);
|
|
61829
61841
|
}
|
|
61830
|
-
}
|
|
61842
|
+
}
|
|
61831
61843
|
},
|
|
61832
61844
|
suffix() {
|
|
61833
61845
|
const h = this.$createElement;
|
|
@@ -136186,27 +136198,38 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
136186
136198
|
},
|
|
136187
136199
|
methods: {
|
|
136188
136200
|
create() {
|
|
136189
|
-
const h = this.$createElement;
|
|
136190
136201
|
let column = [...this.column, this.suffix()];
|
|
136191
|
-
return column.map((a, b) =>
|
|
136192
|
-
|
|
136193
|
-
|
|
136194
|
-
|
|
136195
|
-
|
|
136196
|
-
|
|
136197
|
-
|
|
136198
|
-
|
|
136199
|
-
|
|
136200
|
-
|
|
136201
|
-
|
|
136202
|
-
|
|
136203
|
-
|
|
136204
|
-
|
|
136205
|
-
|
|
136206
|
-
|
|
136207
|
-
|
|
136208
|
-
|
|
136209
|
-
|
|
136202
|
+
return column.map((a, b) => this.output(a, b));
|
|
136203
|
+
},
|
|
136204
|
+
output(a, b) {
|
|
136205
|
+
const h = this.$createElement;
|
|
136206
|
+
if (a && Object.keys(a).length > 0) {
|
|
136207
|
+
let {
|
|
136208
|
+
type = null,
|
|
136209
|
+
render = null,
|
|
136210
|
+
header = null,
|
|
136211
|
+
...r
|
|
136212
|
+
} = a;
|
|
136213
|
+
let child = a.children || a.child || a.node || a.list || [];
|
|
136214
|
+
let field = a.field || a.index || a.name || a.prop;
|
|
136215
|
+
let label = a.label || a.title || a.text;
|
|
136216
|
+
let props = {
|
|
136217
|
+
key: b,
|
|
136218
|
+
prop: field,
|
|
136219
|
+
scopedSlot: field,
|
|
136220
|
+
sortable: field ? a.sortable ? a.sortable : this.sortable : false,
|
|
136221
|
+
formatter: render ? render : type ? (e, f, g, h) => this.format(a, b, e, h) : null,
|
|
136222
|
+
showOverflowTooltip: a.showOverflowTooltip ? a.showOverflowTooltip : this.showOverflowTooltip,
|
|
136223
|
+
...r
|
|
136224
|
+
};
|
|
136225
|
+
if (child.length > 0) {
|
|
136226
|
+
return h("el-table-column", {
|
|
136227
|
+
"key": b,
|
|
136228
|
+
"attrs": {
|
|
136229
|
+
"label": label
|
|
136230
|
+
}
|
|
136231
|
+
}, [child.map((c, d) => this.output(c, `${b}-${d}`))]);
|
|
136232
|
+
} else {
|
|
136210
136233
|
return h("el-table-column", {
|
|
136211
136234
|
"props": {
|
|
136212
136235
|
...props
|
|
@@ -136228,7 +136251,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
136228
136251
|
}
|
|
136229
136252
|
}, [label])])]);
|
|
136230
136253
|
}
|
|
136231
|
-
}
|
|
136254
|
+
}
|
|
136232
136255
|
},
|
|
136233
136256
|
suffix() {
|
|
136234
136257
|
const h = this.$createElement;
|
|
@@ -158401,7 +158424,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
158401
158424
|
type: Boolean,
|
|
158402
158425
|
default: () => true
|
|
158403
158426
|
},
|
|
158427
|
+
padding: {
|
|
158428
|
+
type: String,
|
|
158429
|
+
default: () => '16px'
|
|
158430
|
+
},
|
|
158404
158431
|
height: {
|
|
158432
|
+
type: String,
|
|
158433
|
+
default: () => '70vh'
|
|
158434
|
+
},
|
|
158435
|
+
maxHeight: {
|
|
158405
158436
|
type: String,
|
|
158406
158437
|
default: () => '72vh'
|
|
158407
158438
|
},
|
|
@@ -158522,7 +158553,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
158522
158553
|
"key": this.visible,
|
|
158523
158554
|
"class": "a-dialog-body",
|
|
158524
158555
|
"style": {
|
|
158525
|
-
|
|
158556
|
+
padding: this.padding,
|
|
158557
|
+
height: this.height,
|
|
158558
|
+
maxHeight: this.maxHeight
|
|
158526
158559
|
}
|
|
158527
158560
|
}, [this.$slots.default]), h("div", {
|
|
158528
158561
|
"class": finish || submit || cancel ? 'a-dialog-foot' : 'a-dialog-foot custom'
|
|
@@ -162439,6 +162472,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
162439
162472
|
type: String,
|
|
162440
162473
|
default: () => ''
|
|
162441
162474
|
},
|
|
162475
|
+
margin: {
|
|
162476
|
+
type: String,
|
|
162477
|
+
default: () => '0'
|
|
162478
|
+
},
|
|
162442
162479
|
padding: {
|
|
162443
162480
|
type: String,
|
|
162444
162481
|
default: () => '20px'
|
|
@@ -162578,6 +162615,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
162578
162615
|
...props
|
|
162579
162616
|
} = this.$attrs;
|
|
162580
162617
|
return h("div", {
|
|
162618
|
+
"style": {
|
|
162619
|
+
padding: this.margin
|
|
162620
|
+
}
|
|
162621
|
+
}, [h("div", {
|
|
162581
162622
|
"attrs": {
|
|
162582
162623
|
"id": this.id
|
|
162583
162624
|
},
|
|
@@ -162645,7 +162686,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
162645
162686
|
"size": "small",
|
|
162646
162687
|
"disabled": this.loading
|
|
162647
162688
|
}
|
|
162648
|
-
}, [this.cancelText]), this.actionRender])]);
|
|
162689
|
+
}, [this.cancelText]), this.actionRender])])]);
|
|
162649
162690
|
}
|
|
162650
162691
|
});
|
|
162651
162692
|
|
package/dist/index.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
#map[data-v-7283ffa6],#map[data-v-a46f5b24]{width:1403px;height:864px}.a-actions{margin-bottom:16px}.a-breadcrumb .item{display:inline;font-size:14px;transition:all .28s}.a-card{width:100%;height:100%;overflow:hidden;border-radius:4px;transition:all .28s;font-size:16px;color:rgba(0,0,0,.6);box-shadow:0 2px 12px 0 rgba(0,0,0,.12);flex-direction:column}.a-card,.a-card .a-card-head{box-sizing:border-box;display:flex}.a-card .a-card-head{font-size:14px;font-weight:700;padding:8px 12px;border-bottom:1px solid #eee;align-items:center;justify-content:space-between}.a-card .a-card-head .a-title-body{color:rgba(0,0,0,.6)}.a-card .a-card-head .link{font-weight:lighter;cursor:pointer;font-size:12px;color:#409eff;transition:all .28s}.a-card .a-card-head .link:hover{color:#1890ff}.a-card .a-card-head .link:active{position:relative;top:1px}.a-card .a-card-body{flex:1;overflow:hidden;transition:all .28s;box-sizing:border-box;display:flex}.a-card .a-card-body .custom-body{flex:1}.a-card .a-card-body .custom-body .a-form .el-form--inline{padding:10px 0}.a-card .a-card-body .custom-body .a-form .el-form--inline .el-form-item{margin-bottom:14px}.a-card .a-card-body .custom-body .a-form .el-form--inline .el-form-item .el-form-item__label{line-height:24px}.a-card .a-card-body .custom-body .a-form .el-form--inline .action{display:inline-block;width:100%;overflow:hidden;margin-top:20px}.a-card .a-card-body .custom-body .a-form .el-form--inline .action button{width:100px;padding:8px 16px}.a-card .a-card-foot{padding:0 20px 30px 20px}.a-card .a-card-foot button{padding:8px 32px}.a-carousel{width:100%;height:100%}.a-carousel .el-carousel__item{width:100%;height:100%;background-size:100% auto;background-repeat:no-repeat;background-position:50%}.a-dialog{padding:0}.a-dialog .el-dialog{margin-top:8vh}.a-dialog .el-dialog__header{padding:4px 10px;text-align:center;background-color:#224b7f}.a-dialog .el-dialog__header .el-dialog__title{font-size:16px;color:#fff}.a-dialog .el-dialog__header .el-dialog__headerbtn{position:absolute;top:8px;right:10px}.a-dialog .el-dialog__header .el-dialog__headerbtn .el-dialog__close{color:#fff;text-shadow:1px 1px 1px #000}.a-dialog .el-dialog__body{padding:0}.a-dialog .el-dialog__body .a-dialog-body{margin:0;padding:18px;overflow-y:auto;border-bottom:1px solid #eee}.a-dialog .el-dialog__body .a-dialog-body::-webkit-scrollbar{width:8px;height:8px}.a-dialog .el-dialog__body .a-dialog-body::-webkit-scrollbar-thumb{width:8px;height:8px;border-radius:8px;background-color:rgba(0,0,0,.2)}.a-dialog .a-dialog-foot{padding:10px 0;text-align:center}.a-dialog .a-dialog-foot .el-button{border-radius:0;width:100px;padding:0 10px;height:30px;line-height:30px;font-size:14px}.a-dialog .el-dialog{position:relative;box-sizing:border-box}.a-dialog .el-dialog .a-f-editor .action{width:100%;height:48px;position:absolute;left:0;bottom:0;display:flex;align-items:center;justify-content:center}.a-dialog .el-dialog .a-f-editor .action .el-button{width:100px;padding:8px 16px}.a-dialog .el-dialog .a-f-editor .action .el-form-item{margin:0}.a-dialog .a-dialog-foot.custom{padding:24px 0}.a-drag-box{flex:1;width:100%;height:100%;flex-direction:column}.a-drag-box,.a-drag-box .a-drag-box-body{overflow:hidden;transition:all .28s;box-sizing:border-box;display:flex}.a-drag-box .a-drag-box-body,.a-drag-box .a-drag-box-body .custom-body{flex:1}.a-dropdown{cursor:pointer;transition:all .28s;color:rgba(0,0,0,.6);display:flex;align-items:center}.a-dropdown .username{display:inline-block;font-size:14px;margin:0 20px}.a-dropdown .usericon{display:inline-block}.a-dropdown .usericon .icon{width:48px;height:48px;margin:0 20px;overflow:hidden;border-radius:50%;display:flex;align-items:center;justify-content:center}.a-dropdown .usericon .icon img{width:100%}.a-dropdown .el-dropdown-link.el-dropdown-selfdefine{font-size:14px;transition:all .28s}.a-dropdown .el-dropdown-link.el-dropdown-selfdefine:hover,.a-dropdown.opened .el-dropdown-link.el-dropdown-selfdefine{color:#66b1ff;transition:all .28s}.el-dropdown-menu__item{font-size:12px}.a-dropdown .horizontal .el-dropdown-link.el-dropdown-selfdefine{color:hsla(0,0%,100%,.7)}.a-icon-select-list{height:220px;overflow-y:auto}.a-icon-select-list::-webkit-scrollbar{width:8px;height:8px}.a-icon-select-list::-webkit-scrollbar-thumb{width:8px;border-radius:8px;background-color:#ccc}.a-icon-select-list .item{padding:4px;margin:4px;cursor:pointer;border:1px solid #fff}.a-icon-select-list .item:hover i{color:#87ceeb}.a-icon-select-list .item.active i{color:#00f}.a-f-editor{width:100%;overflow:hidden}.a-f-editor .el-col{margin:0}.a-f-editor .hint{font-size:12px;color:rgba(0,0,0,.6)}.a-f-editor .action{display:inline}.a-f-editor.vertical .el-form-item__label{line-height:24px;padding-bottom:0}.a-f-editor.vertical .el-form-item{margin-bottom:16px}.a-f-editor.vertical .el-form-item .el-form-item__content{line-height:3}.a-f-editor.vertical .action .el-button{min-width:100px;margin-top:12px;margin-bottom:12px}.a-f-editor .el-form-item.is-error.is-required .w-e-toolbar{border-color:#f56c6c;border-bottom:1px solid #eee}.a-f-editor .el-form-item.is-error.is-required .w-e-text-container{border-color:#f56c6c}.a-f-editor .disabled .el-form-item .el-form-item__content .el-input.is-disabled .el-input__inner{color:rgba(0,0,0,.6);border:1px solid #eee}.a-f-editor .el-form-item .el-form-item__content .el-input.is-disabled .el-input__inner::-moz-placeholder{opacity:0}.a-f-editor .el-form-item .el-form-item__content .el-input.is-disabled .el-input__inner::placeholder{opacity:0}.a-f-search{box-sizing:border-box}.a-f-search .el-form{display:flex}.a-f-search .el-form .el-form-item{margin-bottom:16px}.a-f-search .el-form .el-form-item .el-form-item__content{line-height:3}.a-f-search .el-form .column{flex:1}.a-f-search .el-form .column .fold-row{overflow:hidden;transition:all .28s}.a-f-search .el-form .column .el-row .el-form-item .el-form-item__content .el-input{width:100%}.a-f-search .el-form .column .el-row .el-form-item .el-form-item__content .range-cols,.a-f-search .el-form .column .el-row .el-form-item .el-form-item__content .range-cols .el-col{padding:0;margin:0}.a-f-search .el-form .column .el-row .el-form-item .el-form-item__content .range-cols .el-col:last-child{padding-left:4px}.a-f-search .el-form .column .el-row .el-form-item .el-form-item__content .range-cols .el-col:first-child{padding-right:4px}.a-f-search .el-form--label-top .el-form-item .el-form-item__label{padding:4px 0;line-height:normal}.a-f-search .el-form--label-top .column .el-row .el-col{margin:0}.a-f-search .el-form--label-top .action .el-form-item__label{visibility:hidden}.a-f-search .el-form--label-left .action .el-form-item__label{display:none}.a-f-search .el-form--label-left .action .el-form-item__content{margin-left:0}.b-f-search{box-sizing:border-box}.b-f-search .el-form{display:flex}.b-f-search .el-form .el-form-item{margin-bottom:16px}.b-f-search .el-form .el-form-item .el-form-item__content{line-height:3}.b-f-search .el-form .column{flex:1}.b-f-search .el-form .column .fold-row{overflow:hidden;transition:all .28s}.b-f-search .el-form .column .el-row .el-form-item .el-form-item__content .el-input{width:100%}.b-f-search .el-form .column .el-row .el-form-item .el-form-item__content .range-cols,.b-f-search .el-form .column .el-row .el-form-item .el-form-item__content .range-cols .el-col{padding:0;margin:0}.b-f-search .el-form .column .el-row .el-form-item .el-form-item__content .range-cols .el-col:last-child{padding-left:4px}.b-f-search .el-form .column .el-row .el-form-item .el-form-item__content .range-cols .el-col:first-child{padding-right:4px}.b-f-search .el-form--label-top .el-form-item .el-form-item__label{padding:4px 0;line-height:normal}.b-f-search .el-form--label-top .column .el-row .el-col{margin:0}.b-f-search .el-form--label-top .action .el-form-item__label{visibility:hidden}.b-f-search .el-form--label-left .action .el-form-item__label{display:none}.b-f-search .el-form--label-left .action .el-form-item__content{margin-left:0}.c-f-search{box-sizing:border-box;overflow:hidden;color:#666}.c-f-search .el-form .el-form-item{margin-bottom:16px}.c-f-search .el-form .el-form-item .el-form-item__content{line-height:3}.c-f-search .el-form--label-left{overflow:hidden}.c-f-search .el-form--label-left .column,.c-f-search .el-form--label-left .column .el-col{margin:0}.c-f-search .el-form--label-left .el-form-item{overflow:hidden;display:flex;padding:0 10px 10px 10px}.c-f-search .el-form--label-left .column .el-form-item .el-form-item__label-wrap .el-form-item__label{padding-right:4px}.c-f-search .el-form--label-left .column .el-form-item .el-form-item__content{flex:1}.c-f-search .el-form--label-left .column .el-form-item .el-form-item__content .el-input{width:100%}.c-f-search .el-form--label-left .column .el-form-item .el-form-item__content .range-cols{box-sizing:border-box;width:100%}.c-f-search .el-form--label-left .column .el-form-item .el-form-item__content .range-cols .el-col:last-child{padding-left:2px}.c-f-search .el-form--label-left .column .el-form-item .el-form-item__content .range-cols .el-col:first-child{padding-right:2px}.c-f-search .el-form--label-left .action{display:inline}.c-f-search .el-form--label-left .action .el-form-item .el-form-item__label{display:none}.c-f-search .el-form--label-top .el-form-item{overflow:hidden}.c-f-search .el-form--label-top .el-form-item .el-form-item__label{line-height:normal;padding:4px 0}.action,.c-f-search .el-form--label-top .column,.c-f-search .el-form--label-top .column .el-col{margin:0}.c-f-search .el-form--label-top .column .el-form-item{box-sizing:border-box;width:100%}.c-f-search .el-form--label-top .column .el-form-item .el-form-item__content{width:100%}.c-f-search .el-form--label-top .column .el-form-item .el-form-item__content .range-cols .el-col:last-child{padding-left:2px}.c-f-search .el-form--label-top .column .el-form-item .el-form-item__content .range-cols .el-col:first-child{padding-right:2px}.c-f-search .el-form--label-top .column .el-form-item .el-form-item__content .el-input{width:100%}.c-f-search .el-form--label-top .action,.c-f-search .el-form--label-top .action .el-form-item{margin:0}.c-f-search .el-form--label-top .action .el-form-item .el-form-item__label{visibility:hidden}.a-form{width:100%}.a-form .action{display:inline}.el-textarea textarea{resize:none;height:84px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol}.a-from.vertical .el-form-item__label{line-height:24px;padding-bottom:0}.a-from.vertical .el-form-item{margin-bottom:16px}.a-from.vertical .el-form-item .el-form-item__content{line-height:3}.a-from.vertical .action .el-button{min-width:100px;margin-top:12px;margin-bottom:12px}.a-from .el-form-item.is-error.is-required .w-e-toolbar{border-color:#f56c6c;border-bottom:1px solid #eee}.a-from .el-form-item.is-error.is-required .w-e-text-container{border-color:#f56c6c}.a-menu{margin:0;padding:0}.a-menu .el-menu{border:0;background-color:#001529}.a-menu .el-menu:not(.el-menu--collapse){width:100%}.a-menu .el-menu .el-menu-item,.el-submenu__title{height:48px;line-height:48px;text-shadow:1px 1px 1px #000;transition:all .28s}.a-menu .el-menu .el-menu-item:hover{color:#fff;background-color:transparent;transition:all .28s}.a-menu .el-menu .el-menu-item:focus,.a-menu .el-menu .el-menu-item:hover{background-color:transparent}.a-menu .el-menu .el-menu-item:hover i{color:#fff;transition:all .28s}.a-menu .el-menu .el-submenu__title:hover{color:#fff;background-color:transparent;transition:all .28s}.a-menu .el-menu .el-submenu__title:hover i{color:#fff;transition:all .28s}.a-menu .el-menu .el-menu-item.is-active{background-color:#1890ff;transition:all .28s}.a-menu .el-menu .el-submenu.is-active>div.el-submenu__title,.a-menu .el-menu .el-submenu.is-active>div.el-submenu__title i{color:#fff;transition:all .28s}.a-menu .el-menu .el-menu.el-menu--inline,.el-menu.el-menu--popup.el-menu--popup-right-start{background-color:#000}.el-menu.el-menu--popup.el-menu--popup-right-start .el-menu-item,.el-submenu__title{height:48px;line-height:48px}.el-menu.el-menu--popup.el-menu--popup-right-start .el-menu-item:hover,.el-menu.el-menu--popup.el-menu--popup-right-start .el-submenu__title:hover{color:#fff;background-color:#1890ff}.a-menu.horizontal .el-menu.el-menu--horizontal{border-bottom:none}.a-menu.horizontal .el-menu.el-menu--horizontal .el-menu-item,.el-submenu__title{line-height:60px;height:60px;border-bottom:0}.a-menu.horizontal .el-menu.el-menu--horizontal .el-menu-item.is-active{border:none}.el-menu--horizontal .el-submenu.is-active .el-submenu__title{border-bottom:3px 3px solid #1890ff}.el-menu--horizontal .el-menu.el-menu--popup{background-color:transparent}.el-menu--horizontal .el-menu.el-menu--popup .el-menu-item{height:44px;line-height:44px;background-color:rgba(0,0,0,.7)}.el-menu--horizontal .el-menu.el-menu--popup .el-menu-item:hover{color:#fff;background-color:rgba(0,0,0,.9)}.el-menu--horizontal .el-menu.el-menu--popup .el-menu-item.is-active{color:#fff;background-color:#1890ff}.el-menu--horizontal .el-menu.el-menu--popup .el-submenu .el-submenu__title{color:hsla(0,0%,100%,.65);text-shadow:none;height:44px;line-height:44px;background:rgba(0,0,0,.7)}.el-menu--horizontal .el-menu.el-menu--popup .el-submenu .el-submenu__title:hover{color:#fff;background-color:rgba(0,0,0,.9)}.a-modal .el-dialog{margin-top:8vh}.a-modal .el-dialog__header{padding:4px 10px;text-align:center;background-color:#224b7f}.a-modal .el-dialog__header .el-dialog__title{font-size:16px;color:#fff;font-weight:700;text-shadow:1px 1px 1px #000}.a-modal .el-dialog__header .el-dialog__headerbtn{position:absolute;top:8px;right:10px}.a-modal .el-dialog__header .el-dialog__headerbtn .el-dialog__close{color:#fff;text-shadow:1px 1px 1px #000}.a-modal .el-dialog__body{margin:0;padding:0}.a-modal .a-modal-body{margin:0;max-height:60vh;overflow-y:auto;padding:10px 20px;border-bottom:1px solid #eee}.a-modal .a-modal-body .el-form-item .el-form-item__label{padding:0}.a-modal .a-modal-body::-webkit-scrollbar{width:8px;height:8px}.a-modal .a-modal-body::-webkit-scrollbar-thumb{width:8px;border-radius:8px;cursor:pointer;background-color:rgba(0,0,0,.2)}.a-modal .a-modal-foot{padding:14px 0;text-align:center}.a-modal .a-modal-foot .el-button{border-radius:0;width:100px;padding:0 10px;height:30px;line-height:30px;font-size:16px}.a-modal .el-dialog{position:relative;box-sizing:border-box}.a-modal .el-dialog .action{width:100%;height:60px;position:absolute;left:0;bottom:0;display:flex;align-items:center;justify-content:center}.a-modal .el-dialog .action .el-button{width:100px;padding:8px 16px}.a-modal .el-dialog .action .el-form-item{margin:0}.a-modal .a-modal-foot.custom{height:60px;padding:0;display:flex;align-items:center;justify-content:center}.a-modal.loading{pointer-events:none}.a-page{width:100%;text-align:right;margin:16px 0 0 0}.a-popconfirm{display:inline}.el-popconfirm__action{display:flex;justify-content:space-between}.el-popconfirm__action .el-button{width:60px}.a-popover .action{text-align:right;margin:0}.a-reminder{margin:0 24px}.a-reminder i{font-size:24px;color:#aaa;cursor:pointer}.a-reminder:hover i{color:#1890ff}.a-reminder i:active{position:relative;top:1px}.transition-enter-active,.transition-leave-active{transition:opacity .28s}.transition-enter,.transition-leave-to{opacity:0}.a-router-view>div>div{animation:aRouterView .28s linear}@keyframes aRouterView{0%{opacity:0;transform:translateY(-100%)}}.a-scroll-box{width:100%}.a-scroll-box .a-scroll-box-main{width:100%;overflow-x:auto;overflow-y:hidden;white-space:nowrap}.a-scroll-box .a-scroll-box-main::-webkit-scrollbar{width:8px;height:8px}.a-scroll-box .a-scroll-box-main::-webkit-scrollbar-thumb{width:8px;height:8px;border-radius:4px;background-color:rgba(0,0,0,.2)}.a-scroll-table{width:100%}.a-scroll-table .inner{display:inline-block}.a-scroll-table .inner .el-button{cursor:pointer}.a-scroll-table .el-table th{background-color:#f8f8f9;padding:6px 0}.a-scroll-table .el-table th .cell{white-space:nowrap}.a-scroll-table .el-table td{padding:6px 0}.a-scroll-table .el-table td input{height:32px;padding:0 0 0 6px}.a-scroll-table .el-table thead{color:#515a6e}.a-scroll-table .el-table__fixed-right-patch{background-color:#f8f8f9}.a-scroll-table .el-table{box-shadow:0 0 1px #eee;border-top:1px solid #eee;border-left:1px solid #eee;border-right:1px solid #eee}.a-scroll-table .el-table .el-button{padding:0 4px;min-width:60px;font-size:12px;min-height:24px;border-radius:4px;line-height:24px;margin:0 4px}.a-scroll-table .el-table .el-icon-edit{width:48px;color:#409eff;font-size:22px;cursor:pointer;transition:all .28s}.a-scroll-table .el-table .el-icon-edit:hover{transition:all .28s;color:#00f}.a-scroll-table .el-table .el-icon-edit:active{position:relative;top:1px}.a-scroll-table .el-table .el-icon-delete{width:48px;color:#f56c6c;font-size:22px;cursor:pointer;transition:all .28s}.a-scroll-table .el-table .el-icon-delete:hover{transition:all .28s;color:red}.a-scroll-table .el-table .el-icon-delete:active{position:relative;top:1px}.a-scroll-table .el-table .action i{width:48px;font-size:22px;cursor:pointer}.a-scroll-table .el-table .action i:active{position:relative;top:1px}.a-scroll-table .el-table .action i.el-icon-success{color:#13ce66}.a-scroll-table .el-table .action i.el-icon-view{color:orange}.a-scroll-table .el-table .cell.el-tooltip img{margin:0 auto;height:28px}.a-scroll-table .el-table .cell.el-tooltip .el-input__inner{border:none;height:23px;line-height:23px}.a-scroll-table .el-table .cell.el-tooltip .disabled{pointer-events:none}.a-square{position:relative}.a-square .null{padding-bottom:100%}.a-square .main{position:absolute;top:0;width:100%;height:100%}.a-table{width:100%}.a-table.border .el-table{border-top:1px solid #ebeef5;border-left:1px solid #ebeef5;border-right:1px solid #ebeef5}.a-table .inner{display:inline-block}.a-table .inner .el-button{cursor:pointer}.a-table .el-table th{background-color:#f8f8f9;padding:6px 0}.a-table .el-table th .cell{white-space:nowrap}.a-table.border .el-table th.el-table__cell>.cell{padding-left:14px}.a-table .el-table td{padding:6px 0}.a-table .el-table td input{height:32px;padding:0 0 0 6px}.a-table .el-table thead{color:#515a6e}.a-table .el-table__fixed-right-patch{background-color:#f8f8f9}.a-table .el-table .action .el-button{padding:0 4px;min-width:48px;font-size:12px;min-height:24px;border-radius:4px;line-height:24px;margin:0 4px}.a-table .el-table .action .el-button.el-button--text{padding:0;margin:0}.a-table .el-table .el-icon-edit{width:48px;color:#409eff;font-size:22px;cursor:pointer;transition:all .28s}.a-table .el-table .el-icon-edit:hover{transition:all .28s;color:#00f}.a-table .el-table .el-icon-edit:active{position:relative;top:1px}.a-table .el-table .el-icon-delete{width:48px;color:#f56c6c;font-size:22px;cursor:pointer;transition:all .28s}.a-table .el-table .el-icon-delete:hover{transition:all .28s;color:red}.a-table .el-table .el-icon-delete:active{position:relative;top:1px}.a-table .el-table .action i{width:48px;font-size:22px;cursor:pointer}.a-table .el-table .action i:active{position:relative;top:1px}.a-table .el-table .action i.el-icon-success{color:#13ce66}.a-table .el-table .action i.el-icon-view{color:orange}.a-table .el-table .cell.el-tooltip img{margin:0 auto;height:28px}.a-table .el-table .cell.el-tooltip .el-input__inner{border:none;height:23px;line-height:23px}.a-table .el-table .cell.el-tooltip .disabled{pointer-events:none}.a-table .el-table .el-loading-spinner{font-size:28px}.a-tags{width:100%;overflow:hidden;box-sizing:border-box}.a-tags #a-tags-container{padding:8px 0}.a-tags #a-tags-container .el-tag:first-child{margin-left:4px}.a-tags #a-tags-container .el-tag:last-child{margin-right:4px}.a-tags #a-tags-container .el-tag{cursor:pointer;margin:0 2px}.a-tags #a-tags-container .el-tag:hover{color:#fff;background-color:#1890ff}.a-tags #a-tags-container .el-tag:hover i{color:#fff;background-color:#f56c6c}.a-tags #a-tags-container .el-tag.active{color:#fff;background-color:#1890ff}.a-tags #a-tags-container .el-tag.active i{color:#fff}.a-tags #a-tags-container::-webkit-scrollbar{height:8px}.a-tags #a-tags-container::-webkit-scrollbar-thumb{height:8px;border-radius:10px;background-color:#ccc}.a-tian-map .a-tian-map-main{width:100%;height:100%}.a-tian-map .a-tian-map-main .tdt-bottom.tdt-left{display:none}.a-title{width:100%}.a-title .a-title-body{box-sizing:border-box;font-size:1em;padding:4px 0;width:100%;display:flex;align-items:center;justify-content:space-between}.a-title .a-title-body .link{cursor:pointer;font-size:.8em;transition:all .28s;color:rgba(0,0,0,.5)}.a-title .a-title-body .link:hover{color:#409eff;transition:all .28s}.a-title .a-title-body .link .icon{font-family:新宋体}.a-transfer .a-transfer-rows{display:flex;flex-direction:row}.a-transfer .a-transfer-rows>div{padding:0 8px}.a-transfer .el-transfer-panel{width:42%}.a-transfer .el-transfer__buttons{box-sizing:border-box;width:16%;padding:20px;display:inline-flex;justify-content:space-between}.a-transfer .el-transfer__buttons .el-button{margin:0}.b-card .el-card .el-card__header{padding:8px 20px}.b-card .el-card .el-card__header .clearfix .el-button{float:right;padding:3px 0;font-size:12px}.a-map{width:100%;height:60vh}.a-map .amap-logo{opacity:0;display:none}.a-map .icon{display:flex;flex-direction:column;align-items:center;z-index:1000}.a-map .icon img{width:32px}.a-map .site-icon{z-index:0}.a-map .site-icon img{width:24px}.a-map .icon .point{position:relative}.a-map .icon .point .node{width:8px;height:8px;border-radius:50%;background-color:#ffe42d}.a-map .icon .point div[class^=step]{position:absolute;transform:translate(-50%,-50%);top:50%;left:50%;width:8px;height:8px;border-radius:50%;box-shadow:0 0 12px #ffe42d;animation:step 1.5s linear 2s infinite}.a-map .icon .point div.step2{animation-delay:4s}@keyframes step{to{width:50px;height:50px;opacity:0}}.a-map .amap-marker-label{border:0;opacity:0;padding:8px;font-size:16px;color:#fff;border-radius:4px;background-color:rgba(0,0,0,.5);transition:all .2s}.a-map .amap-marker:hover .amap-marker-label{opacity:1;transition:all .2s}.b-table{width:100%}.b-table.border .el-table{border-top:1px solid #ebeef5;border-left:1px solid #ebeef5;border-right:1px solid #ebeef5}.b-table .inner{display:inline-block}.b-table .inner .el-button{cursor:pointer}.b-table .el-table th{background-color:#f8f8f9;padding:6px 0}.b-table .el-table th .cell{white-space:nowrap}.b-table.border .el-table th.el-table__cell>.cell{padding-left:14px}.b-table .el-table td{padding:6px 0}.b-table .el-table td input{height:32px;padding:0 0 0 6px}.b-table .el-table thead{color:#515a6e}.b-table .el-table__fixed-right-patch{background-color:#f8f8f9}.b-table .el-table .action .el-button{padding:0 4px;min-width:48px;font-size:12px;min-height:24px;border-radius:4px;line-height:24px;margin:0 4px}.b-table .el-table .action .el-button.el-button--text{padding:0;margin:0}.b-table .el-table .el-icon-edit{width:48px;color:#409eff;font-size:22px;cursor:pointer;transition:all .28s}.b-table .el-table .el-icon-edit:hover{transition:all .28s;color:#00f}.b-table .el-table .el-icon-edit:active{position:relative;top:1px}.b-table .el-table .el-icon-delete{width:48px;color:#f56c6c;font-size:22px;cursor:pointer;transition:all .28s}.b-table .el-table .el-icon-delete:hover{transition:all .28s;color:red}.b-table .el-table .el-icon-delete:active{position:relative;top:1px}.b-table .el-table .action i{width:48px;font-size:22px;cursor:pointer}.b-table .el-table .action i:active{position:relative;top:1px}.b-table .el-table .action i.el-icon-success{color:#13ce66}.b-table .el-table .action i.el-icon-view{color:orange}.b-table .el-table .cell.el-tooltip img{margin:0 auto;height:28px}.b-table .el-table .cell.el-tooltip .el-input__inner{border:none;height:23px;line-height:23px}.b-table .el-table .cell.el-tooltip .disabled{pointer-events:none}.b-table .el-table .el-loading-spinner{font-size:28px}.c-table{width:100%}.c-table .inner{display:inline-block}.c-table .inner .el-button{cursor:pointer}.c-table .el-table th{background-color:#f8f8f9;padding:6px 0}.c-table .el-table th .cell{white-space:nowrap}.c-table .el-table td{padding:6px 0}.c-table .el-table td input{height:32px;padding:0 0 0 6px}.c-table .el-table thead{color:#515a6e}.c-table .el-table__fixed-right-patch{background-color:#f8f8f9}.c-table .el-table{box-shadow:0 0 1px #eee;border-top:1px solid #eee;border-left:1px solid #eee;border-right:1px solid #eee}.c-table .el-table .el-button{padding:0 4px;min-width:60px;font-size:12px;min-height:24px;border-radius:4px;line-height:24px;margin:0 4px}.c-table .el-table .el-icon-edit{width:48px;color:#409eff;font-size:22px;cursor:pointer;transition:all .28s}.c-table .el-table .el-icon-edit:hover{transition:all .28s;color:#00f}.c-table .el-table .el-icon-edit:active{position:relative;top:1px}.c-table .el-table .el-icon-delete{width:48px;color:#f56c6c;font-size:22px;cursor:pointer;transition:all .28s}.c-table .el-table .el-icon-delete:hover{transition:all .28s;color:red}.c-table .el-table .el-icon-delete:active{position:relative;top:1px}.c-table .el-table .action i{width:48px;font-size:22px;cursor:pointer}.c-table .el-table .action i:active{position:relative;top:1px}.c-table .el-table .action i.el-icon-success{color:#13ce66}.c-table .el-table .action i.el-icon-view{color:orange}.c-table .el-table .cell.el-tooltip img{margin:0 auto;height:28px}.c-table .el-table .cell.el-tooltip .el-input__inner{border:none;height:23px;line-height:23px}.c-table .el-table .cell.el-tooltip .disabled{pointer-events:none}.a-e-map,.a-echarts,.b-e-map,.c-e-map{width:100%;height:100%}.wang-editor{width:100%;overflow:hidden}.wang-editor .w-e-text::-webkit-scrollbar{width:8px;height:8px}.wang-editor .w-e-text::-webkit-scrollbar-thumb{width:8px;height:8px;border-radius:8px;background-color:rgba(0,0,0,.2)}.a-tree{min-height:380px}.a-tree .filter{width:280px}.a-tree .filter .el-input__inner{border-radius:0;padding:0 8px}.a-tree .last-rows{white-space:normal}.a-upload-file,.a-upload-file>div{margin:0 auto;display:inline}.a-upload-file .el-upload{margin:0 10px;display:inline}.a-upload-file.hide-file-list .el-upload-list{display:none}.a-upload-icon{width:100%}.a-upload-icon .single{cursor:pointer;position:relative}.a-upload-icon .single,.a-upload-icon .single .el-upload{width:160px;height:120px;display:flex;align-items:center;justify-content:center}.a-upload-icon .single .el-upload .icon{width:100%;display:flex;align-items:center;justify-content:center}.a-upload-icon .single .delete{background-color:rgba(0,0,0,.4);visibility:hidden;height:100%;width:100%;opacity:0;transition:all .28s;position:absolute;top:0}.a-upload-icon .single:hover .delete{transition:all .46s;visibility:visible;opacity:1;display:flex;align-items:center;justify-content:center}.a-upload-icon .single:hover .delete i{font-size:48px;color:#fff;text-shadow:1px 1px 1px #000}.b-dialog{padding:0}.b-dialog .el-dialog__header{padding:4px 10px;text-align:center;background-color:#224b7f}.b-dialog .el-dialog__header .el-dialog__title{font-size:16px;color:#fff;font-weight:700;text-shadow:1px 1px 1px #000}.b-dialog .el-dialog__header .el-dialog__headerbtn{position:absolute;top:8px;right:10px}.b-dialog .el-dialog__header .el-dialog__headerbtn .el-dialog__close{color:#fff;text-shadow:1px 1px 1px #000}.b-dialog .el-dialog__body{padding:0}.b-dialog .el-dialog__body .b-dialog-body{margin:0;max-height:60vh;padding:10px 20px;overflow-y:auto;border-bottom:1px solid #eee}.b-dialog .el-dialog__body .b-dialog-body::-webkit-scrollbar{width:8px;height:8px}.b-dialog .el-dialog__body .b-dialog-body::-webkit-scrollbar-thumb{width:8px;height:8px;border-radius:8px;background-color:rgba(0,0,0,.2)}.b-dialog .b-dialog-foot{padding:14px 0;text-align:center}.b-dialog .b-dialog-foot .el-button{border-radius:0;width:100px;padding:0 10px;height:30px;line-height:30px;font-size:14px}.b-dialog .el-dialog{position:relative;box-sizing:border-box}.b-dialog .el-dialog .a-f-editor .action{width:100%;height:48px;position:absolute;left:0;bottom:0;display:flex;align-items:center;justify-content:center}.b-dialog .el-dialog .a-f-editor .action .el-button{width:100px;padding:8px 16px}.b-dialog .el-dialog .a-f-editor .action .el-form-item{margin:0}.b-dialog .b-dialog-foot.custom{padding:24px 0}.a-player .a-player-body{opacity:0;width:100vw;height:100vh;visibility:hidden;transition:all .28s;background-color:rgba(0,0,0,.4);position:fixed;z-index:1000;bottom:0;right:0;left:0;top:0}.a-player .a-player-body.visible{opacity:1;visibility:visible;transition:all .28s}.a-player .a-player-body .a-player-main{width:100%;height:100%;display:flex;align-items:center;justify-content:center}.a-player .a-player-body .a-player-main .a-player-main-container{position:relative}.a-player .a-player-body .a-player-main .a-player-main-container video{border:none;outline:none;background-color:#fff}.a-player .a-player-body .a-player-main .a-player-main-container .close{position:absolute;z-index:1000;right:6px;top:6px;width:36px;height:36px;opacity:.8;font-size:16px;cursor:pointer;border-radius:50%;transition:all .28s;display:flex;align-items:center;justify-content:center}.a-player .a-player-body .a-player-main .a-player-main-container .close i{font-weight:700}.a-player .a-player-body .a-player-main .a-player-main-container .close:hover{opacity:1;color:#fff;transition:all .28s;background-color:rgba(0,0,0,.7)}.a-player .play-button{width:32px;height:18px;font-size:18px;cursor:pointer;transition:all .28s;color:#409eff;text-shadow:1px 1px 1px #000;border:1px solid #409eff;display:flex;align-items:center;justify-content:center}.a-player .play-button:hover{transition:all .28s;color:#fff;background-color:#409eff}.a-player .play-button:active{position:relative;top:1px}.b-tree{min-height:380px}.last-rows{white-space:normal}
|
|
1
|
+
#map[data-v-7283ffa6],#map[data-v-a46f5b24]{width:1403px;height:864px}.a-actions{margin-bottom:16px}.a-breadcrumb .item{display:inline;font-size:14px;transition:all .28s}.a-card{width:100%;height:100%;overflow:hidden;border-radius:4px;transition:all .28s;font-size:16px;color:rgba(0,0,0,.6);box-shadow:0 2px 12px 0 rgba(0,0,0,.12);flex-direction:column}.a-card,.a-card .a-card-head{box-sizing:border-box;display:flex}.a-card .a-card-head{font-size:14px;font-weight:700;padding:8px 12px;border-bottom:1px solid #eee;align-items:center;justify-content:space-between}.a-card .a-card-head .a-title-body{color:rgba(0,0,0,.6)}.a-card .a-card-head .link{font-weight:lighter;cursor:pointer;font-size:12px;color:#409eff;transition:all .28s}.a-card .a-card-head .link:hover{color:#1890ff}.a-card .a-card-head .link:active{position:relative;top:1px}.a-card .a-card-body{flex:1;overflow:hidden;transition:all .28s;box-sizing:border-box;display:flex}.a-card .a-card-body .custom-body{flex:1}.a-card .a-card-body .custom-body .a-form .el-form--inline{padding:10px 0}.a-card .a-card-body .custom-body .a-form .el-form--inline .el-form-item{margin-bottom:14px}.a-card .a-card-body .custom-body .a-form .el-form--inline .el-form-item .el-form-item__label{line-height:24px}.a-card .a-card-body .custom-body .a-form .el-form--inline .action{display:inline-block;width:100%;overflow:hidden;margin-top:20px}.a-card .a-card-body .custom-body .a-form .el-form--inline .action button{width:100px;padding:8px 16px}.a-card .a-card-foot{padding:0 20px 30px 20px}.a-card .a-card-foot button{padding:8px 32px}.a-carousel{width:100%;height:100%}.a-carousel .el-carousel__item{width:100%;height:100%;background-size:100% auto;background-repeat:no-repeat;background-position:50%}.a-dialog{padding:0}.a-dialog .el-dialog{margin-top:8vh}.a-dialog .el-dialog__header{padding:4px 10px;text-align:center;background-color:#224b7f}.a-dialog .el-dialog__header .el-dialog__title{font-size:16px;color:#fff}.a-dialog .el-dialog__header .el-dialog__headerbtn{position:absolute;top:8px;right:10px}.a-dialog .el-dialog__header .el-dialog__headerbtn .el-dialog__close{color:#fff;text-shadow:1px 1px 1px #000}.a-dialog .el-dialog__body{padding:0}.a-dialog .el-dialog__body .a-dialog-body{margin:0;border-bottom:1px solid #eee}.a-dialog .el-dialog__body .a-dialog-body::-webkit-scrollbar{width:8px;height:8px}.a-dialog .el-dialog__body .a-dialog-body::-webkit-scrollbar-thumb{width:8px;height:8px;border-radius:8px;background-color:rgba(0,0,0,.2)}.a-dialog .a-dialog-foot{padding:10px 0;text-align:center}.a-dialog .a-dialog-foot .el-button{border-radius:0;width:100px;padding:0 10px;height:30px;line-height:30px;font-size:14px}.a-dialog .el-dialog{position:relative;box-sizing:border-box}.a-dialog .el-dialog .a-f-editor .action{width:100%;height:48px;position:absolute;left:0;bottom:0;display:flex;align-items:center;justify-content:center}.a-dialog .el-dialog .a-f-editor .action .el-button{width:100px;padding:8px 16px}.a-dialog .el-dialog .a-f-editor .action .el-form-item{margin:0}.a-dialog .a-dialog-foot.custom{padding:24px 0}.a-drag-box{flex:1;width:100%;height:100%;flex-direction:column}.a-drag-box,.a-drag-box .a-drag-box-body{overflow:hidden;transition:all .28s;box-sizing:border-box;display:flex}.a-drag-box .a-drag-box-body,.a-drag-box .a-drag-box-body .custom-body{flex:1}.a-dropdown{cursor:pointer;transition:all .28s;color:rgba(0,0,0,.6);display:flex;align-items:center}.a-dropdown .username{display:inline-block;font-size:14px;margin:0 20px}.a-dropdown .usericon{display:inline-block}.a-dropdown .usericon .icon{width:48px;height:48px;margin:0 20px;overflow:hidden;border-radius:50%;display:flex;align-items:center;justify-content:center}.a-dropdown .usericon .icon img{width:100%}.a-dropdown .el-dropdown-link.el-dropdown-selfdefine{font-size:14px;transition:all .28s}.a-dropdown .el-dropdown-link.el-dropdown-selfdefine:hover,.a-dropdown.opened .el-dropdown-link.el-dropdown-selfdefine{color:#66b1ff;transition:all .28s}.el-dropdown-menu__item{font-size:12px}.a-dropdown .horizontal .el-dropdown-link.el-dropdown-selfdefine{color:hsla(0,0%,100%,.7)}.a-icon-select-list{height:220px;overflow-y:auto}.a-icon-select-list::-webkit-scrollbar{width:8px;height:8px}.a-icon-select-list::-webkit-scrollbar-thumb{width:8px;border-radius:8px;background-color:#ccc}.a-icon-select-list .item{padding:4px;margin:4px;cursor:pointer;border:1px solid #fff}.a-icon-select-list .item:hover i{color:#87ceeb}.a-icon-select-list .item.active i{color:#00f}.a-f-editor{width:100%;overflow:hidden}.a-f-editor .el-col{margin:0}.a-f-editor .hint{font-size:12px;color:rgba(0,0,0,.6)}.a-f-editor .action{display:inline}.a-f-editor.vertical .el-form-item__label{line-height:24px;padding-bottom:0}.a-f-editor.vertical .el-form-item{margin-bottom:16px}.a-f-editor.vertical .el-form-item .el-form-item__content{line-height:3}.a-f-editor.vertical .action .el-button{min-width:100px;margin-top:12px;margin-bottom:12px}.a-f-editor .el-form-item.is-error.is-required .w-e-toolbar{border-color:#f56c6c;border-bottom:1px solid #eee}.a-f-editor .el-form-item.is-error.is-required .w-e-text-container{border-color:#f56c6c}.a-f-editor .disabled .el-form-item .el-form-item__content .el-input.is-disabled .el-input__inner{color:rgba(0,0,0,.6);border:1px solid #eee}.a-f-editor .el-form-item .el-form-item__content .el-input.is-disabled .el-input__inner::-moz-placeholder{opacity:0}.a-f-editor .el-form-item .el-form-item__content .el-input.is-disabled .el-input__inner::placeholder{opacity:0}.a-f-search{box-sizing:border-box}.a-f-search .el-form{display:flex}.a-f-search .el-form .el-form-item{margin-bottom:16px}.a-f-search .el-form .el-form-item .el-form-item__content{line-height:3}.a-f-search .el-form .column{flex:1}.a-f-search .el-form .column .fold-row{overflow:hidden;transition:all .28s}.a-f-search .el-form .column .el-row .el-form-item .el-form-item__content .el-input{width:100%}.a-f-search .el-form .column .el-row .el-form-item .el-form-item__content .range-cols,.a-f-search .el-form .column .el-row .el-form-item .el-form-item__content .range-cols .el-col{padding:0;margin:0}.a-f-search .el-form .column .el-row .el-form-item .el-form-item__content .range-cols .el-col:last-child{padding-left:4px}.a-f-search .el-form .column .el-row .el-form-item .el-form-item__content .range-cols .el-col:first-child{padding-right:4px}.a-f-search .el-form--label-top .el-form-item .el-form-item__label{padding:4px 0;line-height:normal}.a-f-search .el-form--label-top .column .el-row .el-col{margin:0}.a-f-search .el-form--label-top .action .el-form-item__label{visibility:hidden}.a-f-search .el-form--label-left .action .el-form-item__label{display:none}.a-f-search .el-form--label-left .action .el-form-item__content{margin-left:0}.b-f-search{box-sizing:border-box}.b-f-search .el-form{display:flex}.b-f-search .el-form .el-form-item{margin-bottom:16px}.b-f-search .el-form .el-form-item .el-form-item__content{line-height:3}.b-f-search .el-form .column{flex:1}.b-f-search .el-form .column .fold-row{overflow:hidden;transition:all .28s}.b-f-search .el-form .column .el-row .el-form-item .el-form-item__content .el-input{width:100%}.b-f-search .el-form .column .el-row .el-form-item .el-form-item__content .range-cols,.b-f-search .el-form .column .el-row .el-form-item .el-form-item__content .range-cols .el-col{padding:0;margin:0}.b-f-search .el-form .column .el-row .el-form-item .el-form-item__content .range-cols .el-col:last-child{padding-left:4px}.b-f-search .el-form .column .el-row .el-form-item .el-form-item__content .range-cols .el-col:first-child{padding-right:4px}.b-f-search .el-form--label-top .el-form-item .el-form-item__label{padding:4px 0;line-height:normal}.b-f-search .el-form--label-top .column .el-row .el-col{margin:0}.b-f-search .el-form--label-top .action .el-form-item__label{visibility:hidden}.b-f-search .el-form--label-left .action .el-form-item__label{display:none}.b-f-search .el-form--label-left .action .el-form-item__content{margin-left:0}.c-f-search{box-sizing:border-box;overflow:hidden;color:#666}.c-f-search .el-form .el-form-item{margin-bottom:16px}.c-f-search .el-form .el-form-item .el-form-item__content{line-height:3}.c-f-search .el-form--label-left{overflow:hidden}.c-f-search .el-form--label-left .column,.c-f-search .el-form--label-left .column .el-col{margin:0}.c-f-search .el-form--label-left .el-form-item{overflow:hidden;display:flex;padding:0 10px 10px 10px}.c-f-search .el-form--label-left .column .el-form-item .el-form-item__label-wrap .el-form-item__label{padding-right:4px}.c-f-search .el-form--label-left .column .el-form-item .el-form-item__content{flex:1}.c-f-search .el-form--label-left .column .el-form-item .el-form-item__content .el-input{width:100%}.c-f-search .el-form--label-left .column .el-form-item .el-form-item__content .range-cols{box-sizing:border-box;width:100%}.c-f-search .el-form--label-left .column .el-form-item .el-form-item__content .range-cols .el-col:last-child{padding-left:2px}.c-f-search .el-form--label-left .column .el-form-item .el-form-item__content .range-cols .el-col:first-child{padding-right:2px}.c-f-search .el-form--label-left .action{display:inline}.c-f-search .el-form--label-left .action .el-form-item .el-form-item__label{display:none}.c-f-search .el-form--label-top .el-form-item{overflow:hidden}.c-f-search .el-form--label-top .el-form-item .el-form-item__label{line-height:normal;padding:4px 0}.action,.c-f-search .el-form--label-top .column,.c-f-search .el-form--label-top .column .el-col{margin:0}.c-f-search .el-form--label-top .column .el-form-item{box-sizing:border-box;width:100%}.c-f-search .el-form--label-top .column .el-form-item .el-form-item__content{width:100%}.c-f-search .el-form--label-top .column .el-form-item .el-form-item__content .range-cols .el-col:last-child{padding-left:2px}.c-f-search .el-form--label-top .column .el-form-item .el-form-item__content .range-cols .el-col:first-child{padding-right:2px}.c-f-search .el-form--label-top .column .el-form-item .el-form-item__content .el-input{width:100%}.c-f-search .el-form--label-top .action,.c-f-search .el-form--label-top .action .el-form-item{margin:0}.c-f-search .el-form--label-top .action .el-form-item .el-form-item__label{visibility:hidden}.a-form{width:100%}.a-form .action{display:inline}.el-textarea textarea{resize:none;height:84px;font-family:-apple-system,BlinkMacSystemFont,Segoe UI,PingFang SC,Hiragino Sans GB,Microsoft YaHei,Helvetica Neue,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol}.a-from.vertical .el-form-item__label{line-height:24px;padding-bottom:0}.a-from.vertical .el-form-item{margin-bottom:16px}.a-from.vertical .el-form-item .el-form-item__content{line-height:3}.a-from.vertical .action .el-button{min-width:100px;margin-top:12px;margin-bottom:12px}.a-from .el-form-item.is-error.is-required .w-e-toolbar{border-color:#f56c6c;border-bottom:1px solid #eee}.a-from .el-form-item.is-error.is-required .w-e-text-container{border-color:#f56c6c}.a-menu{margin:0;padding:0}.a-menu .el-menu{border:0;background-color:#001529}.a-menu .el-menu:not(.el-menu--collapse){width:100%}.a-menu .el-menu .el-menu-item,.el-submenu__title{height:48px;line-height:48px;text-shadow:1px 1px 1px #000;transition:all .28s}.a-menu .el-menu .el-menu-item:hover{color:#fff;background-color:transparent;transition:all .28s}.a-menu .el-menu .el-menu-item:focus,.a-menu .el-menu .el-menu-item:hover{background-color:transparent}.a-menu .el-menu .el-menu-item:hover i{color:#fff;transition:all .28s}.a-menu .el-menu .el-submenu__title:hover{color:#fff;background-color:transparent;transition:all .28s}.a-menu .el-menu .el-submenu__title:hover i{color:#fff;transition:all .28s}.a-menu .el-menu .el-menu-item.is-active{background-color:#1890ff;transition:all .28s}.a-menu .el-menu .el-submenu.is-active>div.el-submenu__title,.a-menu .el-menu .el-submenu.is-active>div.el-submenu__title i{color:#fff;transition:all .28s}.a-menu .el-menu .el-menu.el-menu--inline,.el-menu.el-menu--popup.el-menu--popup-right-start{background-color:#000}.el-menu.el-menu--popup.el-menu--popup-right-start .el-menu-item,.el-submenu__title{height:48px;line-height:48px}.el-menu.el-menu--popup.el-menu--popup-right-start .el-menu-item:hover,.el-menu.el-menu--popup.el-menu--popup-right-start .el-submenu__title:hover{color:#fff;background-color:#1890ff}.a-menu.horizontal .el-menu.el-menu--horizontal{border-bottom:none}.a-menu.horizontal .el-menu.el-menu--horizontal .el-menu-item,.el-submenu__title{line-height:60px;height:60px;border-bottom:0}.a-menu.horizontal .el-menu.el-menu--horizontal .el-menu-item.is-active{border:none}.el-menu--horizontal .el-submenu.is-active .el-submenu__title{border-bottom:3px 3px solid #1890ff}.el-menu--horizontal .el-menu.el-menu--popup{background-color:transparent}.el-menu--horizontal .el-menu.el-menu--popup .el-menu-item{height:44px;line-height:44px;background-color:rgba(0,0,0,.7)}.el-menu--horizontal .el-menu.el-menu--popup .el-menu-item:hover{color:#fff;background-color:rgba(0,0,0,.9)}.el-menu--horizontal .el-menu.el-menu--popup .el-menu-item.is-active{color:#fff;background-color:#1890ff}.el-menu--horizontal .el-menu.el-menu--popup .el-submenu .el-submenu__title{color:hsla(0,0%,100%,.65);text-shadow:none;height:44px;line-height:44px;background:rgba(0,0,0,.7)}.el-menu--horizontal .el-menu.el-menu--popup .el-submenu .el-submenu__title:hover{color:#fff;background-color:rgba(0,0,0,.9)}.a-modal .el-dialog{margin-top:8vh}.a-modal .el-dialog__header{padding:4px 10px;text-align:center;background-color:#224b7f}.a-modal .el-dialog__header .el-dialog__title{font-size:16px;color:#fff;font-weight:700;text-shadow:1px 1px 1px #000}.a-modal .el-dialog__header .el-dialog__headerbtn{position:absolute;top:8px;right:10px}.a-modal .el-dialog__header .el-dialog__headerbtn .el-dialog__close{color:#fff;text-shadow:1px 1px 1px #000}.a-modal .el-dialog__body{margin:0;padding:0}.a-modal .a-modal-body{margin:0;max-height:60vh;overflow-y:auto;padding:10px 20px;border-bottom:1px solid #eee}.a-modal .a-modal-body .el-form-item .el-form-item__label{padding:0}.a-modal .a-modal-body::-webkit-scrollbar{width:8px;height:8px}.a-modal .a-modal-body::-webkit-scrollbar-thumb{width:8px;border-radius:8px;cursor:pointer;background-color:rgba(0,0,0,.2)}.a-modal .a-modal-foot{padding:14px 0;text-align:center}.a-modal .a-modal-foot .el-button{border-radius:0;width:100px;padding:0 10px;height:30px;line-height:30px;font-size:16px}.a-modal .el-dialog{position:relative;box-sizing:border-box}.a-modal .el-dialog .action{width:100%;height:60px;position:absolute;left:0;bottom:0;display:flex;align-items:center;justify-content:center}.a-modal .el-dialog .action .el-button{width:100px;padding:8px 16px}.a-modal .el-dialog .action .el-form-item{margin:0}.a-modal .a-modal-foot.custom{height:60px;padding:0;display:flex;align-items:center;justify-content:center}.a-modal.loading{pointer-events:none}.a-page{width:100%;text-align:right;margin:16px 0 0 0}.a-popconfirm{display:inline}.el-popconfirm__action{display:flex;justify-content:space-between}.el-popconfirm__action .el-button{width:60px}.a-popover .action{text-align:right;margin:0}.a-reminder{margin:0 24px}.a-reminder i{font-size:24px;color:#aaa;cursor:pointer}.a-reminder:hover i{color:#1890ff}.a-reminder i:active{position:relative;top:1px}.transition-enter-active,.transition-leave-active{transition:opacity .28s}.transition-enter,.transition-leave-to{opacity:0}.a-router-view>div>div{animation:aRouterView .28s linear}@keyframes aRouterView{0%{opacity:0;transform:translateY(-100%)}}.a-scroll-box{width:100%}.a-scroll-box .a-scroll-box-main{width:100%;overflow-x:auto;overflow-y:hidden;white-space:nowrap}.a-scroll-box .a-scroll-box-main::-webkit-scrollbar{width:8px;height:8px}.a-scroll-box .a-scroll-box-main::-webkit-scrollbar-thumb{width:8px;height:8px;border-radius:4px;background-color:rgba(0,0,0,.2)}.a-scroll-table{width:100%}.a-scroll-table .inner{display:inline-block}.a-scroll-table .inner .el-button{cursor:pointer}.a-scroll-table .el-table th{background-color:#f8f8f9;padding:6px 0}.a-scroll-table .el-table th .cell{white-space:nowrap}.a-scroll-table .el-table td{padding:6px 0}.a-scroll-table .el-table td input{height:32px;padding:0 0 0 6px}.a-scroll-table .el-table thead{color:#515a6e}.a-scroll-table .el-table__fixed-right-patch{background-color:#f8f8f9}.a-scroll-table .el-table{box-shadow:0 0 1px #eee;border-top:1px solid #eee;border-left:1px solid #eee;border-right:1px solid #eee}.a-scroll-table .el-table .el-button{padding:0 4px;min-width:60px;font-size:12px;min-height:24px;border-radius:4px;line-height:24px;margin:0 4px}.a-scroll-table .el-table .el-icon-edit{width:48px;color:#409eff;font-size:22px;cursor:pointer;transition:all .28s}.a-scroll-table .el-table .el-icon-edit:hover{transition:all .28s;color:#00f}.a-scroll-table .el-table .el-icon-edit:active{position:relative;top:1px}.a-scroll-table .el-table .el-icon-delete{width:48px;color:#f56c6c;font-size:22px;cursor:pointer;transition:all .28s}.a-scroll-table .el-table .el-icon-delete:hover{transition:all .28s;color:red}.a-scroll-table .el-table .el-icon-delete:active{position:relative;top:1px}.a-scroll-table .el-table .action i{width:48px;font-size:22px;cursor:pointer}.a-scroll-table .el-table .action i:active{position:relative;top:1px}.a-scroll-table .el-table .action i.el-icon-success{color:#13ce66}.a-scroll-table .el-table .action i.el-icon-view{color:orange}.a-scroll-table .el-table .cell.el-tooltip img{margin:0 auto;height:28px}.a-scroll-table .el-table .cell.el-tooltip .el-input__inner{border:none;height:23px;line-height:23px}.a-scroll-table .el-table .cell.el-tooltip .disabled{pointer-events:none}.a-square{position:relative}.a-square .null{padding-bottom:100%}.a-square .main{position:absolute;top:0;width:100%;height:100%}.a-table{width:100%}.a-table.border .el-table{border-top:1px solid #ebeef5;border-left:1px solid #ebeef5;border-right:1px solid #ebeef5}.a-table .inner{display:inline-block}.a-table .inner .el-button{cursor:pointer}.a-table .el-table th{background-color:#f8f8f9;padding:6px 0}.a-table .el-table th .cell{white-space:nowrap}.a-table.border .el-table th.el-table__cell>.cell{padding-left:14px}.a-table .el-table td{padding:6px 0}.a-table .el-table td input{height:32px;padding:0 0 0 6px}.a-table .el-table thead{color:#515a6e}.a-table .el-table__fixed-right-patch{background-color:#f8f8f9}.a-table .el-table .action .el-button{padding:0 4px;min-width:48px;font-size:12px;min-height:24px;border-radius:4px;line-height:24px;margin:0 4px}.a-table .el-table .action .el-button.el-button--text{padding:0;margin:0}.a-table .el-table .el-icon-edit{width:48px;color:#409eff;font-size:22px;cursor:pointer;transition:all .28s}.a-table .el-table .el-icon-edit:hover{transition:all .28s;color:#00f}.a-table .el-table .el-icon-edit:active{position:relative;top:1px}.a-table .el-table .el-icon-delete{width:48px;color:#f56c6c;font-size:22px;cursor:pointer;transition:all .28s}.a-table .el-table .el-icon-delete:hover{transition:all .28s;color:red}.a-table .el-table .el-icon-delete:active{position:relative;top:1px}.a-table .el-table .action i{width:48px;font-size:22px;cursor:pointer}.a-table .el-table .action i:active{position:relative;top:1px}.a-table .el-table .action i.el-icon-success{color:#13ce66}.a-table .el-table .action i.el-icon-view{color:orange}.a-table .el-table .cell.el-tooltip img{margin:0 auto;height:28px}.a-table .el-table .cell.el-tooltip .el-input__inner{border:none;height:23px;line-height:23px}.a-table .el-table .cell.el-tooltip .disabled{pointer-events:none}.a-table .el-table .el-loading-spinner{font-size:28px}.a-tags{width:100%;overflow:hidden;box-sizing:border-box}.a-tags #a-tags-container{padding:8px 0}.a-tags #a-tags-container .el-tag:first-child{margin-left:4px}.a-tags #a-tags-container .el-tag:last-child{margin-right:4px}.a-tags #a-tags-container .el-tag{cursor:pointer;margin:0 2px}.a-tags #a-tags-container .el-tag:hover{color:#fff;background-color:#1890ff}.a-tags #a-tags-container .el-tag:hover i{color:#fff;background-color:#f56c6c}.a-tags #a-tags-container .el-tag.active{color:#fff;background-color:#1890ff}.a-tags #a-tags-container .el-tag.active i{color:#fff}.a-tags #a-tags-container::-webkit-scrollbar{height:8px}.a-tags #a-tags-container::-webkit-scrollbar-thumb{height:8px;border-radius:10px;background-color:#ccc}.a-tian-map .a-tian-map-main{width:100%;height:100%}.a-tian-map .a-tian-map-main .tdt-bottom.tdt-left{display:none}.a-title{width:100%}.a-title .a-title-body{box-sizing:border-box;font-size:1em;padding:4px 0;width:100%;display:flex;align-items:center;justify-content:space-between}.a-title .a-title-body .link{cursor:pointer;font-size:.8em;transition:all .28s;color:rgba(0,0,0,.5)}.a-title .a-title-body .link:hover{color:#409eff;transition:all .28s}.a-title .a-title-body .link .icon{font-family:新宋体}.a-transfer .a-transfer-rows{display:flex;flex-direction:row}.a-transfer .a-transfer-rows>div{padding:0 8px}.a-transfer .el-transfer-panel{width:42%}.a-transfer .el-transfer__buttons{box-sizing:border-box;width:16%;padding:20px;display:inline-flex;justify-content:space-between}.a-transfer .el-transfer__buttons .el-button{margin:0}.b-card .el-card .el-card__header{padding:8px 20px}.b-card .el-card .el-card__header .clearfix .el-button{float:right;padding:3px 0;font-size:12px}.a-map{width:100%;height:60vh}.a-map .amap-logo{opacity:0;display:none}.a-map .icon{display:flex;flex-direction:column;align-items:center;z-index:1000}.a-map .icon img{width:32px}.a-map .site-icon{z-index:0}.a-map .site-icon img{width:24px}.a-map .icon .point{position:relative}.a-map .icon .point .node{width:8px;height:8px;border-radius:50%;background-color:#ffe42d}.a-map .icon .point div[class^=step]{position:absolute;transform:translate(-50%,-50%);top:50%;left:50%;width:8px;height:8px;border-radius:50%;box-shadow:0 0 12px #ffe42d;animation:step 1.5s linear 2s infinite}.a-map .icon .point div.step2{animation-delay:4s}@keyframes step{to{width:50px;height:50px;opacity:0}}.a-map .amap-marker-label{border:0;opacity:0;padding:8px;font-size:16px;color:#fff;border-radius:4px;background-color:rgba(0,0,0,.5);transition:all .2s}.a-map .amap-marker:hover .amap-marker-label{opacity:1;transition:all .2s}.b-table{width:100%}.b-table.border .el-table{border-top:1px solid #ebeef5;border-left:1px solid #ebeef5;border-right:1px solid #ebeef5}.b-table .inner{display:inline-block}.b-table .inner .el-button{cursor:pointer}.b-table .el-table th{background-color:#f8f8f9;padding:6px 0}.b-table .el-table th .cell{white-space:nowrap}.b-table.border .el-table th.el-table__cell>.cell{padding-left:14px}.b-table .el-table td{padding:6px 0}.b-table .el-table td input{height:32px;padding:0 0 0 6px}.b-table .el-table thead{color:#515a6e}.b-table .el-table__fixed-right-patch{background-color:#f8f8f9}.b-table .el-table .action .el-button{padding:0 4px;min-width:48px;font-size:12px;min-height:24px;border-radius:4px;line-height:24px;margin:0 4px}.b-table .el-table .action .el-button.el-button--text{padding:0;margin:0}.b-table .el-table .el-icon-edit{width:48px;color:#409eff;font-size:22px;cursor:pointer;transition:all .28s}.b-table .el-table .el-icon-edit:hover{transition:all .28s;color:#00f}.b-table .el-table .el-icon-edit:active{position:relative;top:1px}.b-table .el-table .el-icon-delete{width:48px;color:#f56c6c;font-size:22px;cursor:pointer;transition:all .28s}.b-table .el-table .el-icon-delete:hover{transition:all .28s;color:red}.b-table .el-table .el-icon-delete:active{position:relative;top:1px}.b-table .el-table .action i{width:48px;font-size:22px;cursor:pointer}.b-table .el-table .action i:active{position:relative;top:1px}.b-table .el-table .action i.el-icon-success{color:#13ce66}.b-table .el-table .action i.el-icon-view{color:orange}.b-table .el-table .cell.el-tooltip img{margin:0 auto;height:28px}.b-table .el-table .cell.el-tooltip .el-input__inner{border:none;height:23px;line-height:23px}.b-table .el-table .cell.el-tooltip .disabled{pointer-events:none}.b-table .el-table .el-loading-spinner{font-size:28px}.c-table{width:100%}.c-table .inner{display:inline-block}.c-table .inner .el-button{cursor:pointer}.c-table .el-table th{background-color:#f8f8f9;padding:6px 0}.c-table .el-table th .cell{white-space:nowrap}.c-table .el-table td{padding:6px 0}.c-table .el-table td input{height:32px;padding:0 0 0 6px}.c-table .el-table thead{color:#515a6e}.c-table .el-table__fixed-right-patch{background-color:#f8f8f9}.c-table .el-table{box-shadow:0 0 1px #eee;border-top:1px solid #eee;border-left:1px solid #eee;border-right:1px solid #eee}.c-table .el-table .el-button{padding:0 4px;min-width:60px;font-size:12px;min-height:24px;border-radius:4px;line-height:24px;margin:0 4px}.c-table .el-table .el-icon-edit{width:48px;color:#409eff;font-size:22px;cursor:pointer;transition:all .28s}.c-table .el-table .el-icon-edit:hover{transition:all .28s;color:#00f}.c-table .el-table .el-icon-edit:active{position:relative;top:1px}.c-table .el-table .el-icon-delete{width:48px;color:#f56c6c;font-size:22px;cursor:pointer;transition:all .28s}.c-table .el-table .el-icon-delete:hover{transition:all .28s;color:red}.c-table .el-table .el-icon-delete:active{position:relative;top:1px}.c-table .el-table .action i{width:48px;font-size:22px;cursor:pointer}.c-table .el-table .action i:active{position:relative;top:1px}.c-table .el-table .action i.el-icon-success{color:#13ce66}.c-table .el-table .action i.el-icon-view{color:orange}.c-table .el-table .cell.el-tooltip img{margin:0 auto;height:28px}.c-table .el-table .cell.el-tooltip .el-input__inner{border:none;height:23px;line-height:23px}.c-table .el-table .cell.el-tooltip .disabled{pointer-events:none}.a-e-map,.a-echarts,.b-e-map,.c-e-map{width:100%;height:100%}.wang-editor{width:100%;overflow:hidden}.wang-editor .w-e-text::-webkit-scrollbar{width:8px;height:8px}.wang-editor .w-e-text::-webkit-scrollbar-thumb{width:8px;height:8px;border-radius:8px;background-color:rgba(0,0,0,.2)}.a-tree{min-height:380px}.a-tree .filter{width:280px}.a-tree .filter .el-input__inner{border-radius:0;padding:0 8px}.a-tree .last-rows{white-space:normal}.a-upload-file,.a-upload-file>div{margin:0 auto;display:inline}.a-upload-file .el-upload{margin:0 10px;display:inline}.a-upload-file.hide-file-list .el-upload-list{display:none}.a-upload-icon{width:100%}.a-upload-icon .single{cursor:pointer;position:relative}.a-upload-icon .single,.a-upload-icon .single .el-upload{width:160px;height:120px;display:flex;align-items:center;justify-content:center}.a-upload-icon .single .el-upload .icon{width:100%;display:flex;align-items:center;justify-content:center}.a-upload-icon .single .delete{background-color:rgba(0,0,0,.4);visibility:hidden;height:100%;width:100%;opacity:0;transition:all .28s;position:absolute;top:0}.a-upload-icon .single:hover .delete{transition:all .46s;visibility:visible;opacity:1;display:flex;align-items:center;justify-content:center}.a-upload-icon .single:hover .delete i{font-size:48px;color:#fff;text-shadow:1px 1px 1px #000}.b-dialog{padding:0}.b-dialog .el-dialog__header{padding:4px 10px;text-align:center;background-color:#224b7f}.b-dialog .el-dialog__header .el-dialog__title{font-size:16px;color:#fff;font-weight:700;text-shadow:1px 1px 1px #000}.b-dialog .el-dialog__header .el-dialog__headerbtn{position:absolute;top:8px;right:10px}.b-dialog .el-dialog__header .el-dialog__headerbtn .el-dialog__close{color:#fff;text-shadow:1px 1px 1px #000}.b-dialog .el-dialog__body{padding:0}.b-dialog .el-dialog__body .b-dialog-body{margin:0;max-height:60vh;padding:10px 20px;overflow-y:auto;border-bottom:1px solid #eee}.b-dialog .el-dialog__body .b-dialog-body::-webkit-scrollbar{width:8px;height:8px}.b-dialog .el-dialog__body .b-dialog-body::-webkit-scrollbar-thumb{width:8px;height:8px;border-radius:8px;background-color:rgba(0,0,0,.2)}.b-dialog .b-dialog-foot{padding:14px 0;text-align:center}.b-dialog .b-dialog-foot .el-button{border-radius:0;width:100px;padding:0 10px;height:30px;line-height:30px;font-size:14px}.b-dialog .el-dialog{position:relative;box-sizing:border-box}.b-dialog .el-dialog .a-f-editor .action{width:100%;height:48px;position:absolute;left:0;bottom:0;display:flex;align-items:center;justify-content:center}.b-dialog .el-dialog .a-f-editor .action .el-button{width:100px;padding:8px 16px}.b-dialog .el-dialog .a-f-editor .action .el-form-item{margin:0}.b-dialog .b-dialog-foot.custom{padding:24px 0}.a-player .a-player-body{opacity:0;width:100vw;height:100vh;visibility:hidden;transition:all .28s;background-color:rgba(0,0,0,.4);position:fixed;z-index:1000;bottom:0;right:0;left:0;top:0}.a-player .a-player-body.visible{opacity:1;visibility:visible;transition:all .28s}.a-player .a-player-body .a-player-main{width:100%;height:100%;display:flex;align-items:center;justify-content:center}.a-player .a-player-body .a-player-main .a-player-main-container{position:relative}.a-player .a-player-body .a-player-main .a-player-main-container video{border:none;outline:none;background-color:#fff}.a-player .a-player-body .a-player-main .a-player-main-container .close{position:absolute;z-index:1000;right:6px;top:6px;width:36px;height:36px;opacity:.8;font-size:16px;cursor:pointer;border-radius:50%;transition:all .28s;display:flex;align-items:center;justify-content:center}.a-player .a-player-body .a-player-main .a-player-main-container .close i{font-weight:700}.a-player .a-player-body .a-player-main .a-player-main-container .close:hover{opacity:1;color:#fff;transition:all .28s;background-color:rgba(0,0,0,.7)}.a-player .play-button{width:32px;height:18px;font-size:18px;cursor:pointer;transition:all .28s;color:#409eff;text-shadow:1px 1px 1px #000;border:1px solid #409eff;display:flex;align-items:center;justify-content:center}.a-player .play-button:hover{transition:all .28s;color:#fff;background-color:#409eff}.a-player .play-button:active{position:relative;top:1px}.b-tree{min-height:380px}.last-rows{white-space:normal}
|
package/dist/index.umd.js
CHANGED
|
@@ -19254,6 +19254,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19254
19254
|
"attrs": {
|
|
19255
19255
|
"clearable": true,
|
|
19256
19256
|
"filterable": true,
|
|
19257
|
+
"collapse-tags": true,
|
|
19257
19258
|
"placeholder": props.placeholder || `请选择${words}`
|
|
19258
19259
|
},
|
|
19259
19260
|
"on": {
|
|
@@ -61794,27 +61795,38 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
61794
61795
|
},
|
|
61795
61796
|
methods: {
|
|
61796
61797
|
create() {
|
|
61797
|
-
const h = this.$createElement;
|
|
61798
61798
|
let column = [...this.column, this.suffix()];
|
|
61799
|
-
return column.map((a, b) =>
|
|
61800
|
-
|
|
61801
|
-
|
|
61802
|
-
|
|
61803
|
-
|
|
61804
|
-
|
|
61805
|
-
|
|
61806
|
-
|
|
61807
|
-
|
|
61808
|
-
|
|
61809
|
-
|
|
61810
|
-
|
|
61811
|
-
|
|
61812
|
-
|
|
61813
|
-
|
|
61814
|
-
|
|
61815
|
-
|
|
61816
|
-
|
|
61817
|
-
|
|
61799
|
+
return column.map((a, b) => this.output(a, b));
|
|
61800
|
+
},
|
|
61801
|
+
output(a, b) {
|
|
61802
|
+
const h = this.$createElement;
|
|
61803
|
+
if (a && Object.keys(a).length > 0) {
|
|
61804
|
+
let {
|
|
61805
|
+
type = null,
|
|
61806
|
+
render = null,
|
|
61807
|
+
header = null,
|
|
61808
|
+
...r
|
|
61809
|
+
} = a;
|
|
61810
|
+
let child = a.children || a.child || a.node || a.list || [];
|
|
61811
|
+
let field = a.field || a.index || a.name || a.prop;
|
|
61812
|
+
let label = a.label || a.title || a.text;
|
|
61813
|
+
let props = {
|
|
61814
|
+
key: b,
|
|
61815
|
+
prop: field,
|
|
61816
|
+
scopedSlot: field,
|
|
61817
|
+
sortable: field ? a.sortable ? a.sortable : this.sortable : false,
|
|
61818
|
+
formatter: render ? render : type ? (e, f, g, h) => this.format(a, b, e, h) : null,
|
|
61819
|
+
showOverflowTooltip: a.showOverflowTooltip ? a.showOverflowTooltip : this.showOverflowTooltip,
|
|
61820
|
+
...r
|
|
61821
|
+
};
|
|
61822
|
+
if (child.length > 0) {
|
|
61823
|
+
return h("el-table-column", {
|
|
61824
|
+
"key": b,
|
|
61825
|
+
"attrs": {
|
|
61826
|
+
"label": label
|
|
61827
|
+
}
|
|
61828
|
+
}, [child.map((c, d) => this.output(c, `${b}-${d}`))]);
|
|
61829
|
+
} else {
|
|
61818
61830
|
return h("el-table-column", {
|
|
61819
61831
|
"props": {
|
|
61820
61832
|
...props
|
|
@@ -61836,7 +61848,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
61836
61848
|
}
|
|
61837
61849
|
}, [label])])]);
|
|
61838
61850
|
}
|
|
61839
|
-
}
|
|
61851
|
+
}
|
|
61840
61852
|
},
|
|
61841
61853
|
suffix() {
|
|
61842
61854
|
const h = this.$createElement;
|
|
@@ -136195,27 +136207,38 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
136195
136207
|
},
|
|
136196
136208
|
methods: {
|
|
136197
136209
|
create() {
|
|
136198
|
-
const h = this.$createElement;
|
|
136199
136210
|
let column = [...this.column, this.suffix()];
|
|
136200
|
-
return column.map((a, b) =>
|
|
136201
|
-
|
|
136202
|
-
|
|
136203
|
-
|
|
136204
|
-
|
|
136205
|
-
|
|
136206
|
-
|
|
136207
|
-
|
|
136208
|
-
|
|
136209
|
-
|
|
136210
|
-
|
|
136211
|
-
|
|
136212
|
-
|
|
136213
|
-
|
|
136214
|
-
|
|
136215
|
-
|
|
136216
|
-
|
|
136217
|
-
|
|
136218
|
-
|
|
136211
|
+
return column.map((a, b) => this.output(a, b));
|
|
136212
|
+
},
|
|
136213
|
+
output(a, b) {
|
|
136214
|
+
const h = this.$createElement;
|
|
136215
|
+
if (a && Object.keys(a).length > 0) {
|
|
136216
|
+
let {
|
|
136217
|
+
type = null,
|
|
136218
|
+
render = null,
|
|
136219
|
+
header = null,
|
|
136220
|
+
...r
|
|
136221
|
+
} = a;
|
|
136222
|
+
let child = a.children || a.child || a.node || a.list || [];
|
|
136223
|
+
let field = a.field || a.index || a.name || a.prop;
|
|
136224
|
+
let label = a.label || a.title || a.text;
|
|
136225
|
+
let props = {
|
|
136226
|
+
key: b,
|
|
136227
|
+
prop: field,
|
|
136228
|
+
scopedSlot: field,
|
|
136229
|
+
sortable: field ? a.sortable ? a.sortable : this.sortable : false,
|
|
136230
|
+
formatter: render ? render : type ? (e, f, g, h) => this.format(a, b, e, h) : null,
|
|
136231
|
+
showOverflowTooltip: a.showOverflowTooltip ? a.showOverflowTooltip : this.showOverflowTooltip,
|
|
136232
|
+
...r
|
|
136233
|
+
};
|
|
136234
|
+
if (child.length > 0) {
|
|
136235
|
+
return h("el-table-column", {
|
|
136236
|
+
"key": b,
|
|
136237
|
+
"attrs": {
|
|
136238
|
+
"label": label
|
|
136239
|
+
}
|
|
136240
|
+
}, [child.map((c, d) => this.output(c, `${b}-${d}`))]);
|
|
136241
|
+
} else {
|
|
136219
136242
|
return h("el-table-column", {
|
|
136220
136243
|
"props": {
|
|
136221
136244
|
...props
|
|
@@ -136237,7 +136260,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
136237
136260
|
}
|
|
136238
136261
|
}, [label])])]);
|
|
136239
136262
|
}
|
|
136240
|
-
}
|
|
136263
|
+
}
|
|
136241
136264
|
},
|
|
136242
136265
|
suffix() {
|
|
136243
136266
|
const h = this.$createElement;
|
|
@@ -158410,7 +158433,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
158410
158433
|
type: Boolean,
|
|
158411
158434
|
default: () => true
|
|
158412
158435
|
},
|
|
158436
|
+
padding: {
|
|
158437
|
+
type: String,
|
|
158438
|
+
default: () => '16px'
|
|
158439
|
+
},
|
|
158413
158440
|
height: {
|
|
158441
|
+
type: String,
|
|
158442
|
+
default: () => '70vh'
|
|
158443
|
+
},
|
|
158444
|
+
maxHeight: {
|
|
158414
158445
|
type: String,
|
|
158415
158446
|
default: () => '72vh'
|
|
158416
158447
|
},
|
|
@@ -158531,7 +158562,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
158531
158562
|
"key": this.visible,
|
|
158532
158563
|
"class": "a-dialog-body",
|
|
158533
158564
|
"style": {
|
|
158534
|
-
|
|
158565
|
+
padding: this.padding,
|
|
158566
|
+
height: this.height,
|
|
158567
|
+
maxHeight: this.maxHeight
|
|
158535
158568
|
}
|
|
158536
158569
|
}, [this.$slots.default]), h("div", {
|
|
158537
158570
|
"class": finish || submit || cancel ? 'a-dialog-foot' : 'a-dialog-foot custom'
|
|
@@ -162448,6 +162481,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
162448
162481
|
type: String,
|
|
162449
162482
|
default: () => ''
|
|
162450
162483
|
},
|
|
162484
|
+
margin: {
|
|
162485
|
+
type: String,
|
|
162486
|
+
default: () => '0'
|
|
162487
|
+
},
|
|
162451
162488
|
padding: {
|
|
162452
162489
|
type: String,
|
|
162453
162490
|
default: () => '20px'
|
|
@@ -162587,6 +162624,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
162587
162624
|
...props
|
|
162588
162625
|
} = this.$attrs;
|
|
162589
162626
|
return h("div", {
|
|
162627
|
+
"style": {
|
|
162628
|
+
padding: this.margin
|
|
162629
|
+
}
|
|
162630
|
+
}, [h("div", {
|
|
162590
162631
|
"attrs": {
|
|
162591
162632
|
"id": this.id
|
|
162592
162633
|
},
|
|
@@ -162654,7 +162695,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
162654
162695
|
"size": "small",
|
|
162655
162696
|
"disabled": this.loading
|
|
162656
162697
|
}
|
|
162657
|
-
}, [this.cancelText]), this.actionRender])]);
|
|
162698
|
+
}, [this.cancelText]), this.actionRender])])]);
|
|
162658
162699
|
}
|
|
162659
162700
|
});
|
|
162660
162701
|
|