@smallwei/avue 3.6.1 → 3.6.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/lib/avue.js CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
- * Avue.js v3.6.1
3
- * (c) 2017-2024 Smallwei
2
+ * Avue.js v3.6.2
3
+ * (c) 2017-2025 Smallwei
4
4
  * Released under the MIT License.
5
5
  *
6
6
  */
@@ -706,7 +706,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core
706
706
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
707
707
 
708
708
  "use strict";
709
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core_create__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core/create */ \"./src/core/create.js\");\n/* harmony import */ var core_locale__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core/locale */ \"./src/core/locale.js\");\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (Object(core_create__WEBPACK_IMPORTED_MODULE_0__[\"default\"])({\n name: 'crud__grid',\n inject: [\"crud\"],\n mixins: [core_locale__WEBPACK_IMPORTED_MODULE_1__[\"default\"]],\n props: {\n rowStyle: Function,\n cellStyle: Function,\n cellClassName: Function,\n rowClassName: Function,\n height: [String, Number],\n data: Array\n },\n data: function data() {\n return {\n checkList: [],\n span: 8,\n xsSpan: 12,\n id: 'crud-grid',\n column: []\n };\n },\n computed: {\n styleName: function styleName() {\n return {\n height: this.crud.tableHeight + 'px'\n };\n }\n },\n methods: {\n doLayout: function doLayout() {},\n clearSelection: function clearSelection() {\n this.checkList = [];\n this.checkListChange(this.checkList);\n },\n toggleAllSelection: function toggleAllSelection() {\n if (this.checkList.length === this.crud.data.length) {\n this.checkList = [];\n } else {\n this.checkList = this.crud.data.map(function (ele, index) {\n return index;\n });\n }\n this.checkListChange(this.checkList);\n },\n toggleRowSelection: function toggleRowSelection(data, selected) {\n var index = this.crud.data.findIndex(function (ele) {\n return JSON.stringify(ele) == JSON.stringify(data);\n });\n if (selected && index != -1) {\n this.checkList.push(index);\n } else {\n var checkIndex = this.checkList.findIndex(function (ele) {\n return ele == index;\n });\n this.checkList.splice(checkIndex, 1);\n }\n this.checkListChange(this.checkList);\n },\n checkListChange: function checkListChange(val) {\n var result = [];\n var data = this.crud.data;\n val.forEach(function (ele) {\n result.push(data[ele]);\n });\n this.$emit('selection-change', result);\n },\n handleRowDblClick: function handleRowDblClick(row, index) {\n this.$emit('row-dblclick', row, index);\n },\n handleRowClick: function handleRowClick(row, index) {\n this.$emit('row-click', row, index);\n },\n handleCellDblClick: function handleCellDblClick(row, column) {\n this.$emit('cell-dblclick', row, column);\n },\n handleCellClick: function handleCellClick(row, column) {\n this.$emit('cell-click', row, column);\n },\n getGradientColor: function getGradientColor(row, index) {\n var styles = {};\n if (typeof this.crud.tableOption.gridBackground == 'function') {\n styles.background = this.crud.tableOption.gridBackground(row, index);\n } else if (this.crud.tableOption.gridBackgroundImage) {\n styles.backgroundImage = \"url(\".concat(this.crud.tableOption.gridBackgroundImage, \")\");\n } else {\n styles.background = this.crud.tableOption.gridBackground || 'linear-gradient(to bottom, rgba(88, 159, 248, 0.1), white)';\n }\n return styles;\n },\n getCellStyle: function getCellStyle(row, index, column, columnIndex) {\n if (this.cellStyle) return this.cellStyle({\n row: row,\n rowIndex: index,\n column: column,\n columnIndex: columnIndex\n });\n },\n getRowStyle: function getRowStyle(row, index) {\n if (this.rowStyle) return this.rowStyle({\n row: row,\n rowIndex: index\n });\n },\n getRowClass: function getRowClass(row, index) {\n if (this.rowClassName) return this.rowClassName({\n row: row,\n rowIndex: index\n });\n },\n getClass: function getClass(row, index, column) {\n var list = [];\n var columnOption = this.crud.columnOption || [];\n if (this.cellClassName) list.push(this.cellClassName({\n row: row,\n rowIndex: index,\n column: column\n }));\n if (column.prop == (columnOption[0] || {}).prop) list.push('title');\n if (column.row) list.push('row');\n if (column.showOverflowTooltip) list.push('overHidden');\n return list;\n }\n }\n}));\n\n//# sourceURL=webpack://AVUE/./packages/element-plus/crud/grid/index.vue?./node_modules/.pnpm/babel-loader@8.4.1_@babel+core@7.25.8_webpack@4.47.0/node_modules/babel-loader/lib!./node_modules/.pnpm/vue-loader@16.8.3_@vue+compiler-sfc@3.5.12_vue@3.5.12_webpack@4.47.0/node_modules/vue-loader/dist??ref--1");
709
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core_create__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core/create */ \"./src/core/create.js\");\n/* harmony import */ var core_locale__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core/locale */ \"./src/core/locale.js\");\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (Object(core_create__WEBPACK_IMPORTED_MODULE_0__[\"default\"])({\n name: 'crud__grid',\n inject: [\"crud\"],\n mixins: [core_locale__WEBPACK_IMPORTED_MODULE_1__[\"default\"]],\n props: {\n rowStyle: Function,\n cellStyle: Function,\n cellClassName: Function,\n rowClassName: Function,\n height: [String, Number],\n data: Array\n },\n data: function data() {\n return {\n checkList: [],\n span: 8,\n xsSpan: 12,\n id: 'crud-grid',\n column: []\n };\n },\n computed: {\n styleName: function styleName() {\n return {\n height: this.crud.tableHeight + 'px'\n };\n }\n },\n methods: {\n doLayout: function doLayout() {},\n clearSelection: function clearSelection() {\n this.checkList = [];\n this.checkListChange(this.checkList);\n },\n toggleAllSelection: function toggleAllSelection() {\n if (this.checkList.length === this.crud.data.length) {\n this.checkList = [];\n } else {\n this.checkList = this.crud.data.map(function (ele, index) {\n return index;\n });\n }\n this.checkListChange(this.checkList);\n },\n toggleRowSelection: function toggleRowSelection(data, selected) {\n var index = this.crud.data.findIndex(function (ele) {\n return JSON.stringify(ele) == JSON.stringify(data);\n });\n if (selected && index != -1) {\n this.checkList.push(index);\n } else {\n var checkIndex = this.checkList.findIndex(function (ele) {\n return ele == index;\n });\n this.checkList.splice(checkIndex, 1);\n }\n this.checkListChange(this.checkList);\n },\n checkListChange: function checkListChange(val) {\n var result = [];\n var data = this.crud.data;\n val.forEach(function (ele) {\n result.push(data[ele]);\n });\n this.$emit('selection-change', result);\n },\n handleRowDblClick: function handleRowDblClick(row, index) {\n this.$emit('row-dblclick', row, index);\n },\n handleRowClick: function handleRowClick(row, index) {\n this.$emit('row-click', row, index);\n },\n handleCellDblClick: function handleCellDblClick(row, column) {\n this.$emit('cell-dblclick', row, column);\n },\n handleCellClick: function handleCellClick(row, column) {\n this.$emit('cell-click', row, column);\n },\n getGradientColor: function getGradientColor(row, index) {\n var styles = {};\n if (typeof this.crud.tableOption.gridBackground == 'function') {\n styles.background = this.crud.tableOption.gridBackground(row, index);\n } else if (this.crud.tableOption.gridBackgroundImage) {\n styles.backgroundImage = \"url(\".concat(this.crud.tableOption.gridBackgroundImage, \")\");\n } else {\n styles.background = this.crud.tableOption.gridBackground || 'linear-gradient(to bottom, rgba(88, 159, 248, 0.1), white)';\n }\n return styles;\n },\n getCellStyle: function getCellStyle(row, index, column, columnIndex) {\n if (this.cellStyle) return this.cellStyle({\n row: row,\n rowIndex: index,\n column: column,\n columnIndex: columnIndex\n });\n },\n getRowStyle: function getRowStyle(row, index) {\n if (this.rowStyle) return this.rowStyle({\n row: row,\n rowIndex: index\n });\n },\n getRowClass: function getRowClass(row, index) {\n if (this.rowClassName) return this.rowClassName({\n row: row,\n rowIndex: index\n });\n },\n getClass: function getClass(row, index, column) {\n var list = [];\n var firstIndex = this.crud.columnOption.findIndex(function (item) {\n return item.hide !== true;\n });\n var columnOption = this.crud.columnOption || [];\n if (this.cellClassName) list.push(this.cellClassName({\n row: row,\n rowIndex: index,\n column: column\n }));\n if (column.prop == (columnOption[firstIndex || 0] || {}).prop) list.push('title');\n if (column.row) list.push('row');\n if (column.showOverflowTooltip) list.push('overHidden');\n return list;\n }\n }\n}));\n\n//# sourceURL=webpack://AVUE/./packages/element-plus/crud/grid/index.vue?./node_modules/.pnpm/babel-loader@8.4.1_@babel+core@7.25.8_webpack@4.47.0/node_modules/babel-loader/lib!./node_modules/.pnpm/vue-loader@16.8.3_@vue+compiler-sfc@3.5.12_vue@3.5.12_webpack@4.47.0/node_modules/vue-loader/dist??ref--1");
710
710
 
