@weitutech/by-components 1.1.88 → 1.1.90

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.
@@ -76932,19 +76932,19 @@ var ByTreeSearch_component = normalizeComponent(
76932
76932
  )
76933
76933
 
76934
76934
  /* harmony default export */ var ByTreeSearch = (ByTreeSearch_component.exports);
76935
- ;// ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"ffbc40de-vue-loader-template"}!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/cache-loader/dist/cjs.js??ruleSet[0].use[0]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/by-dialog/ByDialog.vue?vue&type=template&id=626ef2a2
76936
- var ByDialogvue_type_template_id_626ef2a2_render = function render() {
76935
+ ;// ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"ffbc40de-vue-loader-template"}!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/cache-loader/dist/cjs.js??ruleSet[0].use[0]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/by-dialog/ByDialog.vue?vue&type=template&id=0d08276a
76936
+ var ByDialogvue_type_template_id_0d08276a_render = function render() {
76937
76937
  var _vm = this,
76938
76938
  _c = _vm._self._c;
76939
76939
  return _c('el-dialog', _vm._g(_vm._b({
76940
76940
  class: ['by-dialog', _vm.customClass],
76941
76941
  attrs: {
76942
- "visible": _vm.visible,
76942
+ "visible": _vm.dialogVisible,
76943
76943
  "title": _vm.title
76944
76944
  },
76945
76945
  on: {
76946
76946
  "update:visible": function ($event) {
76947
- _vm.visible = $event;
76947
+ _vm.dialogVisible = $event;
76948
76948
  },
76949
76949
  "close": _vm.handleClose
76950
76950
  }
@@ -76966,7 +76966,7 @@ var ByDialogvue_type_template_id_626ef2a2_render = function render() {
76966
76966
  style: button.style,
76967
76967
  attrs: {
76968
76968
  "type": button.type || 'default',
76969
- "size": button.size || 'small',
76969
+ "size": button.size || 'medium',
76970
76970
  "loading": button.loading,
76971
76971
  "disabled": button.disabled,
76972
76972
  "icon": button.icon
@@ -76980,7 +76980,7 @@ var ByDialogvue_type_template_id_626ef2a2_render = function render() {
76980
76980
  }), 1)];
76981
76981
  })], 2) : _vm._e()]);
76982
76982
  };
76983
- var ByDialogvue_type_template_id_626ef2a2_staticRenderFns = [];
76983
+ var ByDialogvue_type_template_id_0d08276a_staticRenderFns = [];
76984
76984
 
76985
76985
  ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/cache-loader/dist/cjs.js??ruleSet[0].use[0]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/by-dialog/ByDialog.vue?vue&type=script&lang=js
76986
76986
  /* harmony default export */ var ByDialogvue_type_script_lang_js = ({
@@ -77037,7 +77037,23 @@ var ByDialogvue_type_template_id_626ef2a2_staticRenderFns = [];
77037
77037
  default: ''
77038
77038
  }
77039
77039
  },
77040
+ data() {
77041
+ return {
77042
+ internalVisible: false
77043
+ };
77044
+ },
77040
77045
  computed: {
77046
+ dialogVisible: {
77047
+ get() {
77048
+ return this.internalVisible;
77049
+ },
77050
+ set(value) {
77051
+ this.internalVisible = value;
77052
+ if (!value) {
77053
+ this.$emit('update:visible', false);
77054
+ }
77055
+ }
77056
+ },
77041
77057
  dialogAttrs() {
77042
77058
  const {
77043
77059
  visible,
@@ -77056,8 +77072,18 @@ var ByDialogvue_type_template_id_626ef2a2_staticRenderFns = [];
77056
77072
  };
77057
77073
  }
77058
77074
  },
