backend-management-ui 1.7.7 → 1.7.8
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/index.common.js +11 -19
- package/package.json +1 -1
package/index.common.js
CHANGED
|
@@ -183,9 +183,6 @@ var script$6 = {
|
|
|
183
183
|
clearable: true
|
|
184
184
|
}, item.attrs || {});
|
|
185
185
|
if (componentName === "ui-virtual-select") {
|
|
186
|
-
console.log(_objectSpread$1(_objectSpread$1({}, baseAttrs), {}, {
|
|
187
|
-
options: item.options || []
|
|
188
|
-
}), '虚拟滚动');
|
|
189
186
|
return _objectSpread$1(_objectSpread$1({}, baseAttrs), {}, {
|
|
190
187
|
options: item.options || [],
|
|
191
188
|
fields: item.fields || {
|
|
@@ -1274,8 +1271,6 @@ var __vue_component__$2 = /*#__PURE__*/normalizeComponent({
|
|
|
1274
1271
|
//
|
|
1275
1272
|
//
|
|
1276
1273
|
//
|
|
1277
|
-
//
|
|
1278
|
-
//
|
|
1279
1274
|
|
|
1280
1275
|
var script$1 = {
|
|
1281
1276
|
name: 'UiVirtualSelectItem',
|
|
@@ -1317,35 +1312,34 @@ var __vue_render__$1 = function __vue_render__() {
|
|
|
1317
1312
|
var _vm = this;
|
|
1318
1313
|
var _h = _vm.$createElement;
|
|
1319
1314
|
var _c = _vm._self._c || _h;
|
|
1320
|
-
return _c('
|
|
1315
|
+
return _c('el-option', {
|
|
1321
1316
|
staticClass: "item",
|
|
1322
|
-
on: {
|
|
1323
|
-
"click": _vm.handleItemClick
|
|
1324
|
-
}
|
|
1325
|
-
}, [_c('el-option', {
|
|
1326
1317
|
attrs: {
|
|
1327
1318
|
"label": _vm.source[_vm.label],
|
|
1328
1319
|
"value": _vm.source[_vm.value]
|
|
1320
|
+
},
|
|
1321
|
+
on: {
|
|
1322
|
+
"click": _vm.handleItemClick
|
|
1329
1323
|
}
|
|
1330
1324
|
}, [_c('span', {
|
|
1331
1325
|
staticClass: "left-text"
|
|
1332
1326
|
}, [_vm._v(_vm._s(_vm.source[_vm.label]))]), _vm._v(" "), _vm.rightLabel ? _c('span', {
|
|
1333
1327
|
staticClass: "right-text"
|
|
1334
|
-
}, [_vm._v(_vm._s(_vm.source[_vm.rightLabel]))]) : _vm._e()])
|
|
1328
|
+
}, [_vm._v(_vm._s(_vm.source[_vm.rightLabel]))]) : _vm._e()]);
|
|
1335
1329
|
};
|
|
1336
1330
|
var __vue_staticRenderFns__$1 = [];
|
|
1337
1331
|
|
|
1338
1332
|
/* style */
|
|
1339
1333
|
var __vue_inject_styles__$1 = function __vue_inject_styles__(inject) {
|
|
1340
1334
|
if (!inject) return;
|
|
1341
|
-
inject("data-v-
|
|
1342
|
-
source: ".
|
|
1335
|
+
inject("data-v-d0b52dea_0", {
|
|
1336
|
+
source: ".left-text[data-v-d0b52dea]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.right-text[data-v-d0b52dea]{margin-left:10px;color:#939393;white-space:nowrap}",
|
|
1343
1337
|
map: undefined,
|
|
1344
1338
|
media: undefined
|
|
1345
1339
|
});
|
|
1346
1340
|
};
|
|
1347
1341
|
/* scoped */
|
|
1348
|
-
var __vue_scope_id__$1 = "data-v-
|
|
1342
|
+
var __vue_scope_id__$1 = "data-v-d0b52dea";
|
|
1349
1343
|
/* module identifier */
|
|
1350
1344
|
var __vue_module_identifier__$1 = undefined;
|
|
1351
1345
|
/* functional template */
|
|
@@ -1411,7 +1405,6 @@ var script = {
|
|
|
1411
1405
|
immediate: true,
|
|
1412
1406
|
handler: function handler(newVal) {
|
|
1413
1407
|
this.innerValue = this.normalizeValue(newVal);
|
|
1414
|
-
console.log('this.innerValue', this.innerValue, this);
|
|
1415
1408
|
}
|
|
1416
1409
|
},
|
|
1417
1410
|
options: {
|
|
@@ -1419,7 +1412,6 @@ var script = {
|
|
|
1419
1412
|
immediate: true,
|
|
1420
1413
|
handler: function handler(val) {
|
|
1421
1414
|
this.filteredData = _toConsumableArray__default["default"](val);
|
|
1422
|
-
console.log('this.filteredData: ', this.filteredData, val);
|
|
1423
1415
|
this.calcMaxItemWidth();
|
|
1424
1416
|
}
|
|
1425
1417
|
}
|
|
@@ -1588,14 +1580,14 @@ var __vue_staticRenderFns__ = [];
|
|
|
1588
1580
|
/* style */
|
|
1589
1581
|
var __vue_inject_styles__ = function __vue_inject_styles__(inject) {
|
|
1590
1582
|
if (!inject) return;
|
|
1591
|
-
inject("data-v-
|
|
1592
|
-
source: ".select-wrap[data-v-
|
|
1583
|
+
inject("data-v-9f7aa2de_0", {
|
|
1584
|
+
source: ".select-wrap[data-v-9f7aa2de]{position:relative}.select-wrap .bm-select[data-v-9f7aa2de]{width:100%}.virtual-select-popper[data-v-9f7aa2de]{padding:0!important;border:1px solid #e4e7ed!important;border-radius:4px!important}.virtual-list[data-v-9f7aa2de]{max-height:245px;overflow-y:auto;overflow-x:hidden!important;scrollbar-width:thin;scrollbar-color:#e4e7ed #f5f7fa}.virtual-list[data-v-9f7aa2de]::-webkit-scrollbar{width:6px!important;display:block!important}.virtual-list[data-v-9f7aa2de]::-webkit-scrollbar-thumb{background-color:#e4e7ed;border-radius:3px}.virtual-list[data-v-9f7aa2de]::-webkit-scrollbar-track{background-color:#f5f7fa}[data-v-9f7aa2de]:deep(.el-scrollbar__bar.is-vertical){display:none!important}",
|
|
1593
1585
|
map: undefined,
|
|
1594
1586
|
media: undefined
|
|
1595
1587
|
});
|
|
1596
1588
|
};
|
|
1597
1589
|
/* scoped */
|
|
1598
|
-
var __vue_scope_id__ = "data-v-
|
|
1590
|
+
var __vue_scope_id__ = "data-v-9f7aa2de";
|
|
1599
1591
|
/* module identifier */
|
|
1600
1592
|
var __vue_module_identifier__ = undefined;
|
|
1601
1593
|
/* functional template */
|