711
711
  /***/ }),
712
712
 
@@ -1042,7 +1042,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core
1042
1042
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
1043
1043
 
1044
1044
  "use strict";
1045
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core_packages__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core/packages */ \"./src/core/packages.js\");\n/* harmony import */ var core_create__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core/create */ \"./src/core/create.js\");\n/* harmony import */ var common_common_props_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! common/common/props.js */ \"./packages/core/common/props.js\");\n/* harmony import */ var common_common_event_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! common/common/event.js */ \"./packages/core/common/event.js\");\n/* harmony import */ var core_dic__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! core/dic */ \"./src/core/dic.js\");\n/* harmony import */ var global_variable__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! global/variable */ \"./src/global/variable.js\");\n\n\n\n\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (Object(core_create__WEBPACK_IMPORTED_MODULE_1__[\"default\"])({\n name: \"select\",\n mixins: [Object(common_common_props_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(), Object(common_common_event_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"])()],\n data: function data() {\n return {\n checked: false,\n indeterminate: false,\n create: false,\n netDic: [],\n loading: false\n };\n },\n props: {\n virtualize: Boolean,\n valueOnClear: {\n type: [String, Number, Boolean, Function],\n \"default\": undefined\n },\n loadingText: {\n type: String\n },\n noMatchText: {\n type: String\n },\n noDataText: {\n type: String\n },\n drag: {\n type: Boolean,\n \"default\": false\n },\n remote: {\n type: Boolean,\n \"default\": false\n },\n tags: {\n type: Boolean,\n \"default\": false\n },\n collapseTags: Boolean,\n collapseTagsTooltip: Boolean,\n maxCollapseTags: Number,\n limit: {\n type: Number,\n \"default\": 0\n },\n filterable: {\n type: Boolean,\n \"default\": false\n },\n allowCreate: {\n type: Boolean,\n \"default\": false\n },\n defaultFirstOption: {\n type: Boolean,\n \"default\": false\n },\n all: {\n type: Boolean,\n \"default\": false\n },\n popperAppendToBody: {\n type: Boolean,\n \"default\": true\n }\n },\n watch: {\n dic: {\n handler: function handler(val) {\n this.netDic = val;\n },\n immediate: true\n }\n },\n computed: {\n classNameKey: function classNameKey() {\n return this.props.className || 'className';\n },\n componentName: function componentName() {\n return 'elSelect' + (this.virtualize ? 'V2' : '');\n }\n },\n mounted: function mounted() {\n if (this.drag) {\n this.setSort();\n }\n },\n methods: {\n handleModelValue: function handleModelValue(val) {\n if (!this.validatenull(this.text)) {\n if (this.remote && !this.created) {\n this.created = true;\n this.handleRemoteMethod(this.multiple ? this.text.join(global_variable__WEBPACK_IMPORTED_MODULE_5__[\"DIC_SPLIT\"]) : this.text);\n }\n }\n if (this.multiple) {\n if (this.text.length == 0) {\n this.checked = false;\n this.indeterminate = false;\n } else if (this.text.length == this.netDic.length) {\n this.checked = true;\n this.indeterminate = false;\n } else {\n this.checked = false;\n this.indeterminate = true;\n }\n }\n },\n setSort: function setSort() {\n var _this = this;\n if (!window.Sortable) {\n core_packages__WEBPACK_IMPORTED_MODULE_0__[\"default\"].logs('Sortable');\n return;\n }\n var el = this.$refs.main.$el.querySelectorAll('.el-select__selection')[0];\n this.sortable = window.Sortable.create(el, {\n animation: 100,\n onEnd: function onEnd(evt) {\n var targetRow = _this.modelValue.splice(evt.oldIndex, 1)[0];\n _this.modelValue.splice(evt.newIndex, 0, targetRow);\n }\n });\n },\n handleRemoteMethod: function handleRemoteMethod(query) {\n var _this2 = this;\n this.loading = true;\n Object(core_dic__WEBPACK_IMPORTED_MODULE_4__[\"sendDic\"])({\n column: this.column,\n value: query\n }, this).then(function (res) {\n _this2.loading = false;\n _this2.netDic = res;\n });\n },\n checkChange: function checkChange(val) {\n var _this3 = this;\n this.text = [];\n this.checked = val;\n this.indeterminate = false;\n if (val) {\n this.text = this.netDic.filter(function (ele) {\n return !ele[_this3.disabledKey];\n }).map(function (ele) {\n return ele[_this3.valueKey];\n });\n }\n }\n }\n}));\n\n//# sourceURL=webpack://AVUE/./packages/element-plus/select/index.vue?./node_modules/.pnpm/babel-loader@8.4.1_@babel+core@7.25.8_webpack@4.47.0/node_modules/babel-loader/lib!./node_modules/.pnpm/vue-loader@16.8.3_@vue+compiler-sfc@3.5.12_vue@3.5.12_webpack@4.47.0/node_modules/vue-loader/dist??ref--1");
1045
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core_packages__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core/packages */ \"./src/core/packages.js\");\n/* harmony import */ var core_create__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core/create */ \"./src/core/create.js\");\n/* harmony import */ var common_common_props_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! common/common/props.js */ \"./packages/core/common/props.js\");\n/* harmony import */ var common_common_event_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! common/common/event.js */ \"./packages/core/common/event.js\");\n/* harmony import */ var core_dic__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! core/dic */ \"./src/core/dic.js\");\n/* harmony import */ var global_variable__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! global/variable */ \"./src/global/variable.js\");\n\n\n\n\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (Object(core_create__WEBPACK_IMPORTED_MODULE_1__[\"default\"])({\n name: \"select\",\n mixins: [Object(common_common_props_js__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(), Object(common_common_event_js__WEBPACK_IMPORTED_MODULE_3__[\"default\"])()],\n data: function data() {\n return {\n checked: false,\n indeterminate: false,\n create: false,\n netDic: [],\n loading: false\n };\n },\n props: {\n virtualize: Boolean,\n valueOnClear: {\n type: [String, Number, Boolean, Function],\n \"default\": undefined\n },\n loadingText: {\n type: String\n },\n noMatchText: {\n type: String\n },\n noDataText: {\n type: String\n },\n drag: {\n type: Boolean,\n \"default\": false\n },\n remote: {\n type: Boolean,\n \"default\": false\n },\n tags: {\n type: Boolean,\n \"default\": false\n },\n collapseTags: Boolean,\n collapseTagsTooltip: Boolean,\n maxCollapseTags: Number,\n limit: {\n type: Number,\n \"default\": 0\n },\n filterable: {\n type: Boolean,\n \"default\": false\n },\n allowCreate: {\n type: Boolean,\n \"default\": false\n },\n defaultFirstOption: {\n type: Boolean,\n \"default\": false\n },\n all: {\n type: Boolean,\n \"default\": false\n },\n popperAppendToBody: {\n type: Boolean,\n \"default\": true\n }\n },\n watch: {\n dic: {\n handler: function handler(val) {\n this.netDic = val;\n },\n immediate: true\n }\n },\n computed: {\n classNameKey: function classNameKey() {\n return this.props.className || 'className';\n },\n componentName: function componentName() {\n return 'elSelect' + (this.virtualize ? 'V2' : '');\n }\n },\n mounted: function mounted() {\n if (this.drag) {\n this.setSort();\n }\n },\n methods: {\n handleModelValue: function handleModelValue(val) {\n if (!this.validatenull(this.text)) {\n if (this.remote && !this.created) {\n this.created = true;\n this.handleRemoteMethod(this.multiple ? this.text.join(global_variable__WEBPACK_IMPORTED_MODULE_5__[\"DIC_SPLIT\"]) : this.text);\n }\n }\n if (this.multiple) {\n if (this.text.length == 0) {\n this.checked = false;\n this.indeterminate = false;\n } else if (this.text.length == this.netDic.length) {\n this.checked = true;\n this.indeterminate = false;\n } else {\n this.indeterminate = true;\n }\n }\n },\n setSort: function setSort() {\n var _this = this;\n if (!window.Sortable) {\n core_packages__WEBPACK_IMPORTED_MODULE_0__[\"default\"].logs('Sortable');\n return;\n }\n var el = this.$refs.main.$el.querySelectorAll('.el-select__selection')[0];\n this.sortable = window.Sortable.create(el, {\n animation: 100,\n onEnd: function onEnd(evt) {\n var targetRow = _this.modelValue.splice(evt.oldIndex, 1)[0];\n _this.modelValue.splice(evt.newIndex, 0, targetRow);\n }\n });\n },\n handleRemoteMethod: function handleRemoteMethod(query) {\n var _this2 = this;\n this.loading = true;\n Object(core_dic__WEBPACK_IMPORTED_MODULE_4__[\"sendDic\"])({\n column: this.column,\n value: query\n }, this).then(function (res) {\n _this2.loading = false;\n _this2.netDic = res;\n });\n },\n checkChange: function checkChange(val) {\n var _this3 = this;\n this.text = [];\n this.checked = val;\n this.indeterminate = false;\n if (val) {\n this.text = this.netDic.filter(function (ele) {\n return !ele[_this3.disabledKey];\n }).map(function (ele) {\n return ele[_this3.valueKey];\n });\n }\n }\n }\n}));\n\n//# sourceURL=webpack://AVUE/./packages/element-plus/select/index.vue?./node_modules/.pnpm/babel-loader@8.4.1_@babel+core@7.25.8_webpack@4.47.0/node_modules/babel-loader/lib!./node_modules/.pnpm/vue-loader@16.8.3_@vue+compiler-sfc@3.5.12_vue@3.5.12_webpack@4.47.0/node_modules/vue-loader/dist??ref--1");
1046
1046
 