77075
+ watch: {
77076
+ visible: {
77077
+ immediate: true,
77078
+ handler(newVal) {
77079
+ this.internalVisible = newVal;
77080
+ }
77081
+ }
77082
+ },
77059
77083
  methods: {
77060
77084
  handleClose() {
77085
+ this.internalVisible = false;
77086
+ this.$emit('update:visible', false);
77061
77087
  this.$emit('close');
77062
77088
  },
77063
77089
  handleButtonClick(button, index) {
@@ -77094,8 +77120,8 @@ var ByDialogvue_type_template_id_626ef2a2_staticRenderFns = [];
77094
77120
  ;
77095
77121
  var ByDialog_component = normalizeComponent(
77096
77122
  by_dialog_ByDialogvue_type_script_lang_js,
77097
- ByDialogvue_type_template_id_626ef2a2_render,
77098
- ByDialogvue_type_template_id_626ef2a2_staticRenderFns,
77123
+ ByDialogvue_type_template_id_0d08276a_render,
77124
+ ByDialogvue_type_template_id_0d08276a_staticRenderFns,
77099
77125
  false,
77100
77126
  null,
77101
77127
  null,
@@ -77300,8 +77326,14 @@ updateVar();
77300
77326
 
77301
77327
 
77302
77328
 
77303
- // 创建 ByDialog 构造函数
77304
- const DialogConstructor = external_commonjs_vue_commonjs2_vue_root_Vue_default().extend(ByDialog);
77329
+ // 延迟创建 ByDialog 构造函数,确保 Element UI 已安装
77330
+ let DialogConstructor = null;
77331
+ function getDialogConstructor() {
77332
+ if (!DialogConstructor) {
77333
+ DialogConstructor = external_commonjs_vue_commonjs2_vue_root_Vue_default().extend(ByDialog);
77334
+ }
77335
+ return DialogConstructor;
77336
+ }
77305
77337
  const defaultOptions = {
77306
77338
  title: '',
77307
77339
  content: '',
@@ -77320,7 +77352,8 @@ const defaultOptions = {
77320
77352
 
77321
77353
  // 创建弹窗实例
77322
77354
  function createMessageBox(options) {
77323
- const instance = new DialogConstructor({
77355
+ const Constructor = getDialogConstructor();
77356
+ const instance = new Constructor({
77324
77357
  propsData: {
77325
77358
  ...defaultOptions,
77326
77359
  ...options,
@@ -2643,100 +2643,6 @@ module.exports = USE_SYMBOL_AS_UID ? function (it) {
2643
2643
 
2644
2644
  /***/ }),
2645
2645
 
2646
- /***/ 815:
2647
- /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
2648
-
2649
- //! moment.js locale configuration
2650
- //! locale : Telugu [te]
2651
- //! author : Krishna Chaitanya Thota : https://github.com/kcthota
2652
-
2653
- ;
2654
- (function (global, factory) {
2655
- true ? factory(__webpack_require__(9618)) : 0;
2656
- })(this, function (moment) {
2657
- 'use strict';
2658
-
2659
- //! moment.js locale configuration
2660
- var te = moment.defineLocale('te', {
2661
- months: 'జనవరి_ఫిబ్రవరి_మార్చి_ఏప్రిల్_మే_జూన్_జులై_ఆగస్టు_సెప్టెంబర్_అక్టోబర్_నవంబర్_డిసెంబర్'.split('_'),
2662
- monthsShort: 'జన._ఫిబ్ర._మార్చి_ఏప్రి._మే_జూన్_జులై_ఆగ._సెప్._అక్టో._నవ._డిసె.'.split('_'),
2663
- monthsParseExact: true,
2664
- weekdays: 'ఆదివారం_సోమవారం_మంగళవారం_బుధవారం_గురువారం_శుక్రవారం_శనివారం'.split('_'),
2665
- weekdaysShort: 'ఆది_సోమ_మంగళ_బుధ_గురు_శుక్ర_శని'.split('_'),
2666
- weekdaysMin: 'ఆ_సో_మం_బు_గు_శు_శ'.split('_'),
2667
- longDateFormat: {
2668
- LT: 'A h:mm',
2669
- LTS: 'A h:mm:ss',
2670
- L: 'DD/MM/YYYY',
2671
- LL: 'D MMMM YYYY',
2672
- LLL: 'D MMMM YYYY, A h:mm',
2673
- LLLL: 'dddd, D MMMM YYYY, A h:mm'
2674
- },
2675
- calendar: {
2676
- sameDay: '[నేడు] LT',
2677
- nextDay: '[రేపు] LT',
2678
- nextWeek: 'dddd, LT',
2679
- lastDay: '[నిన్న] LT',
2680
- lastWeek: '[గత] dddd, LT',
2681
- sameElse: 'L'
2682
- },
2683
- relativeTime: {
2684
- future: '%s లో',
2685
- past: '%s క్రితం',
2686
- s: 'కొన్ని క్షణాలు',
2687
- ss: '%d సెకన్లు',
2688
- m: 'ఒక నిమిషం',
2689
- mm: '%d నిమిషాలు',
2690
- h: 'ఒక గంట',
2691
- hh: '%d గంటలు',
2692
- d: 'ఒక రోజు',
2693
- dd: '%d రోజులు',
2694
- M: 'ఒక నెల',
2695
- MM: '%d నెలలు',
2696
- y: 'ఒక సంవత్సరం',
2697
- yy: '%d సంవత్సరాలు'
2698
- },
2699
- dayOfMonthOrdinalParse: /\d{1,2}వ/,
2700
- ordinal: '%dవ',
2701
- meridiemParse: /రాత్రి|ఉదయం|మధ్యాహ్నం|సాయంత్రం/,
2702
- meridiemHour: function (hour, meridiem) {
2703
- if (hour === 12) {
2704
- hour = 0;
2705
- }
2706
- if (meridiem === 'రాత్రి') {
2707
- return hour < 4 ? hour : hour + 12;
2708
- } else if (meridiem === 'ఉదయం') {
2709
- return hour;
2710
- } else if (meridiem === 'మధ్యాహ్నం') {
2711
- return hour >= 10 ? hour : hour + 12;
2712
- } else if (meridiem === 'సాయంత్రం') {
2713
- return hour + 12;
2714
- }
2715
- },
2716
- meridiem: function (hour, minute, isLower) {
2717
- if (hour < 4) {
2718
- return 'రాత్రి';
2719
- } else if (hour < 10) {
2720
- return 'ఉదయం';
2721
- } else if (hour < 17) {
2722
- return 'మధ్యాహ్నం';
2723
- } else if (hour < 20) {
2724
- return 'సాయంత్రం';
2725
- } else {
2726
- return 'రాత్రి';
2727
- }
2728
- },
2729
- week: {
2730
- dow: 0,
2731
- // Sunday is the first day of the week.
2732
- doy: 6 // The week that contains Jan 6th is the first week of the year.
2733
- }
2734
- });
2735
- return te;
2736
- });
2737
-
2738
- /***/ }),
2739
-
2740
2646
  /***/ 851:
2741
2647
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
2742
2648
 
@@ -8277,6 +8183,17 @@ exports.PopupManager = _popupManager2.default;
8277
8183
  return fil;
8278
8184
  });
8279
8185
 
8186
+ /***/ }),
8187
+
8188
+ /***/ 1496:
8189
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
8190
+
8191
+ // 19.1.3.1 Object.assign(target, source)
8192
+ var $export = __webpack_require__(9786);
8193
+
8194
+ $export($export.S + $export.F, 'Object', { assign: __webpack_require__(9369) });
8195
+
8196
+
8280
8197
  /***/ }),
8281
8198
 
8282
8199
  /***/ 1535:
@@ -17450,6 +17367,100 @@ module.exports = function (key) {
17450
17367
 
17451
17368
  /***/ }),
17452
17369
 
17370
+ /***/ 3196:
17371
+ /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
17372
+
17373
+ //! moment.js locale configuration
17374
+ //! locale : Telugu [te]
17375
+ //! author : Krishna Chaitanya Thota : https://github.com/kcthota
17376
+
17377
+ ;
17378
+ (function (global, factory) {
17379
+ true ? factory(__webpack_require__(9618)) : 0;
17380
+ })(this, function (moment) {
17381
+ 'use strict';
17382
+
17383
+ //! moment.js locale configuration
17384
+ var te = moment.defineLocale('te', {
17385
+ months: 'జనవరి_ఫిబ్రవరి_మార్చి_ఏప్రిల్_మే_జూన్_జులై_ఆగస్టు_సెప్టెంబర్_అక్టోబర్_నవంబర్_డిసెంబర్'.split('_'),
17386
+ monthsShort: 'జన._ఫిబ్ర._మార్చి_ఏప్రి._మే_జూన్_జులై_ఆగ._సెప్._అక్టో._నవ._డిసె.'.split('_'),
17387
+ monthsParseExact: true,
17388
+ weekdays: 'ఆదివారం_సోమవారం_మంగళవారం_బుధవారం_గురువారం_శుక్రవారం_శనివారం'.split('_'),
17389
+ weekdaysShort: 'ఆది_సోమ_మంగళ_బుధ_గురు_శుక్ర_శని'.split('_'),
17390
+ weekdaysMin: 'ఆ_సో_మం_బు_గు_శు_శ'.split('_'),
17391
+ longDateFormat: {
17392
+ LT: 'A h:mm',
17393
+ LTS: 'A h:mm:ss',
17394
+ L: 'DD/MM/YYYY',
17395
+ LL: 'D MMMM YYYY',
17396
+ LLL: 'D MMMM YYYY, A h:mm',
17397
+ LLLL: 'dddd, D MMMM YYYY, A h:mm'
17398
+ },
17399
+ calendar: {
17400
+ sameDay: '[నేడు] LT',
17401
+ nextDay: '[రేపు] LT',
17402
+ nextWeek: 'dddd, LT',
17403
+ lastDay: '[నిన్న] LT',
17404
+ lastWeek: '[గత] dddd, LT',
17405
+ sameElse: 'L'
17406
+ },
17407
+ relativeTime: {
17408
+ future: '%s లో',
17409
+ past: '%s క్రితం',
17410
+ s: 'కొన్ని క్షణాలు',
17411
+ ss: '%d సెకన్లు',
17412
+ m: 'ఒక నిమిషం',
17413
+ mm: '%d నిమిషాలు',
17414
+ h: 'ఒక గంట',
17415
+ hh: '%d గంటలు',
17416
+ d: 'ఒక రోజు',
17417
+ dd: '%d రోజులు',
17418
+ M: 'ఒక నెల',
17419
+ MM: '%d నెలలు',
17420
+ y: 'ఒక సంవత్సరం',
17421
+ yy: '%d సంవత్సరాలు'
17422
+ },
17423
+ dayOfMonthOrdinalParse: /\d{1,2}వ/,
17424
+ ordinal: '%dవ',
17425
+ meridiemParse: /రాత్రి|ఉదయం|మధ్యాహ్నం|సాయంత్రం/,
17426
+ meridiemHour: function (hour, meridiem) {
17427
+ if (hour === 12) {
17428
+ hour = 0;
17429
+ }
17430
+ if (meridiem === 'రాత్రి') {
17431
+ return hour < 4 ? hour : hour + 12;
17432
+ } else if (meridiem === 'ఉదయం') {
17433
+ return hour;
17434
+ } else if (meridiem === 'మధ్యాహ్నం') {
17435
+ return hour >= 10 ? hour : hour + 12;
17436
+ } else if (meridiem === 'సాయంత్రం') {
17437
+ return hour + 12;
17438
+ }
17439
+ },
17440
+ meridiem: function (hour, minute, isLower) {
17441
+ if (hour < 4) {
17442
+ return 'రాత్రి';
17443
+ } else if (hour < 10) {
17444
+ return 'ఉదయం';
17445
+ } else if (hour < 17) {
17446
+ return 'మధ్యాహ్నం';
17447
+ } else if (hour < 20) {
17448
+ return 'సాయంత్రం';
17449
+ } else {
17450
+ return 'రాత్రి';
17451
+ }
17452
+ },
17453
+ week: {
17454
+ dow: 0,
17455
+ // Sunday is the first day of the week.
17456
+ doy: 6 // The week that contains Jan 6th is the first week of the year.
17457
+ }
17458
+ });
17459
+ return te;
17460
+ });
17461
+
17462
+ /***/ }),
17463
+
17453
17464
  /***/ 3210:
