@@ -2153,6 +2153,7 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
2153
2153
//
2154
2154
//
2155
2155
//
2156
+ //
2156
2157
/* harmony default export */ __webpack_exports__["default"] = ({
2157
2158
data: function data() {
2158
2159
return {
@@ -2347,7 +2348,6 @@ __webpack_require__.r(__webpack_exports__);
2347
2348
//
2348
2349
//
2349
2350
//
2350
- //
2351
2351
/* harmony default export */ __webpack_exports__["default"] = ({
2352
2352
props: {
2353
2353
scope: Object,
@@ -3482,6 +3482,17 @@ __webpack_require__.r(__webpack_exports__);
3482
3482
methods: {
3483
3483
onChange: function onChange(value) {
3484
3484
this.$emit("change", value);
3485
+ },
3486
+ remoteMethod: function remoteMethod(query) {
3487
+ var _this = this;
3488
+
3489
+ this.$http.get(this.attrs.remoteUrl, {
3490
+ params: {
3491
+ query: query
3492
+ }
3493
+ }).then(function (res) {
3494
+ _this.options = res.data;
3495
+ });
3485
3496
}
3486
3497
}
3487
3498
});
@@ -6218,7 +6229,7 @@ exports = module.exports = __webpack_require__(/*! ../../../../node_modules/css-
6218
6229
6219
6230
6220
6231
// module
6221
- exports.push([module.i, ".upload-component {\n display: flex;\n flex-wrap: wrap;\n}\n.upload-component .upload-images {\n display: flex;\n flex-wrap: wrap;\n}\n.upload-component .upload-images .upload-images-item + .upload-images-item {\n margin-right: 10px;\n}\n.upload-component .upload-images .upload-images-item {\n position: relative;\n line-height: 1;\n}\n.upload-component .upload-images .upload-images-item img {\n line-height: 1;\n vertical-align: middle;\n}\n.upload-component .upload-images .upload-images-item .el-image {\n cursor: zoom-in;\n}\n.upload-component .upload-images .upload-images-item .el-icon-document-checked {\n font-size: 30px;\n}\n.upload-component .upload-images .upload-images-item .mask {\n position: absolute;\n transition: all 0.3s ease-in-out;\n opacity: 0;\n background: rgba(0, 0, 0, 0.3);\n color: white;\n font-size: 20px;\n padding: 5px;\n top: 50%;\n left: 50%;\n cursor: pointer;\n transform: translate(-50%, -50%);\n}\n.upload-component .upload-images .upload-images-item:hover .mask {\n opacity: 1;\n}\n.upload-component .upload-images .upload-show-image {\n border: 1px solid #dcdfe6;\n padding: 2px;\n}\n.upload-component .upload-block .el-upload-dragger {\n width: unset;\n height: unset;\n border: none;\n border-radius: 0;\n}\n.upload-component .upload-block .avatar {\n border-radius: 50%;\n}\n.upload-component .upload-block .image,\n.upload-component .upload-block .file {\n border-radius: 0;\n}", ""]);
6232
+ exports.push([module.i, ".upload-component {\n display: flex;\n flex-wrap: wrap;\n}\n.upload-component .upload-images {\n display: flex;\n flex-wrap: wrap;\n}\n.upload-component .upload-images .upload-images-item + .upload-images-item {\n margin-left: 10px;\n}\n.upload-component .upload-images .upload-images-item {\n position: relative;\n line-height: 1;\n}\n.upload-component .upload-images .upload-images-item img {\n line-height: 1;\n vertical-align: middle;\n}\n.upload-component .upload-images .upload-images-item .el-image {\n cursor: zoom-in;\n}\n.upload-component .upload-images .upload-images-item .el-icon-document-checked {\n font-size: 30px;\n}\n.upload-component .upload-images .upload-images-item .mask {\n position: absolute;\n transition: all 0.3s ease-in-out;\n opacity: 0;\n background: rgba(0, 0, 0, 0.3);\n color: white;\n font-size: 20px;\n padding: 5px;\n top: 50%;\n left: 50%;\n cursor: pointer;\n transform: translate(-50%, -50%);\n}\n.upload-component .upload-images .upload-images-item:hover .mask {\n opacity: 1;\n}\n.upload-component .upload-images .upload-show-image {\n border: 1px solid #dcdfe6;\n padding: 2px;\n}\n.upload-component .upload-block .el-upload-dragger {\n width: unset;\n height: unset;\n border: none;\n border-radius: 0;\n}\n.upload-component .upload-block .avatar {\n border-radius: 50%;\n}\n.upload-component .upload-block .image,\n.upload-component .upload-block .file {\n border-radius: 0;\n}", ""]);
6222
6233
6223
6234
// exports
6224
6235
@@ -29395,8 +29406,11 @@ var render = function() {
29395
29406
expression: "loading"
29396
29407
}
29397
29408
],
29398
- staticStyle: { "min-height": "100px" },
29399
- attrs: { "element-loading-background": "rgba(0, 0, 0, 0)" }
29409
+ staticStyle: { "min-height": "150px" },
29410
+ attrs: {
29411
+ "element-loading-spinner": "el-icon-loading",
29412
+ "element-loading-background": "rgba(0, 0, 0, 0)"
29413
+ }
29400
29414
},
29401
29415
[
29402
29416
!_vm.loading
@@ -29621,7 +29635,6 @@ var render = function() {
29621
29635
return _c(
29622
29636
"el-button",
29623
29637
{
29624
- staticClass: "mr-10",
29625
29638
attrs: {
29626
29639
type: _vm.action.type,
29627
29640
size: _vm.action.size,
@@ -30478,7 +30491,8 @@ var render = function() {
30478
30491
"reserve-keyword": _vm.attrs.reserveKeyword,
30479
30492
"default-first-option": _vm.attrs.defaultFirstOption,
30480
30493
"popper-append-to-body": _vm.attrs.popperAppendToBody,
30481
- "automatic-dropdown": _vm.attrs.automaticDropdown
30494
+ "automatic-dropdown": _vm.attrs.automaticDropdown,
30495
+ "remote-method": _vm.remoteMethod
30482
30496
},
30483
30497
on: { change: _vm.onChange }
30484
30498
},
0 commit comments