1047
1047
  /***/ }),
1048
1048
 
@@ -2574,7 +2574,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) *
2574
2574
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
2575
2575
 
2576
2576
  "use strict";
2577
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return render; });\n/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! vue */ \"vue\");\n/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(vue__WEBPACK_IMPORTED_MODULE_0__);\n\n\nconst _hoisted_1 = [\"innerHTML\"]\n\nfunction render(_ctx, _cache, $props, $setup, $data, $options) {\n const _component_custom = Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"resolveComponent\"])(\"custom\")\n\n return ($props.render)\n ? (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createBlock\"])(_component_custom, {\n key: 0,\n render: $props.render,\n index: $props.index,\n row: $props.row,\n column: $props.column,\n params: $options.params,\n event: $options.event\n }, null, 8 /* PROPS */, [\"render\", \"index\", \"row\", \"column\", \"params\", \"event\"]))\n : (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createBlock\"])(Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"resolveDynamicComponent\"])($options.getComponent($props.column)), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"mergeProps\"])({\n key: 1,\n modelValue: $options.text,\n \"onUpdate:modelValue\": _cache[0] || (_cache[0] = $event => (($options.text) = $event))\n }, $options.getBind($props.column), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"toHandlers\"])($options.event), {\n column: Object.assign($props.column,$options.params),\n dic: $props.dic,\n clearValidate: $props.clearValidate,\n \"box-type\": $props.boxType,\n ref: \"temp\",\n disabled: $props.column.disabled || $props.disabled,\n readonly: $props.column.readonly || $props.readonly,\n placeholder: $options.getPlaceholder($props.column),\n props: $props.column.props || $props.props,\n propsHttp: $props.column.propsHttp || $props.propsHttp,\n size: $props.column.size || $props.size,\n \"table-data\": $props.tableData,\n type: $props.type || $props.column.type,\n \"column-slot\": $props.columnSlot,\n onKeyup: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"withKeys\"])($options.enterChange, [\"enter\"])\n }), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createSlots\"])({ _: 2 /* DYNAMIC */ }, [\n (_ctx.$slots.default)\n ? {\n name: \"default\",\n fn: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"withCtx\"])((scope) => [\n Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"renderSlot\"])(_ctx.$slots, \"default\", Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"normalizeProps\"])(Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"guardReactiveProps\"])(scope)))\n ]),\n key: \"0\"\n }\n : ($options.params.html)\n ? {\n name: \"default\",\n fn: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"withCtx\"])(() => [\n Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementVNode\"])(\"span\", {\n innerHTML: $options.params.html\n }, null, 8 /* PROPS */, _hoisted_1)\n ]),\n key: \"1\"\n }\n : undefined,\n Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"renderList\"])($props.columnSlot, (item) => {\n return {\n name: item,\n fn: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"withCtx\"])((scope) => [\n Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"renderSlot\"])(_ctx.$slots, item, Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"normalizeProps\"])(Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"guardReactiveProps\"])(scope)))\n ])\n }\n })\n ]), 1040 /* FULL_PROPS, DYNAMIC_SLOTS */, [\"modelValue\", \"column\", \"dic\", \"clearValidate\", \"box-type\", \"disabled\", \"readonly\", \"placeholder\", \"props\", \"propsHttp\", \"size\", \"table-data\", \"type\", \"column-slot\", \"onKeyup\"]))\n}\n\n//# sourceURL=webpack://AVUE/./packages/core/components/form/index.vue?./node_modules/.pnpm/vue-loader@16.8.3_@vue+compiler-sfc@3.5.12_vue@3.5.12_webpack@4.47.0/node_modules/vue-loader/dist/templateLoader.js??ref--5!./node_modules/.pnpm/vue-loader@16.8.3_@vue+compiler-sfc@3.5.12_vue@3.5.12_webpack@4.47.0/node_modules/vue-loader/dist??ref--1");
2577
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return render; });\n/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! vue */ \"vue\");\n/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(vue__WEBPACK_IMPORTED_MODULE_0__);\n\n\nconst _hoisted_1 = [\"innerHTML\"]\n\nfunction render(_ctx, _cache, $props, $setup, $data, $options) {\n const _component_custom = Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"resolveComponent\"])(\"custom\")\n\n return ($props.render)\n ? (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createBlock\"])(_component_custom, {\n key: 0,\n render: $props.render,\n index: $props.index,\n row: $props.row,\n column: $props.column,\n params: $options.params,\n event: $options.event\n }, null, 8 /* PROPS */, [\"render\", \"index\", \"row\", \"column\", \"params\", \"event\"]))\n : (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createBlock\"])(Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"resolveDynamicComponent\"])($options.getComponent($props.column)), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"mergeProps\"])({\n key: 1,\n modelValue: $options.text,\n \"onUpdate:modelValue\": _cache[0] || (_cache[0] = $event => (($options.text) = $event))\n }, $options.getBind($props.column), { align: \"left\" }, Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"toHandlers\"])($options.event), {\n column: Object.assign($props.column,$options.params),\n dic: $props.dic,\n clearValidate: $props.clearValidate,\n \"box-type\": $props.boxType,\n ref: \"temp\",\n disabled: $props.column.disabled || $props.disabled,\n readonly: $props.column.readonly || $props.readonly,\n placeholder: $options.getPlaceholder($props.column),\n props: $props.column.props || $props.props,\n propsHttp: $props.column.propsHttp || $props.propsHttp,\n size: $props.column.size || $props.size,\n \"table-data\": $props.tableData,\n type: $props.type || $props.column.type,\n \"column-slot\": $props.columnSlot,\n onKeyup: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"withKeys\"])($options.enterChange, [\"enter\"])\n }), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createSlots\"])({ _: 2 /* DYNAMIC */ }, [\n (_ctx.$slots.default)\n ? {\n name: \"default\",\n fn: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"withCtx\"])((scope) => [\n Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"renderSlot\"])(_ctx.$slots, \"default\", Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"normalizeProps\"])(Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"guardReactiveProps\"])(scope)))\n ]),\n key: \"0\"\n }\n : ($options.params.html)\n ? {\n name: \"default\",\n fn: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"withCtx\"])(() => [\n Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementVNode\"])(\"span\", {\n innerHTML: $options.params.html\n }, null, 8 /* PROPS */, _hoisted_1)\n ]),\n key: \"1\"\n }\n : undefined,\n Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"renderList\"])($props.columnSlot, (item) => {\n return {\n name: item,\n fn: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"withCtx\"])((scope) => [\n Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"renderSlot\"])(_ctx.$slots, item, Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"normalizeProps\"])(Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"guardReactiveProps\"])(scope)))\n ])\n }\n })\n ]), 1040 /* FULL_PROPS, DYNAMIC_SLOTS */, [\"modelValue\", \"column\", \"dic\", \"clearValidate\", \"box-type\", \"disabled\", \"readonly\", \"placeholder\", \"props\", \"propsHttp\", \"size\", \"table-data\", \"type\", \"column-slot\", \"onKeyup\"]))\n}\n\n//# sourceURL=webpack://AVUE/./packages/core/components/form/index.vue?./node_modules/.pnpm/vue-loader@16.8.3_@vue+compiler-sfc@3.5.12_vue@3.5.12_webpack@4.47.0/node_modules/vue-loader/dist/templateLoader.js??ref--5!./node_modules/.pnpm/vue-loader@16.8.3_@vue+compiler-sfc@3.5.12_vue@3.5.12_webpack@4.47.0/node_modules/vue-loader/dist??ref--1");
2578
2578
 