17454
17465
  /***/ (function(__unused_webpack_module, exports) {
17455
17466
 
@@ -31254,8 +31265,8 @@ var map = {
31254
31265
  "./sw.js": 4585,
31255
31266
  "./ta": 3824,
31256
31267
  "./ta.js": 3824,
31257
- "./te": 815,
31258
- "./te.js": 815,
31268
+ "./te": 3196,
31269
+ "./te.js": 3196,
31259
31270
  "./tet": 7914,
31260
31271
  "./tet.js": 7914,
31261
31272
  "./tg": 9430,
@@ -40896,7 +40907,7 @@ exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
40896
40907
  /***/ 8489:
40897
40908
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
40898
40909
 
40899
- __webpack_require__(9115);
40910
+ __webpack_require__(1496);
40900
40911
  module.exports = __webpack_require__(6791).Object.assign;
40901
40912
 
40902
40913
 
@@ -52445,17 +52456,6 @@ var isInContainer = exports.isInContainer = function isInContainer(el, container
52445
52456
  return elRect.top < containerRect.bottom && elRect.bottom > containerRect.top && elRect.right > containerRect.left && elRect.left < containerRect.right;
52446
52457
  };
52447
52458
 
52448
- /***/ }),
52449
-
52450
- /***/ 9115:
52451
- /***/ (function(__unused_webpack_module, __unused_webpack_exports, __webpack_require__) {
52452
-
52453
- // 19.1.3.1 Object.assign(target, source)
52454
- var $export = __webpack_require__(9786);
52455
-
52456
- $export($export.S + $export.F, 'Object', { assign: __webpack_require__(9369) });
52457
-
52458
-
52459
52459
  /***/ }),
52460
52460
 
52461
52461
  /***/ 9204:
@@ -76942,19 +76942,19 @@ var ByTreeSearch_component = normalizeComponent(
76942
76942
  )
76943
76943
 
76944
76944
  /* harmony default export */ var ByTreeSearch = (ByTreeSearch_component.exports);
76945
- ;// ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"ffbc40de-vue-loader-template"}!./node_modules/babel-loader/lib/index.js??clonedRuleSet-82.use[1]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/cache-loader/dist/cjs.js??ruleSet[0].use[0]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/by-dialog/ByDialog.vue?vue&type=template&id=626ef2a2
76946
- var ByDialogvue_type_template_id_626ef2a2_render = function render() {
76945
+ ;// ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"ffbc40de-vue-loader-template"}!./node_modules/babel-loader/lib/index.js??clonedRuleSet-82.use[1]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/cache-loader/dist/cjs.js??ruleSet[0].use[0]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/by-dialog/ByDialog.vue?vue&type=template&id=0d08276a
76946
+ var ByDialogvue_type_template_id_0d08276a_render = function render() {
76947
76947
  var _vm = this,
76948
76948
  _c = _vm._self._c;
76949
76949
  return _c('el-dialog', _vm._g(_vm._b({
76950
76950
  class: ['by-dialog', _vm.customClass],
76951
76951
  attrs: {
76952
- "visible": _vm.visible,
76952
+ "visible": _vm.dialogVisible,
76953
76953
  "title": _vm.title
76954
76954
  },
76955
76955
  on: {
76956
76956
  "update:visible": function ($event) {
76957
- _vm.visible = $event;
76957
+ _vm.dialogVisible = $event;
76958
76958
  },
76959
76959
  "close": _vm.handleClose
76960
76960
  }
@@ -76976,7 +76976,7 @@ var ByDialogvue_type_template_id_626ef2a2_render = function render() {
76976
76976
  style: button.style,
76977
76977
  attrs: {
76978
76978
  "type": button.type || 'default',
76979
- "size": button.size || 'small',
76979
+ "size": button.size || 'medium',
76980
76980
  "loading": button.loading,
76981
76981
  "disabled": button.disabled,
76982
76982
  "icon": button.icon
@@ -76990,7 +76990,7 @@ var ByDialogvue_type_template_id_626ef2a2_render = function render() {
76990
76990
  }), 1)];
76991
76991
  })], 2) : _vm._e()]);
76992
76992
  };
76993
- var ByDialogvue_type_template_id_626ef2a2_staticRenderFns = [];
76993
+ var ByDialogvue_type_template_id_0d08276a_staticRenderFns = [];
76994
76994
 
76995
76995
  ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-82.use[1]!./node_modules/cache-loader/dist/cjs.js??ruleSet[0].use[0]!./node_modules/@vue/cli-service/node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/by-dialog/ByDialog.vue?vue&type=script&lang=js
76996
76996
  /* harmony default export */ var ByDialogvue_type_script_lang_js = ({
@@ -77047,7 +77047,23 @@ var ByDialogvue_type_template_id_626ef2a2_staticRenderFns = [];
77047
77047
  default: ''
77048
77048
  }
77049
77049
  },
77050
+ data() {
77051
+ return {
77052
+ internalVisible: false
77053
+ };
77054
+ },
77050
77055
  computed: {
77056
+ dialogVisible: {
77057
+ get() {
77058
+ return this.internalVisible;
77059
+ },
77060
+ set(value) {
77061
+ this.internalVisible = value;
77062
+ if (!value) {
77063
+ this.$emit('update:visible', false);
77064
+ }
77065
+ }
77066
+ },
77051
77067
  dialogAttrs() {
77052
77068
  const {
77053
77069
  visible,
@@ -77066,8 +77082,18 @@ var ByDialogvue_type_template_id_626ef2a2_staticRenderFns = [];
77066
77082
  };
77067
77083
  }
77068
77084
  },