2579
2579
  /***/ }),
2580
2580
 
@@ -3306,7 +3306,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) *
3306
3306
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3307
3307
 
3308
3308
  "use strict";
3309
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return render; });\n/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! vue */ \"vue\");\n/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(vue__WEBPACK_IMPORTED_MODULE_0__);\n\n\nfunction render(_ctx, _cache, $props, $setup, $data, $options) {\n const _component_el_option = Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"resolveComponent\"])(\"el-option\")\n const _component_el_option_group = Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"resolveComponent\"])(\"el-option-group\")\n const _component_el_checkbox = Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"resolveComponent\"])(\"el-checkbox\")\n\n return (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createBlock\"])(Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"resolveDynamicComponent\"])(_ctx.componentName), {\n ref: \"main\",\n class: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"normalizeClass\"])(_ctx.b()),\n modelValue: _ctx.text,\n \"onUpdate:modelValue\": _cache[0] || (_cache[0] = $event => ((_ctx.text) = $event)),\n size: _ctx.size,\n options: _ctx.netDic,\n props: _ctx.props,\n loading: _ctx.loading,\n \"loading-text\": _ctx.loadingText,\n \"value-on-clear\": _ctx.valueOnClear,\n multiple: _ctx.multiple,\n filterable: _ctx.remote?true:_ctx.filterable,\n remote: _ctx.remote,\n readonly: _ctx.readonly,\n \"no-match-text\": _ctx.noMatchText,\n \"no-data-text\": _ctx.noDataText,\n \"remote-method\": _ctx.remote?_ctx.handleRemoteMethod:undefined,\n \"popper-class\": _ctx.popperClass,\n \"popper-append-to-body\": _ctx.popperAppendToBody,\n \"collapse-tags\": _ctx.tags || _ctx.collapseTags,\n \"collapse-tags-tooltip\": _ctx.collapseTagsTooltip,\n \"max-collapse-tags\": _ctx.maxCollapseTags,\n clearable: _ctx.clearableVal,\n placeholder: _ctx.placeholder,\n onFocus: _ctx.handleFocus,\n onBlur: _ctx.handleBlur,\n onClick: _ctx.handleClick,\n \"multiple-limit\": _ctx.limit,\n \"allow-create\": _ctx.allowCreate,\n \"default-first-option\": _ctx.defaultFirstOption,\n disabled: _ctx.disabled\n }, {\n default: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"withCtx\"])(({item}) => [\n (_ctx.virtualize)\n ? (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementBlock\"])(vue__WEBPACK_IMPORTED_MODULE_0__[\"Fragment\"], { key: 0 }, [\n (_ctx.$slots.default)\n ? Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"renderSlot\"])(_ctx.$slots, \"default\", {\n key: 0,\n label: _ctx.labelKey,\n value: _ctx.valueKey,\n item: item\n })\n : (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementBlock\"])(vue__WEBPACK_IMPORTED_MODULE_0__[\"Fragment\"], { key: 1 }, [\n Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementVNode\"])(\"span\", null, Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"toDisplayString\"])(_ctx.getLabelText(item)), 1 /* TEXT */),\n (item[_ctx.descKey])\n ? (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementBlock\"])(\"span\", {\n key: 0,\n class: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"normalizeClass\"])(_ctx.b('desc'))\n }, Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"toDisplayString\"])(item[_ctx.descKey]), 3 /* TEXT, CLASS */))\n : Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createCommentVNode\"])(\"v-if\", true)\n ], 64 /* STABLE_FRAGMENT */))\n ], 64 /* STABLE_FRAGMENT */))\n : (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementBlock\"])(vue__WEBPACK_IMPORTED_MODULE_0__[\"Fragment\"], { key: 1 }, [\n (_ctx.isGroup)\n ? (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(true), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementBlock\"])(vue__WEBPACK_IMPORTED_MODULE_0__[\"Fragment\"], { key: 0 }, Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"renderList\"])(_ctx.netDic, (item, index) => {\n return (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createBlock\"])(_component_el_option_group, {\n key: index,\n label: _ctx.getLabelText(item)\n }, {\n default: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"withCtx\"])(() => [\n (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(true), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementBlock\"])(vue__WEBPACK_IMPORTED_MODULE_0__[\"Fragment\"], null, Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"renderList\"])(item[_ctx.groupsKey], (citem, cindex) => {\n return (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createBlock\"])(_component_el_option, {\n key: citem[_ctx.valueKey],\n class: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"normalizeClass\"])(citem[_ctx.classNameKey]),\n disabled: citem[_ctx.disabledKey],\n label: _ctx.getLabelText(citem),\n value: citem[_ctx.valueKey]\n }, {\n default: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"withCtx\"])(() => [\n (_ctx.$slots.default)\n ? Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"renderSlot\"])(_ctx.$slots, \"default\", {\n key: 0,\n label: _ctx.labelKey,\n value: _ctx.valueKey,\n item: citem\n })\n : (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementBlock\"])(vue__WEBPACK_IMPORTED_MODULE_0__[\"Fragment\"], { key: 1 }, [\n Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementVNode\"])(\"span\", null, Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"toDisplayString\"])(_ctx.getLabelText(citem)), 1 /* TEXT */),\n (citem[_ctx.descKey])\n ? (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementBlock\"])(\"span\", {\n key: 0,\n class: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"normalizeClass\"])(_ctx.b('desc'))\n }, Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"toDisplayString\"])(citem[_ctx.descKey]), 3 /* TEXT, CLASS */))\n : Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createCommentVNode\"])(\"v-if\", true)\n ], 64 /* STABLE_FRAGMENT */))\n ]),\n _: 2 /* DYNAMIC */\n }, 1032 /* PROPS, DYNAMIC_SLOTS */, [\"class\", \"disabled\", \"label\", \"value\"]))\n }), 128 /* KEYED_FRAGMENT */))\n ]),\n _: 2 /* DYNAMIC */\n }, 1032 /* PROPS, DYNAMIC_SLOTS */, [\"label\"]))\n }), 128 /* KEYED_FRAGMENT */))\n : (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementBlock\"])(vue__WEBPACK_IMPORTED_MODULE_0__[\"Fragment\"], { key: 1 }, [\n Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementVNode\"])(\"div\", {\n class: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"normalizeClass\"])(_ctx.b('check'))\n }, [\n (_ctx.all&&_ctx.multiple)\n ? (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createBlock\"])(_component_el_checkbox, {\n key: 0,\n value: _ctx.checked,\n checked: _ctx.checked,\n disabled: _ctx.disabled,\n indeterminate: _ctx.indeterminate,\n onChange: _ctx.checkChange\n }, {\n default: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"withCtx\"])(() => _cache[1] || (_cache[1] = [\n Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createTextVNode\"])(\"全选\")\n ])),\n _: 1 /* STABLE */\n }, 8 /* PROPS */, [\"value\", \"checked\", \"disabled\", \"indeterminate\", \"onChange\"]))\n : Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createCommentVNode\"])(\"v-if\", true)\n ], 2 /* CLASS */),\n (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(true), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementBlock\"])(vue__WEBPACK_IMPORTED_MODULE_0__[\"Fragment\"], null, Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"renderList\"])(_ctx.netDic, (item, index) => {\n return (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createBlock\"])(_component_el_option, {\n key: item[_ctx.valueKey],\n class: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"normalizeClass\"])(item[_ctx.classNameKey]),\n disabled: item[_ctx.disabledKey],\n label: _ctx.getLabelText(item) ,\n value: item[_ctx.valueKey]\n }, {\n default: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"withCtx\"])(() => [\n (_ctx.$slots.default)\n ? Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"renderSlot\"])(_ctx.$slots, \"default\", {\n key: 0,\n label: _ctx.labelKey,\n value: _ctx.valueKey,\n item: item\n })\n : (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementBlock\"])(vue__WEBPACK_IMPORTED_MODULE_0__[\"Fragment\"], { key: 1 }, [\n Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementVNode\"])(\"span\", null, Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"toDisplayString\"])(_ctx.getLabelText(item)), 1 /* TEXT */),\n (item[_ctx.descKey])\n ? (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementBlock\"])(\"span\", {\n key: 0,\n class: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"normalizeClass\"])(_ctx.b('desc'))\n }, Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"toDisplayString\"])(item[_ctx.descKey]), 3 /* TEXT, CLASS */))\n : Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createCommentVNode\"])(\"v-if\", true)\n ], 64 /* STABLE_FRAGMENT */))\n ]),\n _: 2 /* DYNAMIC */\n }, 1032 /* PROPS, DYNAMIC_SLOTS */, [\"class\", \"disabled\", \"label\", \"value\"]))\n }), 128 /* KEYED_FRAGMENT */))\n ], 64 /* STABLE_FRAGMENT */))\n ], 64 /* STABLE_FRAGMENT */))\n ]),\n _: 3 /* FORWARDED */\n }, 40 /* PROPS, NEED_HYDRATION */, [\"class\", \"modelValue\", \"size\", \"options\", \"props\", \"loading\", \"loading-text\", \"value-on-clear\", \"multiple\", \"filterable\", \"remote\", \"readonly\", \"no-match-text\", \"no-data-text\", \"remote-method\", \"popper-class\", \"popper-append-to-body\", \"collapse-tags\", \"collapse-tags-tooltip\", \"max-collapse-tags\", \"clearable\", \"placeholder\", \"onFocus\", \"onBlur\", \"onClick\", \"multiple-limit\", \"allow-create\", \"default-first-option\", \"disabled\"]))\n}\n\n//# sourceURL=webpack://AVUE/./packages/element-plus/select/index.vue?./node_modules/.pnpm/vue-loader@16.8.3_@vue+compiler-sfc@3.5.12_vue@3.5.12_webpack@4.47.0/node_modules/vue-loader/dist/templateLoader.js??ref--5!./node_modules/.pnpm/vue-loader@16.8.3_@vue+compiler-sfc@3.5.12_vue@3.5.12_webpack@4.47.0/node_modules/vue-loader/dist??ref--1");
3309
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"render\", function() { return render; });\n/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! vue */ \"vue\");\n/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(vue__WEBPACK_IMPORTED_MODULE_0__);\n\n\nfunction render(_ctx, _cache, $props, $setup, $data, $options) {\n const _component_el_option = Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"resolveComponent\"])(\"el-option\")\n const _component_el_option_group = Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"resolveComponent\"])(\"el-option-group\")\n const _component_el_checkbox = Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"resolveComponent\"])(\"el-checkbox\")\n\n return (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createBlock\"])(Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"resolveDynamicComponent\"])(_ctx.componentName), {\n ref: \"main\",\n class: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"normalizeClass\"])(_ctx.b()),\n modelValue: _ctx.text,\n \"onUpdate:modelValue\": _cache[1] || (_cache[1] = $event => ((_ctx.text) = $event)),\n size: _ctx.size,\n options: _ctx.netDic,\n props: _ctx.props,\n loading: _ctx.loading,\n \"loading-text\": _ctx.loadingText,\n \"value-on-clear\": _ctx.valueOnClear,\n multiple: _ctx.multiple,\n filterable: _ctx.remote?true:_ctx.filterable,\n remote: _ctx.remote,\n readonly: _ctx.readonly,\n \"no-match-text\": _ctx.noMatchText,\n \"no-data-text\": _ctx.noDataText,\n \"remote-method\": _ctx.remote?_ctx.handleRemoteMethod:undefined,\n \"popper-class\": _ctx.popperClass,\n \"popper-append-to-body\": _ctx.popperAppendToBody,\n \"collapse-tags\": _ctx.tags || _ctx.collapseTags,\n \"collapse-tags-tooltip\": _ctx.collapseTagsTooltip,\n \"max-collapse-tags\": _ctx.maxCollapseTags,\n clearable: _ctx.clearableVal,\n placeholder: _ctx.placeholder,\n onFocus: _ctx.handleFocus,\n onBlur: _ctx.handleBlur,\n onClick: _ctx.handleClick,\n \"multiple-limit\": _ctx.limit,\n \"allow-create\": _ctx.allowCreate,\n \"default-first-option\": _ctx.defaultFirstOption,\n disabled: _ctx.disabled\n }, {\n default: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"withCtx\"])(({item}) => [\n (_ctx.virtualize)\n ? (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementBlock\"])(vue__WEBPACK_IMPORTED_MODULE_0__[\"Fragment\"], { key: 0 }, [\n (_ctx.$slots.default)\n ? Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"renderSlot\"])(_ctx.$slots, \"default\", {\n key: 0,\n label: _ctx.labelKey,\n value: _ctx.valueKey,\n item: item\n })\n : (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementBlock\"])(vue__WEBPACK_IMPORTED_MODULE_0__[\"Fragment\"], { key: 1 }, [\n Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementVNode\"])(\"span\", null, Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"toDisplayString\"])(_ctx.getLabelText(item)), 1 /* TEXT */),\n (item[_ctx.descKey])\n ? (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementBlock\"])(\"span\", {\n key: 0,\n class: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"normalizeClass\"])(_ctx.b('desc'))\n }, Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"toDisplayString\"])(item[_ctx.descKey]), 3 /* TEXT, CLASS */))\n : Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createCommentVNode\"])(\"v-if\", true)\n ], 64 /* STABLE_FRAGMENT */))\n ], 64 /* STABLE_FRAGMENT */))\n : (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementBlock\"])(vue__WEBPACK_IMPORTED_MODULE_0__[\"Fragment\"], { key: 1 }, [\n (_ctx.isGroup)\n ? (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(true), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementBlock\"])(vue__WEBPACK_IMPORTED_MODULE_0__[\"Fragment\"], { key: 0 }, Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"renderList\"])(_ctx.netDic, (item, index) => {\n return (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createBlock\"])(_component_el_option_group, {\n key: index,\n label: _ctx.getLabelText(item)\n }, {\n default: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"withCtx\"])(() => [\n (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(true), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementBlock\"])(vue__WEBPACK_IMPORTED_MODULE_0__[\"Fragment\"], null, Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"renderList\"])(item[_ctx.groupsKey], (citem, cindex) => {\n return (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createBlock\"])(_component_el_option, {\n key: citem[_ctx.valueKey],\n class: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"normalizeClass\"])(citem[_ctx.classNameKey]),\n disabled: citem[_ctx.disabledKey],\n label: _ctx.getLabelText(citem),\n value: citem[_ctx.valueKey]\n }, {\n default: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"withCtx\"])(() => [\n (_ctx.$slots.default)\n ? Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"renderSlot\"])(_ctx.$slots, \"default\", {\n key: 0,\n label: _ctx.labelKey,\n value: _ctx.valueKey,\n item: citem\n })\n : (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementBlock\"])(vue__WEBPACK_IMPORTED_MODULE_0__[\"Fragment\"], { key: 1 }, [\n Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementVNode\"])(\"span\", null, Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"toDisplayString\"])(_ctx.getLabelText(citem)), 1 /* TEXT */),\n (citem[_ctx.descKey])\n ? (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementBlock\"])(\"span\", {\n key: 0,\n class: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"normalizeClass\"])(_ctx.b('desc'))\n }, Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"toDisplayString\"])(citem[_ctx.descKey]), 3 /* TEXT, CLASS */))\n : Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createCommentVNode\"])(\"v-if\", true)\n ], 64 /* STABLE_FRAGMENT */))\n ]),\n _: 2 /* DYNAMIC */\n }, 1032 /* PROPS, DYNAMIC_SLOTS */, [\"class\", \"disabled\", \"label\", \"value\"]))\n }), 128 /* KEYED_FRAGMENT */))\n ]),\n _: 2 /* DYNAMIC */\n }, 1032 /* PROPS, DYNAMIC_SLOTS */, [\"label\"]))\n }), 128 /* KEYED_FRAGMENT */))\n : (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementBlock\"])(vue__WEBPACK_IMPORTED_MODULE_0__[\"Fragment\"], { key: 1 }, [\n Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementVNode\"])(\"div\", {\n class: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"normalizeClass\"])(_ctx.b('check'))\n }, [\n (_ctx.all&&_ctx.multiple)\n ? (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createBlock\"])(_component_el_checkbox, {\n key: 0,\n modelValue: _ctx.checked,\n \"onUpdate:modelValue\": _cache[0] || (_cache[0] = $event => ((_ctx.checked) = $event)),\n disabled: _ctx.disabled,\n indeterminate: _ctx.indeterminate,\n onChange: _ctx.checkChange\n }, {\n default: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"withCtx\"])(() => _cache[2] || (_cache[2] = [\n Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createTextVNode\"])(\"全选\")\n ])),\n _: 1 /* STABLE */\n }, 8 /* PROPS */, [\"modelValue\", \"disabled\", \"indeterminate\", \"onChange\"]))\n : Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createCommentVNode\"])(\"v-if\", true)\n ], 2 /* CLASS */),\n (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(true), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementBlock\"])(vue__WEBPACK_IMPORTED_MODULE_0__[\"Fragment\"], null, Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"renderList\"])(_ctx.netDic, (item, index) => {\n return (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createBlock\"])(_component_el_option, {\n key: item[_ctx.valueKey],\n class: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"normalizeClass\"])(item[_ctx.classNameKey]),\n disabled: item[_ctx.disabledKey],\n label: _ctx.getLabelText(item) ,\n value: item[_ctx.valueKey]\n }, {\n default: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"withCtx\"])(() => [\n (_ctx.$slots.default)\n ? Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"renderSlot\"])(_ctx.$slots, \"default\", {\n key: 0,\n label: _ctx.labelKey,\n value: _ctx.valueKey,\n item: item\n })\n : (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementBlock\"])(vue__WEBPACK_IMPORTED_MODULE_0__[\"Fragment\"], { key: 1 }, [\n Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementVNode\"])(\"span\", null, Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"toDisplayString\"])(_ctx.getLabelText(item)), 1 /* TEXT */),\n (item[_ctx.descKey])\n ? (Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"openBlock\"])(), Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createElementBlock\"])(\"span\", {\n key: 0,\n class: Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"normalizeClass\"])(_ctx.b('desc'))\n }, Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"toDisplayString\"])(item[_ctx.descKey]), 3 /* TEXT, CLASS */))\n : Object(vue__WEBPACK_IMPORTED_MODULE_0__[\"createCommentVNode\"])(\"v-if\", true)\n ], 64 /* STABLE_FRAGMENT */))\n ]),\n _: 2 /* DYNAMIC */\n }, 1032 /* PROPS, DYNAMIC_SLOTS */, [\"class\", \"disabled\", \"label\", \"value\"]))\n }), 128 /* KEYED_FRAGMENT */))\n ], 64 /* STABLE_FRAGMENT */))\n ], 64 /* STABLE_FRAGMENT */))\n ]),\n _: 3 /* FORWARDED */\n }, 40 /* PROPS, NEED_HYDRATION */, [\"class\", \"modelValue\", \"size\", \"options\", \"props\", \"loading\", \"loading-text\", \"value-on-clear\", \"multiple\", \"filterable\", \"remote\", \"readonly\", \"no-match-text\", \"no-data-text\", \"remote-method\", \"popper-class\", \"popper-append-to-body\", \"collapse-tags\", \"collapse-tags-tooltip\", \"max-collapse-tags\", \"clearable\", \"placeholder\", \"onFocus\", \"onBlur\", \"onClick\", \"multiple-limit\", \"allow-create\", \"default-first-option\", \"disabled\"]))\n}\n\n//# sourceURL=webpack://AVUE/./packages/element-plus/select/index.vue?./node_modules/.pnpm/vue-loader@16.8.3_@vue+compiler-sfc@3.5.12_vue@3.5.12_webpack@4.47.0/node_modules/vue-loader/dist/templateLoader.js??ref--5!./node_modules/.pnpm/vue-loader@16.8.3_@vue+compiler-sfc@3.5.12_vue@3.5.12_webpack@4.47.0/node_modules/vue-loader/dist??ref--1");
3310
3310
 