77085
+ watch: {
77086
+ visible: {
77087
+ immediate: true,
77088
+ handler(newVal) {
77089
+ this.internalVisible = newVal;
77090
+ }
77091
+ }
77092
+ },
77069
77093
  methods: {
77070
77094
  handleClose() {
77095
+ this.internalVisible = false;
77096
+ this.$emit('update:visible', false);
77071
77097
  this.$emit('close');
77072
77098
  },
77073
77099
  handleButtonClick(button, index) {
@@ -77104,8 +77130,8 @@ var ByDialogvue_type_template_id_626ef2a2_staticRenderFns = [];
77104
77130
  ;
77105
77131
  var ByDialog_component = normalizeComponent(
77106
77132
  by_dialog_ByDialogvue_type_script_lang_js,
77107
- ByDialogvue_type_template_id_626ef2a2_render,
77108
- ByDialogvue_type_template_id_626ef2a2_staticRenderFns,
77133
+ ByDialogvue_type_template_id_0d08276a_render,
77134
+ ByDialogvue_type_template_id_0d08276a_staticRenderFns,
77109
77135
  false,
77110
77136
  null,
77111
77137
  null,
@@ -77310,8 +77336,14 @@ updateVar();
77310
77336
 
77311
77337
 
77312
77338
 
77313
- // 创建 ByDialog 构造函数
77314
- const DialogConstructor = external_commonjs_vue_commonjs2_vue_root_Vue_default().extend(ByDialog);
77339
+ // 延迟创建 ByDialog 构造函数,确保 Element UI 已安装
77340
+ let DialogConstructor = null;
77341
+ function getDialogConstructor() {
77342
+ if (!DialogConstructor) {
77343
+ DialogConstructor = external_commonjs_vue_commonjs2_vue_root_Vue_default().extend(ByDialog);
77344
+ }
77345
+ return DialogConstructor;
77346
+ }
77315
77347
  const defaultOptions = {
77316
77348
  title: '',
77317
77349
  content: '',
@@ -77330,7 +77362,8 @@ const defaultOptions = {
77330
77362
 
77331
77363
  // 创建弹窗实例
77332
77364
  function createMessageBox(options) {
77333
- const instance = new DialogConstructor({
77365
+ const Constructor = getDialogConstructor();
77366
+ const instance = new Constructor({
77334
77367
  propsData: {
77335
77368
  ...defaultOptions,
77336
77369
  ...options,