3311
3311
  /***/ }),
3312
3312
 
@@ -3484,7 +3484,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core
3484
3484
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
3485
3485
 
3486
3486
  "use strict";
3487
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/defineProperty */ \"./node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/defineProperty.js\");\n/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_dic__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core/dic */ \"./src/core/dic.js\");\n/* harmony import */ var global_variable__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! global/variable */ \"./src/global/variable.js\");\n/* harmony import */ var core_slot__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! core/slot */ \"./src/core/slot.js\");\n\nfunction ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }\nfunction _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0___default()(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }\n\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (function (name) {\n return {\n mixins: [core_slot__WEBPACK_IMPORTED_MODULE_3__[\"default\"]],\n emits: ['update:modelValue', 'update:defaults', 'change'],\n props: {\n tableData: {\n type: Object,\n \"default\": function _default() {\n return {};\n }\n },\n defaults: {\n type: Object,\n \"default\": function _default() {\n return {};\n }\n },\n option: {\n type: Object,\n required: true,\n \"default\": function _default() {\n return {};\n }\n }\n },\n watch: {\n defaults: {\n handler: function handler(val) {\n this.objectOption = val;\n },\n deep: true\n },\n objectOption: {\n handler: function handler(val) {\n this.$emit('update:defaults', val);\n },\n deep: true\n },\n propOption: {\n handler: function handler(list) {\n var _this = this;\n this.objectOption = {};\n list.forEach(function (ele) {\n return _this.objectOption[ele.prop] = ele;\n });\n },\n deep: true\n },\n option: {\n handler: function handler() {\n this.init(false);\n },\n deep: true\n }\n },\n data: function data() {\n return {\n DIC: {},\n cascaderDIC: {},\n tableOption: {},\n objectOption: {}\n };\n },\n mounted: function mounted() {\n this.init();\n },\n computed: {\n isMobile: function isMobile() {\n return document.body.clientWidth <= 768;\n },\n resultOption: function resultOption() {\n return _objectSpread(_objectSpread({}, this.tableOption), {\n column: this.propOption || []\n });\n },\n rowKey: function rowKey() {\n return this.tableOption.rowKey || global_variable__WEBPACK_IMPORTED_MODULE_2__[\"DIC_PROPS\"].rowKey;\n },\n formRules: function formRules() {\n var result = {};\n this.propOption.forEach(function (ele) {\n if (ele.rules && ele.display !== false) result[ele.prop] = ele.rules;\n });\n return result;\n }\n },\n methods: {\n init: function init(type) {\n var globOption = this.deepClone(this.$AVUE[\"\".concat(name, \"Option\")]);\n var option = _objectSpread(_objectSpread({}, globOption), this.option);\n this.tableOption = this.deepClone(option);\n this.handleLocalDic();\n if (type !== false) this.handleLoadDic();\n },\n dicInit: function dicInit(type) {\n if (type === 'cascader') {\n this.handleLoadCascaderDic();\n } else {\n this.handleLoadDic();\n }\n },\n updateDic: function updateDic(prop, list) {\n var _this2 = this;\n var column = this.findObject(this.propOption, prop);\n if (this.validatenull(list) && this.validatenull(prop)) {\n this.handleLoadDic();\n } else if (this.validatenull(list) && !this.validatenull(column.dicUrl)) {\n Object(core_dic__WEBPACK_IMPORTED_MODULE_1__[\"sendDic\"])({\n column: column\n }, this).then(function (list) {\n _this2.DIC[prop] = list;\n });\n } else {\n this.DIC[prop] = list;\n }\n },\n handleSetDic: function handleSetDic(list) {\n var res = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n Object.keys(res).forEach(function (ele) {\n list[ele] = res[ele];\n });\n },\n //本地字典\n handleLocalDic: function handleLocalDic() {\n Object(core_dic__WEBPACK_IMPORTED_MODULE_1__[\"loadLocalDic\"])(this.resultOption, this);\n },\n // 网络字典加载\n handleLoadDic: function handleLoadDic() {\n Object(core_dic__WEBPACK_IMPORTED_MODULE_1__[\"loadDic\"])(this.resultOption, this);\n },\n //级联字典加载\n handleLoadCascaderDic: function handleLoadCascaderDic() {\n Object(core_dic__WEBPACK_IMPORTED_MODULE_1__[\"loadCascaderDic\"])(this.propOption, this);\n }\n }\n };\n});\n\n//# sourceURL=webpack://AVUE/./packages/core/common/init.js?");
3487
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @babel/runtime/helpers/defineProperty */ \"./node_modules/.pnpm/@babel+runtime@7.26.0/node_modules/@babel/runtime/helpers/defineProperty.js\");\n/* harmony import */ var _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_dic__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core/dic */ \"./src/core/dic.js\");\n/* harmony import */ var global_variable__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! global/variable */ \"./src/global/variable.js\");\n/* harmony import */ var core_slot__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! core/slot */ \"./src/core/slot.js\");\n\nfunction ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }\nfunction _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _babel_runtime_helpers_defineProperty__WEBPACK_IMPORTED_MODULE_0___default()(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }\n\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (function (name) {\n return {\n mixins: [core_slot__WEBPACK_IMPORTED_MODULE_3__[\"default\"]],\n emits: ['update:modelValue', 'change'],\n props: {\n tableData: {\n type: Object,\n \"default\": function _default() {\n return {};\n }\n },\n option: {\n type: Object,\n required: true,\n \"default\": function _default() {\n return {};\n }\n }\n },\n watch: {\n propOption: {\n handler: function handler(list) {\n var _this = this;\n list.forEach(function (ele) {\n return _this.objectOption[ele.prop] = ele;\n });\n },\n deep: true\n },\n option: {\n handler: function handler() {\n this.init(false);\n },\n deep: true\n }\n },\n data: function data() {\n return {\n DIC: {},\n cascaderDIC: {},\n tableOption: {},\n objectOption: {}\n };\n },\n mounted: function mounted() {\n this.init();\n },\n computed: {\n isMobile: function isMobile() {\n return document.body.clientWidth <= 768;\n },\n resultOption: function resultOption() {\n return _objectSpread(_objectSpread({}, this.tableOption), {\n column: this.propOption || []\n });\n },\n rowKey: function rowKey() {\n return this.tableOption.rowKey || global_variable__WEBPACK_IMPORTED_MODULE_2__[\"DIC_PROPS\"].rowKey;\n },\n formRules: function formRules() {\n var result = {};\n this.propOption.forEach(function (ele) {\n if (ele.rules && ele.display !== false) result[ele.prop] = ele.rules;\n });\n return result;\n }\n },\n methods: {\n init: function init(type) {\n var globOption = this.deepClone(this.$AVUE[\"\".concat(name, \"Option\")]);\n var option = _objectSpread(_objectSpread({}, globOption), this.option);\n this.tableOption = option;\n this.handleLocalDic();\n if (type !== false) this.handleLoadDic();\n },\n dicInit: function dicInit(type) {\n if (type === 'cascader') {\n this.handleLoadCascaderDic();\n } else {\n this.handleLoadDic();\n }\n },\n updateDic: function updateDic(prop, list) {\n var _this2 = this;\n var column = this.findObject(this.propOption, prop);\n if (this.validatenull(list) && this.validatenull(prop)) {\n this.handleLoadDic();\n } else if (this.validatenull(list) && !this.validatenull(column.dicUrl)) {\n Object(core_dic__WEBPACK_IMPORTED_MODULE_1__[\"sendDic\"])({\n column: column\n }, this).then(function (list) {\n _this2.DIC[prop] = list;\n });\n } else {\n this.DIC[prop] = list;\n }\n },\n handleSetDic: function handleSetDic(list) {\n var res = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n Object.keys(res).forEach(function (ele) {\n list[ele] = res[ele];\n });\n },\n //本地字典\n handleLocalDic: function handleLocalDic() {\n Object(core_dic__WEBPACK_IMPORTED_MODULE_1__[\"loadLocalDic\"])(this.resultOption, this);\n },\n // 网络字典加载\n handleLoadDic: function handleLoadDic() {\n Object(core_dic__WEBPACK_IMPORTED_MODULE_1__[\"loadDic\"])(this.resultOption, this);\n },\n //级联字典加载\n handleLoadCascaderDic: function handleLoadCascaderDic() {\n Object(core_dic__WEBPACK_IMPORTED_MODULE_1__[\"loadCascaderDic\"])(this.propOption, this);\n }\n }\n };\n});\n\n//# sourceURL=webpack://AVUE/./packages/core/common/init.js?");
3488
3488
 
3489
3489
  /***/ }),
3490
3490
 
@@ -6616,7 +6616,7 @@ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) *
6616
6616
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
6617
6617
 
6618
6618
  "use strict";
6619
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"version\", function() { return version; });\nvar version = '3.6.1';\n\n//# sourceURL=webpack://AVUE/./src/version.js?");
6619
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"version\", function() { return version; });\nvar version = '3.6.2';\n\n//# sourceURL=webpack://AVUE/./src/version.js?");
6620
6620
 
6621
6621
  /***/ }),
6622
6622