cms-chenhj-ui 2.0.30 → 2.0.32

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.
@@ -457,7 +457,7 @@ const configDataType = (0,_baseConfig__WEBPACK_IMPORTED_MODULE_0__.getLangDataTy
457
457
  },
458
458
  textType: {
459
459
  label: "文字类型",
460
- widgetType: "el-radio-group",
460
+ widgetType: "el-select",
461
461
  options: [{
462
462
  label: "H1",
463
463
  value: "h1"
@@ -10095,8 +10095,8 @@ var map = {
10095
10095
  "./cms-banner/index.js": 1739,
10096
10096
  "./cms-button": 2209,
10097
10097
  "./cms-button/": 2209,
10098
- "./cms-button/View": 6677,
10099
- "./cms-button/View.vue": 6677,
10098
+ "./cms-button/View": 8169,
10099
+ "./cms-button/View.vue": 8169,
10100
10100
  "./cms-button/index": 2209,
10101
10101
  "./cms-button/index.js": 2209,
10102
10102
  "./cms-cells": 1630,
@@ -10203,8 +10203,8 @@ var map = {
10203
10203
  "./cms-question/index.js": 2269,
10204
10204
  "./cms-richText": 7616,
10205
10205
  "./cms-richText/": 7616,
10206
- "./cms-richText/View": 7082,
10207
- "./cms-richText/View.vue": 7082,
10206
+ "./cms-richText/View": 5653,
10207
+ "./cms-richText/View.vue": 5653,
10208
10208
  "./cms-richText/index": 7616,
10209
10209
  "./cms-richText/index.js": 7616,
10210
10210
  "./cms-servePlan-tab": 1373,
@@ -10274,8 +10274,8 @@ var map = {
10274
10274
  "./cms-video-group/index": 622,
10275
10275
  "./cms-video-group/index.js": 622,
10276
10276
  "./cms-video/": 2404,
10277
- "./cms-video/View": 6083,
10278
- "./cms-video/View.vue": 6083,
10277
+ "./cms-video/View": 4588,
10278
+ "./cms-video/View.vue": 4588,
10279
10279
  "./cms-video/index": 2404,
10280
10280
  "./cms-video/index.js": 2404,
10281
10281
  "./cms-view": 2392,
@@ -11766,10 +11766,12 @@ module.exports = function (it) {
11766
11766
  __webpack_require__.r(__webpack_exports__);
11767
11767
  /* harmony import */ var _baseConfig__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(649);
11768
11768
 
11769
- const View = () => Promise.resolve(/* import() */).then(__webpack_require__.bind(__webpack_require__, 6677));
11769
+ const View = () => Promise.resolve(/* import() */).then(__webpack_require__.bind(__webpack_require__, 8169));
11770
11770
  const langData = {
11771
11771
  // 文字设置
11772
11772
  buttonText: "按钮文字",
11773
+ buttonType: "bg-blue",
11774
+ wrapperBackgroundColor: "#ffffff",
11773
11775
  textAlign: "center",
11774
11776
  fontSize: 16,
11775
11777
  fontColor: "#ffffff",
@@ -11810,6 +11812,44 @@ const configDataType = (0,_baseConfig__WEBPACK_IMPORTED_MODULE_0__.getLangDataTy
11810
11812
  widgetType: "el-input",
11811
11813
  placeholder: "请输入按钮文字"
11812
11814
  },
11815
+ buttonType: {
11816
+ label: "按钮类型",
11817
+ widgetType: "el-select",
11818
+ options: [{
11819
+ label: "蓝底",
11820
+ value: "bg-blue"
11821
+ }, {
11822
+ label: "白底",
11823
+ value: "bg-white"
11824
+ }, {
11825
+ label: "灰底",
11826
+ value: "bg-gray"
11827
+ }],
11828
+ on: {
11829
+ change: (data, value) => {
11830
+ if (value == "bg-blue") {
11831
+ data.backgroundColor = "#409eff";
11832
+ data.fontColor = "#fff";
11833
+ data.borderWidth = 0;
11834
+ data.wrapperBackgroundColor = "#fff";
11835
+ } else if (value == "bg-white") {
11836
+ data.backgroundColor = "#fff";
11837
+ data.fontColor = "#409eff";
11838
+ data.borderWidth = 1;
11839
+ data.borderStyle = "solid";
11840
+ data.borderColor = "#409eff";
11841
+ data.wrapperBackgroundColor = "#fff";
11842
+ } else if (value == "bg-gray") {
11843
+ data.backgroundColor = "#888888";
11844
+ data.fontColor = "#fff";
11845
+ data.borderWidth = 1;
11846
+ data.borderStyle = "solid";
11847
+ data.borderColor = "#fff";
11848
+ data.wrapperBackgroundColor = "#979797";
11849
+ }
11850
+ }
11851
+ }
11852
+ },
11813
11853
  textAlign: {
11814
11854
  label: "对齐方式",
11815
11855
  widgetType: "el-radio-group",
@@ -11880,8 +11920,15 @@ const configDataType = (0,_baseConfig__WEBPACK_IMPORTED_MODULE_0__.getLangDataTy
11880
11920
  }]
11881
11921
  },
11882
11922
  // 样式控制配置
11923
+ wrapperBackgroundColor: {
11924
+ label: "区块背景颜色",
11925
+ widgetType: "el-color-picker",
11926
+ showAlpha: true,
11927
+ predefine: ["#262729", "rgb(36,38,40,0.8)", "rgb(36,38,40,0.5)", "#2F85FF", "#D6197F", "#52C41A", "#f48427", "#FFFFFF"]
11928
+ },
11929
+ // 样式控制配置
11883
11930
  backgroundColor: {
11884
- label: "背景颜色",
11931
+ label: "按钮背景颜色",
11885
11932
  widgetType: "el-color-picker",
11886
11933
  showAlpha: true,
11887
11934
  predefine: ["#262729", "rgb(36,38,40,0.8)", "rgb(36,38,40,0.5)", "#2F85FF", "#D6197F", "#52C41A", "#f48427", "#FFFFFF"]
@@ -12493,7 +12540,7 @@ const View = () => Promise.resolve(/* import() */).then(__webpack_require__.bind
12493
12540
  __webpack_require__.r(__webpack_exports__);
12494
12541
  /* harmony import */ var _baseConfig__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(649);
12495
12542
 
12496
- const View = () => Promise.resolve(/* import() */).then(__webpack_require__.bind(__webpack_require__, 6083));
12543
+ const View = () => Promise.resolve(/* import() */).then(__webpack_require__.bind(__webpack_require__, 4588));
12497
12544
  const langData = {
12498
12545
  // 视频源设置
12499
12546
  title: '',
@@ -37338,6 +37385,386 @@ module.exports =
37338
37385
  (function () { return this; })() || Function('return this')();
37339
37386
 
37340
37387
 
37388
+ /***/ }),
37389
+
37390
+ /***/ 4588:
37391
+ /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
37392
+
37393
+ "use strict";
37394
+ // ESM COMPAT FLAG
37395
+ __webpack_require__.r(__webpack_exports__);
37396
+
37397
+ // EXPORTS
37398
+ __webpack_require__.d(__webpack_exports__, {
37399
+ "default": function() { return /* binding */ View; }
37400
+ });
37401
+
37402
+ ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js??clonedRuleSet-41.use!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./package/cms-video/View.vue?vue&type=template&id=6b24141a&scoped=true
37403
+ var render = function render() {
37404
+ var _vm = this,
37405
+ _c = _vm._self._c;
37406
+ return _c('BaseComp', _vm._b({
37407
+ attrs: {
37408
+ "data": _vm.data,
37409
+ "nowCompId": _vm.nowCompId,
37410
+ "isOpcacity": _vm.isOpcacity,
37411
+ "lang": _vm.lang
37412
+ },
37413
+ on: {
37414
+ "getConfigData": _vm.getConfigData
37415
+ }
37416
+ }, 'BaseComp', _vm.$attrs, false), [_c('section', {
37417
+ staticClass: "cms-video-container",
37418
+ class: [_vm.configData.customClass || ''],
37419
+ style: _vm.containerStyle
37420
+ }, [_c('div', {
37421
+ staticClass: "video-wrapper",
37422
+ style: _vm.wrapperStyle
37423
+ }, [_vm.videoType === 'direct' && _vm.configData.videoUrl ? _c('video', {
37424
+ staticClass: "cms-video direct-video",
37425
+ style: _vm.videoStyle,
37426
+ attrs: {
37427
+ "src": _vm.configData.videoUrl,
37428
+ "controls": _vm.configData.showControls,
37429
+ "autoplay": _vm.configData.autoplay,
37430
+ "loop": _vm.configData.loop,
37431
+ "poster": _vm.configData.posterUrl
37432
+ },
37433
+ domProps: {
37434
+ "muted": _vm.configData.muted
37435
+ },
37436
+ on: {
37437
+ "loadstart": _vm.onVideoLoadStart,
37438
+ "loadeddata": _vm.onVideoLoaded,
37439
+ "error": _vm.onVideoError
37440
+ }
37441
+ }) : _vm.configData.embedCode ? _c('div', {
37442
+ staticClass: "cms-video embed-video",
37443
+ style: _vm.videoStyle,
37444
+ domProps: {
37445
+ "innerHTML": _vm._s(_vm.configData.embedCode)
37446
+ }
37447
+ }) : _c('div', {
37448
+ staticClass: "video-placeholder",
37449
+ style: _vm.placeholderStyle
37450
+ }, [_c('img', {
37451
+ staticStyle: {
37452
+ "width": "97.82px",
37453
+ "height": "97.82px"
37454
+ },
37455
+ attrs: {
37456
+ "src": __webpack_require__(6148),
37457
+ "alt": "Video Camera"
37458
+ }
37459
+ })])]), _vm.configData.title ? _c('div', {
37460
+ staticClass: "f-c-c"
37461
+ }, [_vm._v(_vm._s(_vm.configData.title))]) : _vm._e()])]);
37462
+ };
37463
+ var staticRenderFns = [];
37464
+
37465
+ ;// ./package/cms-video/View.vue?vue&type=template&id=6b24141a&scoped=true
37466
+
37467
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.iterator.constructor.js
37468
+ var es_iterator_constructor = __webpack_require__(8111);
37469
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.iterator.for-each.js
37470
+ var es_iterator_for_each = __webpack_require__(7588);
37471
+ // EXTERNAL MODULE: ./package/baseComp.vue + 5 modules
37472
+ var baseComp = __webpack_require__(4272);
37473
+ ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js??clonedRuleSet-41.use!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./package/cms-video/View.vue?vue&type=script&lang=js
37474
+
37475
+
37476
+
37477
+
37478
+
37479
+ /* harmony default export */ var Viewvue_type_script_lang_js = ({
37480
+ name: "cms-video",
37481
+ components: {
37482
+ BaseComp: baseComp["default"]
37483
+ },
37484
+ props: {
37485
+ data: {
37486
+ type: Object,
37487
+ default: () => {
37488
+ return {};
37489
+ }
37490
+ },
37491
+ nowCompId: {
37492
+ type: [String, Number],
37493
+ default: ""
37494
+ },
37495
+ isOpcacity: {
37496
+ type: Boolean,
37497
+ default: true
37498
+ },
37499
+ lang: {
37500
+ type: String,
37501
+ default: "zh-HK"
37502
+ }
37503
+ },
37504
+ data() {
37505
+ return {
37506
+ configData: {},
37507
+ videoLoaded: false,
37508
+ videoError: false,
37509
+ // 默认配置数据
37510
+ defaultConfig: {
37511
+ // 视频源设置
37512
+ videoType: "direct",
37513
+ videoUrl: "",
37514
+ embedCode: "",
37515
+ posterUrl: "",
37516
+ // 播放控制
37517
+ showControls: true,
37518
+ autoplay: false,
37519
+ loop: false,
37520
+ muted: false,
37521
+ // 尺寸控制
37522
+ widthType: "auto",
37523
+ widthValue: 100,
37524
+ heightType: "auto",
37525
+ heightValue: 100,
37526
+ aspectRatio: "16:9",
37527
+ customAspectRatio: "16:9",
37528
+ maxWidth: 0,
37529
+ maxHeight: 0,
37530
+ // 样式设置
37531
+ borderRadius: 0,
37532
+ // 高级配置
37533
+ customClass: "",
37534
+ customStyle: ""
37535
+ }
37536
+ };
37537
+ },
37538
+ mounted() {
37539
+ this.initConfigData();
37540
+ },
37541
+ watch: {
37542
+ configData: {
37543
+ handler() {
37544
+ this.updateStyles();
37545
+ },
37546
+ deep: true
37547
+ }
37548
+ },
37549
+ computed: {
37550
+ showEmbedCode() {
37551
+ return this.configData.embedCode.replace(/<iframe(.*?)width="(\d+)"(.*?)height="(\d+)"(.*?)>/gi, '<iframe$1width="100%"$3height="auto"$5 aspect-ratio="$2/$4">');
37552
+ },
37553
+ // 视频类型
37554
+ videoType() {
37555
+ return this.configData.videoType || this.defaultConfig.videoType;
37556
+ },
37557
+ // 实际使用的宽高比
37558
+ actualAspectRatio() {
37559
+ const config = {
37560
+ ...this.defaultConfig,
37561
+ ...this.configData
37562
+ };
37563
+ if (config.aspectRatio === "custom") {
37564
+ return config.customAspectRatio || "16:9";
37565
+ }
37566
+ return config.aspectRatio;
37567
+ },
37568
+ // 容器样式
37569
+ containerStyle() {
37570
+ const config = {
37571
+ ...this.defaultConfig,
37572
+ ...this.configData
37573
+ };
37574
+ return {
37575
+ ...this.parseCustomStyle(config.customStyle)
37576
+ };
37577
+ },
37578
+ // 包装器样式
37579
+ wrapperStyle() {
37580
+ const config = {
37581
+ ...this.defaultConfig,
37582
+ ...this.configData
37583
+ };
37584
+ let width = "auto";
37585
+ let height = "auto";
37586
+
37587
+ // 宽度设置
37588
+ if (config.widthType === "fixed") {
37589
+ width = `${config.widthValue}px`;
37590
+ } else if (config.widthType === "percent") {
37591
+ width = `${config.widthValue}%`;
37592
+ }
37593
+
37594
+ // 高度设置
37595
+ if (config.heightType === "fixed") {
37596
+ height = `${config.heightValue}px`;
37597
+ } else if (config.heightType === "percent") {
37598
+ height = `${config.heightValue}%`;
37599
+ } else if (config.heightType === "aspect") {
37600
+ // 根据宽高比计算高度
37601
+ height = "auto";
37602
+ }
37603
+ return {
37604
+ width,
37605
+ height,
37606
+ maxWidth: config.maxWidth > 0 ? `${config.maxWidth}px` : "none",
37607
+ maxHeight: config.maxHeight > 0 ? `${config.maxHeight}px` : "none",
37608
+ borderRadius: `${config.borderRadius}px`,
37609
+ overflow: "hidden",
37610
+ display: "block",
37611
+ position: "relative"
37612
+ };
37613
+ },
37614
+ // 视频样式
37615
+ videoStyle() {
37616
+ const config = {
37617
+ ...this.defaultConfig,
37618
+ ...this.configData
37619
+ };
37620
+ let style = {
37621
+ width: "100%",
37622
+ height: "100%",
37623
+ display: "block",
37624
+ border: "none",
37625
+ outline: "none"
37626
+ };
37627
+
37628
+ // 如果是宽高比模式,设置aspect-ratio
37629
+ if (config.heightType === "aspect") {
37630
+ style.aspectRatio = this.actualAspectRatio.replace(":", "/");
37631
+ }
37632
+ return style;
37633
+ },
37634
+ // 占位符样式
37635
+ placeholderStyle() {
37636
+ const config = {
37637
+ ...this.defaultConfig,
37638
+ ...this.configData
37639
+ };
37640
+ let width = "100%";
37641
+ let height = "auto";
37642
+
37643
+ // 如果设置了固定尺寸,使用设置的尺寸
37644
+ if (config.widthType === "fixed") {
37645
+ width = `${config.widthValue}px`;
37646
+ } else if (config.widthType === "percent") {
37647
+ width = `${config.widthValue}%`;
37648
+ }
37649
+ if (config.heightType === "fixed") {
37650
+ height = `${config.heightValue}px`;
37651
+ } else if (config.heightType === "aspect") {
37652
+ // 使用aspect-ratio保持16:9比例
37653
+ height = "auto";
37654
+ } else {
37655
+ // 默认使用16:9比例
37656
+ height = "auto";
37657
+ }
37658
+ const style = {
37659
+ width,
37660
+ height,
37661
+ backgroundColor: "#f5f7fa",
37662
+ border: "1px dashed #dcdfe6",
37663
+ borderRadius: `${config.borderRadius}px`,
37664
+ display: "flex",
37665
+ flexDirection: "column",
37666
+ alignItems: "center",
37667
+ justifyContent: "center",
37668
+ color: "#909399",
37669
+ fontSize: "14px"
37670
+ };
37671
+
37672
+ // 如果不是固定高度,使用aspect-ratio保持16:9比例
37673
+ if (config.heightType !== "fixed") {
37674
+ style.aspectRatio = this.actualAspectRatio.replace(":", "/");
37675
+ }
37676
+ return style;
37677
+ }
37678
+ },
37679
+ methods: {
37680
+ // 初始化配置数据
37681
+ initConfigData() {
37682
+ this.configData = {
37683
+ ...this.defaultConfig,
37684
+ ...this.configData
37685
+ };
37686
+ },
37687
+ // 获取配置数据
37688
+ getConfigData(configData) {
37689
+ this.configData = {
37690
+ ...this.defaultConfig,
37691
+ ...configData
37692
+ };
37693
+ this.updateStyles();
37694
+ },
37695
+ // 更新样式
37696
+ updateStyles() {
37697
+ this.$nextTick(() => {
37698
+ this.$forceUpdate();
37699
+ });
37700
+ },
37701
+ // 视频开始加载
37702
+ onVideoLoadStart() {
37703
+ this.videoLoaded = false;
37704
+ this.videoError = false;
37705
+ },
37706
+ // 视频加载完成
37707
+ onVideoLoaded() {
37708
+ this.videoLoaded = true;
37709
+ this.videoError = false;
37710
+ },
37711
+ // 视频加载失败
37712
+ onVideoError() {
37713
+ this.videoLoaded = false;
37714
+ this.videoError = true;
37715
+ },
37716
+ // 解析自定义样式
37717
+ parseCustomStyle(customStyle) {
37718
+ if (!customStyle) return {};
37719
+ try {
37720
+ const styles = {};
37721
+ const declarations = customStyle.split(";");
37722
+ declarations.forEach(declaration => {
37723
+ const [property, value] = declaration.split(":");
37724
+ if (property && value) {
37725
+ const camelCaseProperty = property.trim().replace(/-([a-z])/g, g => g[1].toUpperCase());
37726
+ styles[camelCaseProperty] = value.trim();
37727
+ }
37728
+ });
37729
+ return styles;
37730
+ } catch (error) {
37731
+ console.warn("解析自定义样式失败:", error);
37732
+ return {};
37733
+ }
37734
+ }
37735
+ }
37736
+ });
37737
+ ;// ./package/cms-video/View.vue?vue&type=script&lang=js
37738
+ /* harmony default export */ var cms_video_Viewvue_type_script_lang_js = (Viewvue_type_script_lang_js);
37739
+ ;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-42.use[0]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./package/cms-video/View.vue?vue&type=style&index=0&id=6b24141a&prod&lang=scss&scoped=true
37740
+ // extracted by mini-css-extract-plugin
37741
+
37742
+ ;// ./package/cms-video/View.vue?vue&type=style&index=0&id=6b24141a&prod&lang=scss&scoped=true
37743
+
37744
+ // EXTERNAL MODULE: ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
37745
+ var componentNormalizer = __webpack_require__(1656);
37746
+ ;// ./package/cms-video/View.vue
37747
+
37748
+
37749
+
37750
+ ;
37751
+
37752
+
37753
+ /* normalize component */
37754
+
37755
+ var component = (0,componentNormalizer/* default */.A)(
37756
+ cms_video_Viewvue_type_script_lang_js,
37757
+ render,
37758
+ staticRenderFns,
37759
+ false,
37760
+ null,
37761
+ "6b24141a",
37762
+ null
37763
+
37764
+ )
37765
+
37766
+ /* harmony default export */ var View = (component.exports);
37767
+
37341
37768
  /***/ }),
37342
37769
 
37343
37770
  /***/ 4602:
@@ -39695,7 +40122,7 @@ var map = {
39695
40122
  "./cms-activityCountdown/View.vue": 8437,
39696
40123
  "./cms-activityTime/View.vue": 8322,
39697
40124
  "./cms-banner/View.vue": 6815,
39698
- "./cms-button/View.vue": 6677,
40125
+ "./cms-button/View.vue": 8169,
39699
40126
  "./cms-cells/View.vue": 5700,
39700
40127
  "./cms-column-card/View.vue": 7058,
39701
40128
  "./cms-column/View.vue": 7855,
@@ -39713,7 +40140,7 @@ var map = {
39713
40140
  "./cms-prodCustomization/View.vue": 6786,
39714
40141
  "./cms-productDetails/View.vue": 7984,
39715
40142
  "./cms-question/View.vue": 9764,
39716
- "./cms-richText/View.vue": 7082,
40143
+ "./cms-richText/View.vue": 5653,
39717
40144
  "./cms-servePlan-tab/View.vue": 8757,
39718
40145
  "./cms-servePlan-text/View.vue": 9487,
39719
40146
  "./cms-tab/View.vue": 2596,
@@ -39724,7 +40151,7 @@ var map = {
39724
40151
  "./cms-titleLeft/View.vue": 428,
39725
40152
  "./cms-via-storedValueCard/View.vue": 8498,
39726
40153
  "./cms-video-group/View.vue": 9418,
39727
- "./cms-video/View.vue": 6083,
40154
+ "./cms-video/View.vue": 4588,
39728
40155
  "./cms-view/View.vue": 1380
39729
40156
  };
39730
40157
 
@@ -40745,6 +41172,133 @@ module.exports = function isCancel(value) {
40745
41172
 
40746
41173
  /***/ }),
40747
41174
 
41175
+ /***/ 5653:
41176
+ /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
41177
+
41178
+ "use strict";
41179
+ // ESM COMPAT FLAG
41180
+ __webpack_require__.r(__webpack_exports__);
41181
+
41182
+ // EXPORTS
41183
+ __webpack_require__.d(__webpack_exports__, {
41184
+ "default": function() { return /* binding */ View; }
41185
+ });
41186
+
41187
+ ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js??clonedRuleSet-41.use!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./package/cms-richText/View.vue?vue&type=template&id=f9cda95e&scoped=true
41188
+ var render = function render() {
41189
+ var _vm = this,
41190
+ _c = _vm._self._c;
41191
+ return _c('BaseComp', _vm._b({
41192
+ attrs: {
41193
+ "data": _vm.data,
41194
+ "nowCompId": _vm.nowCompId,
41195
+ "isOpcacity": _vm.isOpcacity,
41196
+ "lang": _vm.lang
41197
+ },
41198
+ on: {
41199
+ "getConfigData": _vm.getConfigData
41200
+ }
41201
+ }, 'BaseComp', _vm.$attrs, false), [_c('section', {
41202
+ staticClass: "cmhk-home_main"
41203
+ }, [_c('div', [_c('div', {
41204
+ staticClass: "inner"
41205
+ }, [_c('p', {
41206
+ domProps: {
41207
+ "innerHTML": _vm._s(_vm.configData.input1)
41208
+ }
41209
+ })])])])]);
41210
+ };
41211
+ var staticRenderFns = [];
41212
+
41213
+ // EXTERNAL MODULE: ./package/baseComp.vue + 5 modules
41214
+ var baseComp = __webpack_require__(4272);
41215
+ ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js??clonedRuleSet-41.use!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./package/cms-richText/View.vue?vue&type=script&lang=js
41216
+
41217
+ /* harmony default export */ var Viewvue_type_script_lang_js = ({
41218
+ name: "cms-richText",
41219
+ components: {
41220
+ BaseComp: baseComp["default"]
41221
+ },
41222
+ props: {
41223
+ data: {
41224
+ type: Object,
41225
+ default: () => {
41226
+ return {};
41227
+ }
41228
+ },
41229
+ nowCompId: {
41230
+ type: [String, Number],
41231
+ default: ""
41232
+ },
41233
+ isOpcacity: {
41234
+ type: Boolean,
41235
+ default: true
41236
+ },
41237
+ lang: {
41238
+ type: String,
41239
+ default: "zh-HK"
41240
+ }
41241
+ },
41242
+ data() {
41243
+ return {
41244
+ configData: {},
41245
+ messFold: false
41246
+ };
41247
+ },
41248
+ mounted() {},
41249
+ watch: {},
41250
+ methods: {
41251
+ getConfigData(configData) {
41252
+ this.configData = configData;
41253
+ },
41254
+ foldMessText() {
41255
+ this.messFold = !this.messFold;
41256
+ },
41257
+ decodeJumpUrl(url) {
41258
+ if (!url) return;
41259
+ top.location.href = url;
41260
+ }
41261
+ }
41262
+ });
41263
+ ;// ./package/cms-richText/View.vue?vue&type=script&lang=js
41264
+ /* harmony default export */ var cms_richText_Viewvue_type_script_lang_js = (Viewvue_type_script_lang_js);
41265
+ ;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-42.use[0]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./package/cms-richText/View.vue?vue&type=style&index=0&id=f9cda95e&prod&lang=scss&scoped=true
41266
+ // extracted by mini-css-extract-plugin
41267
+
41268
+ ;// ./package/cms-richText/View.vue?vue&type=style&index=0&id=f9cda95e&prod&lang=scss&scoped=true
41269
+
41270
+ ;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-42.use[0]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./package/cms-richText/View.vue?vue&type=style&index=1&id=f9cda95e&prod&lang=scss
41271
+ // extracted by mini-css-extract-plugin
41272
+
41273
+ ;// ./package/cms-richText/View.vue?vue&type=style&index=1&id=f9cda95e&prod&lang=scss
41274
+
41275
+ // EXTERNAL MODULE: ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
41276
+ var componentNormalizer = __webpack_require__(1656);
41277
+ ;// ./package/cms-richText/View.vue
41278
+
41279
+
41280
+
41281
+ ;
41282
+
41283
+
41284
+
41285
+ /* normalize component */
41286
+
41287
+ var component = (0,componentNormalizer/* default */.A)(
41288
+ cms_richText_Viewvue_type_script_lang_js,
41289
+ render,
41290
+ staticRenderFns,
41291
+ false,
41292
+ null,
41293
+ "f9cda95e",
41294
+ null
41295
+
41296
+ )
41297
+
41298
+ /* harmony default export */ var View = (component.exports);
41299
+
41300
+ /***/ }),
41301
+
40748
41302
  /***/ 5700:
40749
41303
  /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
40750
41304
 
@@ -41291,383 +41845,6 @@ module.exports = function (fn, that) {
41291
41845
  };
41292
41846
 
41293
41847
 
41294
- /***/ }),
41295
-
41296
- /***/ 6083:
41297
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
41298
-
41299
- "use strict";
41300
- // ESM COMPAT FLAG
41301
- __webpack_require__.r(__webpack_exports__);
41302
-
41303
- // EXPORTS
41304
- __webpack_require__.d(__webpack_exports__, {
41305
- "default": function() { return /* binding */ View; }
41306
- });
41307
-
41308
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js??clonedRuleSet-41.use!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./package/cms-video/View.vue?vue&type=template&id=08ec3683&scoped=true
41309
- var render = function render() {
41310
- var _vm = this,
41311
- _c = _vm._self._c;
41312
- return _c('BaseComp', _vm._b({
41313
- attrs: {
41314
- "data": _vm.data,
41315
- "nowCompId": _vm.nowCompId,
41316
- "isOpcacity": _vm.isOpcacity,
41317
- "lang": _vm.lang
41318
- },
41319
- on: {
41320
- "getConfigData": _vm.getConfigData
41321
- }
41322
- }, 'BaseComp', _vm.$attrs, false), [_c('section', {
41323
- staticClass: "cms-video-container",
41324
- class: [_vm.configData.customClass || ''],
41325
- style: _vm.containerStyle
41326
- }, [_c('div', {
41327
- staticClass: "video-wrapper",
41328
- style: _vm.wrapperStyle
41329
- }, [_vm.videoType === 'direct' && _vm.configData.videoUrl ? _c('video', {
41330
- staticClass: "cms-video direct-video",
41331
- style: _vm.videoStyle,
41332
- attrs: {
41333
- "src": _vm.configData.videoUrl,
41334
- "controls": _vm.configData.showControls,
41335
- "autoplay": _vm.configData.autoplay,
41336
- "loop": _vm.configData.loop,
41337
- "poster": _vm.configData.posterUrl
41338
- },
41339
- domProps: {
41340
- "muted": _vm.configData.muted
41341
- },
41342
- on: {
41343
- "loadstart": _vm.onVideoLoadStart,
41344
- "loadeddata": _vm.onVideoLoaded,
41345
- "error": _vm.onVideoError
41346
- }
41347
- }) : _vm.configData.embedCode ? _c('div', {
41348
- staticClass: "cms-video embed-video",
41349
- style: _vm.videoStyle,
41350
- domProps: {
41351
- "innerHTML": _vm._s(_vm.configData.embedCode)
41352
- }
41353
- }) : _c('div', {
41354
- staticClass: "video-placeholder",
41355
- style: _vm.placeholderStyle
41356
- }, [_c('img', {
41357
- staticStyle: {
41358
- "width": "97.82px",
41359
- "height": "97.82px"
41360
- },
41361
- attrs: {
41362
- "src": __webpack_require__(6148),
41363
- "alt": "Video Camera"
41364
- }
41365
- })])]), _vm.configData.title ? _c('div', {
41366
- staticClass: "f-c-c"
41367
- }, [_vm._v(_vm._s(_vm.configData.title))]) : _vm._e()])]);
41368
- };
41369
- var staticRenderFns = [];
41370
-
41371
- ;// ./package/cms-video/View.vue?vue&type=template&id=08ec3683&scoped=true
41372
-
41373
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.iterator.constructor.js
41374
- var es_iterator_constructor = __webpack_require__(8111);
41375
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.iterator.for-each.js
41376
- var es_iterator_for_each = __webpack_require__(7588);
41377
- // EXTERNAL MODULE: ./package/baseComp.vue + 5 modules
41378
- var baseComp = __webpack_require__(4272);
41379
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js??clonedRuleSet-41.use!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./package/cms-video/View.vue?vue&type=script&lang=js
41380
-
41381
-
41382
-
41383
-
41384
-
41385
- /* harmony default export */ var Viewvue_type_script_lang_js = ({
41386
- name: "cms-video",
41387
- components: {
41388
- BaseComp: baseComp["default"]
41389
- },
41390
- props: {
41391
- data: {
41392
- type: Object,
41393
- default: () => {
41394
- return {};
41395
- }
41396
- },
41397
- nowCompId: {
41398
- type: [String, Number],
41399
- default: ""
41400
- },
41401
- isOpcacity: {
41402
- type: Boolean,
41403
- default: true
41404
- },
41405
- lang: {
41406
- type: String,
41407
- default: "zh-HK"
41408
- }
41409
- },
41410
- data() {
41411
- return {
41412
- configData: {},
41413
- videoLoaded: false,
41414
- videoError: false,
41415
- // 默认配置数据
41416
- defaultConfig: {
41417
- // 视频源设置
41418
- videoType: "direct",
41419
- videoUrl: "",
41420
- embedCode: "",
41421
- posterUrl: "",
41422
- // 播放控制
41423
- showControls: true,
41424
- autoplay: false,
41425
- loop: false,
41426
- muted: false,
41427
- // 尺寸控制
41428
- widthType: "auto",
41429
- widthValue: 100,
41430
- heightType: "auto",
41431
- heightValue: 100,
41432
- aspectRatio: "16:9",
41433
- customAspectRatio: "16:9",
41434
- maxWidth: 0,
41435
- maxHeight: 0,
41436
- // 样式设置
41437
- borderRadius: 0,
41438
- // 高级配置
41439
- customClass: "",
41440
- customStyle: ""
41441
- }
41442
- };
41443
- },
41444
- mounted() {
41445
- this.initConfigData();
41446
- },
41447
- watch: {
41448
- configData: {
41449
- handler() {
41450
- this.updateStyles();
41451
- },
41452
- deep: true
41453
- }
41454
- },
41455
- computed: {
41456
- // 视频类型
41457
- videoType() {
41458
- return this.configData.videoType || this.defaultConfig.videoType;
41459
- },
41460
- // 实际使用的宽高比
41461
- actualAspectRatio() {
41462
- const config = {
41463
- ...this.defaultConfig,
41464
- ...this.configData
41465
- };
41466
- if (config.aspectRatio === "custom") {
41467
- return config.customAspectRatio || "16:9";
41468
- }
41469
- return config.aspectRatio;
41470
- },
41471
- // 容器样式
41472
- containerStyle() {
41473
- const config = {
41474
- ...this.defaultConfig,
41475
- ...this.configData
41476
- };
41477
- return {
41478
- ...this.parseCustomStyle(config.customStyle)
41479
- };
41480
- },
41481
- // 包装器样式
41482
- wrapperStyle() {
41483
- const config = {
41484
- ...this.defaultConfig,
41485
- ...this.configData
41486
- };
41487
- let width = "auto";
41488
- let height = "auto";
41489
-
41490
- // 宽度设置
41491
- if (config.widthType === "fixed") {
41492
- width = `${config.widthValue}px`;
41493
- } else if (config.widthType === "percent") {
41494
- width = `${config.widthValue}%`;
41495
- }
41496
-
41497
- // 高度设置
41498
- if (config.heightType === "fixed") {
41499
- height = `${config.heightValue}px`;
41500
- } else if (config.heightType === "percent") {
41501
- height = `${config.heightValue}%`;
41502
- } else if (config.heightType === "aspect") {
41503
- // 根据宽高比计算高度
41504
- height = "auto";
41505
- }
41506
- return {
41507
- width,
41508
- height,
41509
- maxWidth: config.maxWidth > 0 ? `${config.maxWidth}px` : "none",
41510
- maxHeight: config.maxHeight > 0 ? `${config.maxHeight}px` : "none",
41511
- borderRadius: `${config.borderRadius}px`,
41512
- overflow: "hidden",
41513
- display: "block",
41514
- position: "relative"
41515
- };
41516
- },
41517
- // 视频样式
41518
- videoStyle() {
41519
- const config = {
41520
- ...this.defaultConfig,
41521
- ...this.configData
41522
- };
41523
- let style = {
41524
- width: "100%",
41525
- height: "100%",
41526
- display: "block",
41527
- border: "none",
41528
- outline: "none"
41529
- };
41530
-
41531
- // 如果是宽高比模式,设置aspect-ratio
41532
- if (config.heightType === "aspect") {
41533
- style.aspectRatio = this.actualAspectRatio.replace(":", "/");
41534
- }
41535
- return style;
41536
- },
41537
- // 占位符样式
41538
- placeholderStyle() {
41539
- const config = {
41540
- ...this.defaultConfig,
41541
- ...this.configData
41542
- };
41543
- let width = "100%";
41544
- let height = "auto";
41545
-
41546
- // 如果设置了固定尺寸,使用设置的尺寸
41547
- if (config.widthType === "fixed") {
41548
- width = `${config.widthValue}px`;
41549
- } else if (config.widthType === "percent") {
41550
- width = `${config.widthValue}%`;
41551
- }
41552
- if (config.heightType === "fixed") {
41553
- height = `${config.heightValue}px`;
41554
- } else if (config.heightType === "aspect") {
41555
- // 使用aspect-ratio保持16:9比例
41556
- height = "auto";
41557
- } else {
41558
- // 默认使用16:9比例
41559
- height = "auto";
41560
- }
41561
- const style = {
41562
- width,
41563
- height,
41564
- backgroundColor: "#f5f7fa",
41565
- border: "1px dashed #dcdfe6",
41566
- borderRadius: `${config.borderRadius}px`,
41567
- display: "flex",
41568
- flexDirection: "column",
41569
- alignItems: "center",
41570
- justifyContent: "center",
41571
- color: "#909399",
41572
- fontSize: "14px"
41573
- };
41574
-
41575
- // 如果不是固定高度,使用aspect-ratio保持16:9比例
41576
- if (config.heightType !== "fixed") {
41577
- style.aspectRatio = this.actualAspectRatio.replace(":", "/");
41578
- }
41579
- return style;
41580
- }
41581
- },
41582
- methods: {
41583
- // 初始化配置数据
41584
- initConfigData() {
41585
- this.configData = {
41586
- ...this.defaultConfig,
41587
- ...this.configData
41588
- };
41589
- },
41590
- // 获取配置数据
41591
- getConfigData(configData) {
41592
- this.configData = {
41593
- ...this.defaultConfig,
41594
- ...configData
41595
- };
41596
- this.updateStyles();
41597
- },
41598
- // 更新样式
41599
- updateStyles() {
41600
- this.$nextTick(() => {
41601
- this.$forceUpdate();
41602
- });
41603
- },
41604
- // 视频开始加载
41605
- onVideoLoadStart() {
41606
- this.videoLoaded = false;
41607
- this.videoError = false;
41608
- },
41609
- // 视频加载完成
41610
- onVideoLoaded() {
41611
- this.videoLoaded = true;
41612
- this.videoError = false;
41613
- },
41614
- // 视频加载失败
41615
- onVideoError() {
41616
- this.videoLoaded = false;
41617
- this.videoError = true;
41618
- },
41619
- // 解析自定义样式
41620
- parseCustomStyle(customStyle) {
41621
- if (!customStyle) return {};
41622
- try {
41623
- const styles = {};
41624
- const declarations = customStyle.split(";");
41625
- declarations.forEach(declaration => {
41626
- const [property, value] = declaration.split(":");
41627
- if (property && value) {
41628
- const camelCaseProperty = property.trim().replace(/-([a-z])/g, g => g[1].toUpperCase());
41629
- styles[camelCaseProperty] = value.trim();
41630
- }
41631
- });
41632
- return styles;
41633
- } catch (error) {
41634
- console.warn("解析自定义样式失败:", error);
41635
- return {};
41636
- }
41637
- }
41638
- }
41639
- });
41640
- ;// ./package/cms-video/View.vue?vue&type=script&lang=js
41641
- /* harmony default export */ var cms_video_Viewvue_type_script_lang_js = (Viewvue_type_script_lang_js);
41642
- ;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-42.use[0]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./package/cms-video/View.vue?vue&type=style&index=0&id=08ec3683&prod&lang=scss&scoped=true
41643
- // extracted by mini-css-extract-plugin
41644
-
41645
- ;// ./package/cms-video/View.vue?vue&type=style&index=0&id=08ec3683&prod&lang=scss&scoped=true
41646
-
41647
- // EXTERNAL MODULE: ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
41648
- var componentNormalizer = __webpack_require__(1656);
41649
- ;// ./package/cms-video/View.vue
41650
-
41651
-
41652
-
41653
- ;
41654
-
41655
-
41656
- /* normalize component */
41657
-
41658
- var component = (0,componentNormalizer/* default */.A)(
41659
- cms_video_Viewvue_type_script_lang_js,
41660
- render,
41661
- staticRenderFns,
41662
- false,
41663
- null,
41664
- "08ec3683",
41665
- null
41666
-
41667
- )
41668
-
41669
- /* harmony default export */ var View = (component.exports);
41670
-
41671
41848
  /***/ }),
41672
41849
 
41673
41850
  /***/ 6098:
@@ -42427,285 +42604,6 @@ var component = (0,componentNormalizer/* default */.A)(
42427
42604
 
42428
42605
  /***/ }),
42429
42606
 
42430
- /***/ 6677:
42431
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
42432
-
42433
- "use strict";
42434
- // ESM COMPAT FLAG
42435
- __webpack_require__.r(__webpack_exports__);
42436
-
42437
- // EXPORTS
42438
- __webpack_require__.d(__webpack_exports__, {
42439
- "default": function() { return /* binding */ View; }
42440
- });
42441
-
42442
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js??clonedRuleSet-41.use!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./package/cms-button/View.vue?vue&type=template&id=8a9aa4b4&scoped=true
42443
- var render = function render() {
42444
- var _vm = this,
42445
- _c = _vm._self._c;
42446
- return _c('BaseComp', _vm._b({
42447
- attrs: {
42448
- "data": _vm.data,
42449
- "nowCompId": _vm.nowCompId,
42450
- "isOpcacity": _vm.isOpcacity,
42451
- "lang": _vm.lang
42452
- },
42453
- on: {
42454
- "getConfigData": _vm.getConfigData
42455
- }
42456
- }, 'BaseComp', _vm.$attrs, false), [_c('section', {
42457
- staticClass: "cms-button-container",
42458
- class: [`align-${_vm.configData.textAlign || 'center'}`, _vm.configData.customClass || ''],
42459
- style: _vm.containerStyle
42460
- }, [_c('button', {
42461
- staticClass: "cms-button",
42462
- class: ['cms-button-element', {
42463
- 'has-link': _vm.configData.linkUrl,
42464
- 'hover-effect': _vm.configData.hoverEffect
42465
- }],
42466
- style: _vm.buttonStyle,
42467
- attrs: {
42468
- "disabled": _vm.configData.disabled
42469
- },
42470
- on: {
42471
- "click": _vm.handleClick
42472
- }
42473
- }, [_vm._v(" " + _vm._s(_vm.configData.buttonText) + " "), _c('i', {
42474
- staticClass: "el-icon-arrow-right el-icon--right"
42475
- })])])]);
42476
- };
42477
- var staticRenderFns = [];
42478
-
42479
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.iterator.constructor.js
42480
- var es_iterator_constructor = __webpack_require__(8111);
42481
- // EXTERNAL MODULE: ./node_modules/core-js/modules/es.iterator.for-each.js
42482
- var es_iterator_for_each = __webpack_require__(7588);
42483
- // EXTERNAL MODULE: ./package/baseComp.vue + 5 modules
42484
- var baseComp = __webpack_require__(4272);
42485
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js??clonedRuleSet-41.use!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./package/cms-button/View.vue?vue&type=script&lang=js
42486
-
42487
-
42488
-
42489
-
42490
-
42491
- /* harmony default export */ var Viewvue_type_script_lang_js = ({
42492
- name: "cms-button",
42493
- components: {
42494
- BaseComp: baseComp["default"]
42495
- },
42496
- props: {
42497
- data: {
42498
- type: Object,
42499
- default: () => {
42500
- return {};
42501
- }
42502
- },
42503
- nowCompId: {
42504
- type: [String, Number],
42505
- default: ""
42506
- },
42507
- isOpcacity: {
42508
- type: Boolean,
42509
- default: true
42510
- },
42511
- lang: {
42512
- type: String,
42513
- default: "zh-HK"
42514
- }
42515
- },
42516
- data() {
42517
- return {
42518
- configData: {},
42519
- // 默认配置数据
42520
- defaultConfig: {
42521
- // 文字设置
42522
- buttonText: "按钮文字",
42523
- textAlign: "center",
42524
- fontSize: 16,
42525
- fontColor: "#ffffff",
42526
- fontWeight: "normal",
42527
- // 样式控制
42528
- backgroundColor: "#409eff",
42529
- borderRadius: 30,
42530
- borderWidth: 1,
42531
- borderStyle: "solid",
42532
- borderColor: "#409eff",
42533
- // 空间布局
42534
- paddingTop: 12,
42535
- paddingBottom: 12,
42536
- paddingLeft: 20,
42537
- paddingRight: 20,
42538
- marginTop: 0,
42539
- marginBottom: 0,
42540
- marginLeft: 0,
42541
- marginRight: 0,
42542
- // 交互功能
42543
- linkUrl: "",
42544
- linkTarget: "_self",
42545
- disabled: false,
42546
- // 高级配置
42547
- customClass: "",
42548
- customStyle: "",
42549
- hoverEffect: false,
42550
- // 尺寸设置
42551
- buttonWidth: "300",
42552
- buttonHeight: "48",
42553
- minWidth: 80,
42554
- minHeight: 36
42555
- }
42556
- };
42557
- },
42558
- mounted() {
42559
- this.initConfigData();
42560
- },
42561
- watch: {
42562
- configData: {
42563
- handler() {
42564
- this.updateStyles();
42565
- },
42566
- deep: true
42567
- }
42568
- },
42569
- computed: {
42570
- // 容器样式
42571
- containerStyle() {
42572
- const config = {
42573
- ...this.defaultConfig,
42574
- ...this.configData
42575
- };
42576
- return {
42577
- textAlign: config.textAlign,
42578
- margin: `${config.marginTop}px ${config.marginRight}px ${config.marginBottom}px ${config.marginLeft}px`,
42579
- ...this.parseCustomStyle(config.customStyle)
42580
- };
42581
- },
42582
- // 按钮样式
42583
- buttonStyle() {
42584
- const config = {
42585
- ...this.defaultConfig,
42586
- ...this.configData
42587
- };
42588
- return {
42589
- // 文字样式
42590
- fontSize: `${config.fontSize}px`,
42591
- color: config.fontColor,
42592
- fontWeight: config.fontWeight,
42593
- // 背景和边框
42594
- backgroundColor: config.backgroundColor ? config.backgroundColor : "transparent",
42595
- borderRadius: `${config.borderRadius}px`,
42596
- border: config.borderWidth ? `${config.borderWidth}px ${config.borderStyle} ${config.borderColor}` : "none",
42597
- // 内边距
42598
- padding: `${config.paddingTop}px ${config.paddingRight}px ${config.paddingBottom}px ${config.paddingLeft}px`,
42599
- // 尺寸
42600
- width: config.buttonWidth === "auto" ? "auto" : `${config.buttonWidth}px`,
42601
- height: config.buttonHeight === "auto" ? "auto" : `${config.buttonHeight}px`,
42602
- minWidth: `${config.minWidth}px`,
42603
- minHeight: `${config.minHeight}px`,
42604
- // 交互效果
42605
- cursor: config.linkUrl ? "pointer" : "default",
42606
- opacity: config.disabled ? 0.6 : 1,
42607
- transition: config.hoverEffect ? "all 0.3s ease" : "none",
42608
- // 基础样式
42609
- outline: "none",
42610
- textDecoration: "none",
42611
- display: "inline-block",
42612
- textAlign: "center",
42613
- verticalAlign: "middle",
42614
- userSelect: "none",
42615
- whiteSpace: "nowrap"
42616
- };
42617
- }
42618
- },
42619
- methods: {
42620
- // 初始化配置数据
42621
- initConfigData() {
42622
- this.configData = {
42623
- ...this.defaultConfig,
42624
- ...this.configData
42625
- };
42626
- },
42627
- // 获取配置数据
42628
- getConfigData(configData) {
42629
- this.configData = {
42630
- ...this.defaultConfig,
42631
- ...configData
42632
- };
42633
- this.updateStyles();
42634
- },
42635
- // 更新样式
42636
- updateStyles() {
42637
- this.$nextTick(() => {
42638
- this.$forceUpdate();
42639
- });
42640
- },
42641
- // 处理点击事件
42642
- handleClick() {
42643
- if (this.configData.disabled) {
42644
- return;
42645
- }
42646
- if (this.configData.linkUrl) {
42647
- const target = this.configData.linkTarget || "_self";
42648
- if (target === "_blank") {
42649
- window.open(this.configData.linkUrl, "_blank");
42650
- } else {
42651
- window.location.href = this.configData.linkUrl;
42652
- }
42653
- }
42654
- },
42655
- // 解析自定义样式
42656
- parseCustomStyle(customStyle) {
42657
- if (!customStyle) return {};
42658
- try {
42659
- const styles = {};
42660
- const declarations = customStyle.split(";");
42661
- declarations.forEach(declaration => {
42662
- const [property, value] = declaration.split(":");
42663
- if (property && value) {
42664
- const camelCaseProperty = property.trim().replace(/-([a-z])/g, g => g[1].toUpperCase());
42665
- styles[camelCaseProperty] = value.trim();
42666
- }
42667
- });
42668
- return styles;
42669
- } catch (error) {
42670
- console.warn("解析自定义样式失败:", error);
42671
- return {};
42672
- }
42673
- }
42674
- }
42675
- });
42676
- ;// ./package/cms-button/View.vue?vue&type=script&lang=js
42677
- /* harmony default export */ var cms_button_Viewvue_type_script_lang_js = (Viewvue_type_script_lang_js);
42678
- ;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-42.use[0]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./package/cms-button/View.vue?vue&type=style&index=0&id=8a9aa4b4&prod&lang=scss&scoped=true
42679
- // extracted by mini-css-extract-plugin
42680
-
42681
- ;// ./package/cms-button/View.vue?vue&type=style&index=0&id=8a9aa4b4&prod&lang=scss&scoped=true
42682
-
42683
- // EXTERNAL MODULE: ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
42684
- var componentNormalizer = __webpack_require__(1656);
42685
- ;// ./package/cms-button/View.vue
42686
-
42687
-
42688
-
42689
- ;
42690
-
42691
-
42692
- /* normalize component */
42693
-
42694
- var component = (0,componentNormalizer/* default */.A)(
42695
- cms_button_Viewvue_type_script_lang_js,
42696
- render,
42697
- staticRenderFns,
42698
- false,
42699
- null,
42700
- "8a9aa4b4",
42701
- null
42702
-
42703
- )
42704
-
42705
- /* harmony default export */ var View = (component.exports);
42706
-
42707
- /***/ }),
42708
-
42709
42607
  /***/ 6699:
42710
42608
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
42711
42609
 
@@ -52831,127 +52729,6 @@ module.exports = function (it) {
52831
52729
  };
52832
52730
 
52833
52731
 
52834
- /***/ }),
52835
-
52836
- /***/ 7082:
52837
- /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
52838
-
52839
- "use strict";
52840
- // ESM COMPAT FLAG
52841
- __webpack_require__.r(__webpack_exports__);
52842
-
52843
- // EXPORTS
52844
- __webpack_require__.d(__webpack_exports__, {
52845
- "default": function() { return /* binding */ View; }
52846
- });
52847
-
52848
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js??clonedRuleSet-41.use!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./package/cms-richText/View.vue?vue&type=template&id=6e48aa1e&scoped=true
52849
- var render = function render() {
52850
- var _vm = this,
52851
- _c = _vm._self._c;
52852
- return _c('BaseComp', _vm._b({
52853
- attrs: {
52854
- "data": _vm.data,
52855
- "nowCompId": _vm.nowCompId,
52856
- "isOpcacity": _vm.isOpcacity,
52857
- "lang": _vm.lang
52858
- },
52859
- on: {
52860
- "getConfigData": _vm.getConfigData
52861
- }
52862
- }, 'BaseComp', _vm.$attrs, false), [_c('section', {
52863
- staticClass: "cmhk-home_main"
52864
- }, [_c('div', [_c('div', {
52865
- staticClass: "inner"
52866
- }, [_c('p', {
52867
- domProps: {
52868
- "innerHTML": _vm._s(_vm.configData.input1)
52869
- }
52870
- })])])])]);
52871
- };
52872
- var staticRenderFns = [];
52873
-
52874
- // EXTERNAL MODULE: ./package/baseComp.vue + 5 modules
52875
- var baseComp = __webpack_require__(4272);
52876
- ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js??clonedRuleSet-41.use!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./package/cms-richText/View.vue?vue&type=script&lang=js
52877
-
52878
- /* harmony default export */ var Viewvue_type_script_lang_js = ({
52879
- name: "cms-richText",
52880
- components: {
52881
- BaseComp: baseComp["default"]
52882
- },
52883
- props: {
52884
- data: {
52885
- type: Object,
52886
- default: () => {
52887
- return {};
52888
- }
52889
- },
52890
- nowCompId: {
52891
- type: [String, Number],
52892
- default: ""
52893
- },
52894
- isOpcacity: {
52895
- type: Boolean,
52896
- default: true
52897
- },
52898
- lang: {
52899
- type: String,
52900
- default: "zh-HK"
52901
- }
52902
- },
52903
- data() {
52904
- return {
52905
- configData: {},
52906
- messFold: false
52907
- };
52908
- },
52909
- mounted() {},
52910
- watch: {},
52911
- methods: {
52912
- getConfigData(configData) {
52913
- this.configData = configData;
52914
- },
52915
- foldMessText() {
52916
- this.messFold = !this.messFold;
52917
- },
52918
- decodeJumpUrl(url) {
52919
- if (!url) return;
52920
- top.location.href = url;
52921
- }
52922
- }
52923
- });
52924
- ;// ./package/cms-richText/View.vue?vue&type=script&lang=js
52925
- /* harmony default export */ var cms_richText_Viewvue_type_script_lang_js = (Viewvue_type_script_lang_js);
52926
- ;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-42.use[0]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./package/cms-richText/View.vue?vue&type=style&index=0&id=6e48aa1e&prod&lang=scss&scoped=true
52927
- // extracted by mini-css-extract-plugin
52928
-
52929
- ;// ./package/cms-richText/View.vue?vue&type=style&index=0&id=6e48aa1e&prod&lang=scss&scoped=true
52930
-
52931
- // EXTERNAL MODULE: ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
52932
- var componentNormalizer = __webpack_require__(1656);
52933
- ;// ./package/cms-richText/View.vue
52934
-
52935
-
52936
-
52937
- ;
52938
-
52939
-
52940
- /* normalize component */
52941
-
52942
- var component = (0,componentNormalizer/* default */.A)(
52943
- cms_richText_Viewvue_type_script_lang_js,
52944
- render,
52945
- staticRenderFns,
52946
- false,
52947
- null,
52948
- "6e48aa1e",
52949
- null
52950
-
52951
- )
52952
-
52953
- /* harmony default export */ var View = (component.exports);
52954
-
52955
52732
  /***/ }),
52956
52733
 
52957
52734
  /***/ 7197:
@@ -53350,7 +53127,7 @@ $({ target: 'Iterator', proto: true, real: true }, {
53350
53127
  __webpack_require__.r(__webpack_exports__);
53351
53128
  /* harmony import */ var _baseConfig__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(649);
53352
53129
 
53353
- const View = () => Promise.resolve(/* import() */).then(__webpack_require__.bind(__webpack_require__, 7082));
53130
+ const View = () => Promise.resolve(/* import() */).then(__webpack_require__.bind(__webpack_require__, 5653));
53354
53131
  const langData = {
53355
53132
  input1: "请输入富文本内容"
53356
53133
  };
@@ -54786,6 +54563,286 @@ const getWujieCompInfo = (compList, componentId, isTemplate) => {
54786
54563
 
54787
54564
  /***/ }),
54788
54565
 
54566
+ /***/ 8169:
54567
+ /***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
54568
+
54569
+ "use strict";
54570
+ // ESM COMPAT FLAG
54571
+ __webpack_require__.r(__webpack_exports__);
54572
+
54573
+ // EXPORTS
54574
+ __webpack_require__.d(__webpack_exports__, {
54575
+ "default": function() { return /* binding */ View; }
54576
+ });
54577
+
54578
+ ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js??clonedRuleSet-41.use!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[4]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./package/cms-button/View.vue?vue&type=template&id=d7712dd2&scoped=true
54579
+ var render = function render() {
54580
+ var _vm = this,
54581
+ _c = _vm._self._c;
54582
+ return _c('BaseComp', _vm._b({
54583
+ attrs: {
54584
+ "data": _vm.data,
54585
+ "nowCompId": _vm.nowCompId,
54586
+ "isOpcacity": _vm.isOpcacity,
54587
+ "lang": _vm.lang
54588
+ },
54589
+ on: {
54590
+ "getConfigData": _vm.getConfigData
54591
+ }
54592
+ }, 'BaseComp', _vm.$attrs, false), [_c('section', {
54593
+ staticClass: "cms-button-container",
54594
+ class: [`align-${_vm.configData.textAlign || 'center'}`, _vm.configData.customClass || ''],
54595
+ style: _vm.containerStyle
54596
+ }, [_c('button', {
54597
+ staticClass: "cms-button",
54598
+ class: ['cms-button-element', {
54599
+ 'has-link': _vm.configData.linkUrl,
54600
+ 'hover-effect': _vm.configData.hoverEffect
54601
+ }],
54602
+ style: _vm.buttonStyle,
54603
+ attrs: {
54604
+ "disabled": _vm.configData.disabled
54605
+ },
54606
+ on: {
54607
+ "click": _vm.handleClick
54608
+ }
54609
+ }, [_vm._v(" " + _vm._s(_vm.configData.buttonText) + " "), _c('i', {
54610
+ staticClass: "el-icon-arrow-right el-icon--right"
54611
+ })])])]);
54612
+ };
54613
+ var staticRenderFns = [];
54614
+
54615
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.iterator.constructor.js
54616
+ var es_iterator_constructor = __webpack_require__(8111);
54617
+ // EXTERNAL MODULE: ./node_modules/core-js/modules/es.iterator.for-each.js
54618
+ var es_iterator_for_each = __webpack_require__(7588);
54619
+ // EXTERNAL MODULE: ./package/baseComp.vue + 5 modules
54620
+ var baseComp = __webpack_require__(4272);
54621
+ ;// ./node_modules/thread-loader/dist/cjs.js!./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/babel-loader/lib/index.js??clonedRuleSet-41.use!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./package/cms-button/View.vue?vue&type=script&lang=js
54622
+
54623
+
54624
+
54625
+
54626
+
54627
+ /* harmony default export */ var Viewvue_type_script_lang_js = ({
54628
+ name: "cms-button",
54629
+ components: {
54630
+ BaseComp: baseComp["default"]
54631
+ },
54632
+ props: {
54633
+ data: {
54634
+ type: Object,
54635
+ default: () => {
54636
+ return {};
54637
+ }
54638
+ },
54639
+ nowCompId: {
54640
+ type: [String, Number],
54641
+ default: ""
54642
+ },
54643
+ isOpcacity: {
54644
+ type: Boolean,
54645
+ default: true
54646
+ },
54647
+ lang: {
54648
+ type: String,
54649
+ default: "zh-HK"
54650
+ }
54651
+ },
54652
+ data() {
54653
+ return {
54654
+ configData: {},
54655
+ // 默认配置数据
54656
+ defaultConfig: {
54657
+ // 文字设置
54658
+ buttonText: "按钮文字",
54659
+ textAlign: "center",
54660
+ fontSize: 16,
54661
+ fontColor: "#ffffff",
54662
+ fontWeight: "normal",
54663
+ // 样式控制
54664
+ backgroundColor: "#409eff",
54665
+ borderRadius: 30,
54666
+ borderWidth: 1,
54667
+ borderStyle: "solid",
54668
+ borderColor: "#409eff",
54669
+ // 空间布局
54670
+ paddingTop: 12,
54671
+ paddingBottom: 12,
54672
+ paddingLeft: 20,
54673
+ paddingRight: 20,
54674
+ marginTop: 0,
54675
+ marginBottom: 0,
54676
+ marginLeft: 0,
54677
+ marginRight: 0,
54678
+ // 交互功能
54679
+ linkUrl: "",
54680
+ linkTarget: "_self",
54681
+ disabled: false,
54682
+ // 高级配置
54683
+ customClass: "",
54684
+ customStyle: "",
54685
+ hoverEffect: false,
54686
+ // 尺寸设置
54687
+ buttonWidth: "300",
54688
+ buttonHeight: "48",
54689
+ minWidth: 80,
54690
+ minHeight: 36
54691
+ }
54692
+ };
54693
+ },
54694
+ mounted() {
54695
+ this.initConfigData();
54696
+ },
54697
+ watch: {
54698
+ configData: {
54699
+ handler() {
54700
+ this.updateStyles();
54701
+ },
54702
+ deep: true
54703
+ }
54704
+ },
54705
+ computed: {
54706
+ // 容器样式
54707
+ containerStyle() {
54708
+ const config = {
54709
+ ...this.defaultConfig,
54710
+ ...this.configData
54711
+ };
54712
+ return {
54713
+ backgroundColor: config.wrapperBackgroundColor,
54714
+ textAlign: config.textAlign,
54715
+ margin: `${config.marginTop}px ${config.marginRight}px ${config.marginBottom}px ${config.marginLeft}px`,
54716
+ ...this.parseCustomStyle(config.customStyle)
54717
+ };
54718
+ },
54719
+ // 按钮样式
54720
+ buttonStyle() {
54721
+ const config = {
54722
+ ...this.defaultConfig,
54723
+ ...this.configData
54724
+ };
54725
+ return {
54726
+ // 文字样式
54727
+ fontSize: `${config.fontSize}px`,
54728
+ color: config.fontColor,
54729
+ fontWeight: config.fontWeight,
54730
+ // 背景和边框
54731
+ backgroundColor: config.backgroundColor ? config.backgroundColor : "transparent",
54732
+ borderRadius: `${config.borderRadius}px`,
54733
+ border: config.borderWidth ? `${config.borderWidth}px ${config.borderStyle} ${config.borderColor}` : "none",
54734
+ // 内边距
54735
+ padding: `${config.paddingTop}px ${config.paddingRight}px ${config.paddingBottom}px ${config.paddingLeft}px`,
54736
+ // 尺寸
54737
+ width: config.buttonWidth === "auto" ? "auto" : `${config.buttonWidth}px`,
54738
+ height: config.buttonHeight === "auto" ? "auto" : `${config.buttonHeight}px`,
54739
+ minWidth: `${config.minWidth}px`,
54740
+ minHeight: `${config.minHeight}px`,
54741
+ // 交互效果
54742
+ cursor: config.linkUrl ? "pointer" : "default",
54743
+ opacity: config.disabled ? 0.6 : 1,
54744
+ transition: config.hoverEffect ? "all 0.3s ease" : "none",
54745
+ // 基础样式
54746
+ outline: "none",
54747
+ textDecoration: "none",
54748
+ display: "inline-block",
54749
+ textAlign: "center",
54750
+ verticalAlign: "middle",
54751
+ userSelect: "none",
54752
+ whiteSpace: "nowrap"
54753
+ };
54754
+ }
54755
+ },
54756
+ methods: {
54757
+ // 初始化配置数据
54758
+ initConfigData() {
54759
+ this.configData = {
54760
+ ...this.defaultConfig,
54761
+ ...this.configData
54762
+ };
54763
+ },
54764
+ // 获取配置数据
54765
+ getConfigData(configData) {
54766
+ this.configData = {
54767
+ ...this.defaultConfig,
54768
+ ...configData
54769
+ };
54770
+ this.updateStyles();
54771
+ },
54772
+ // 更新样式
54773
+ updateStyles() {
54774
+ this.$nextTick(() => {
54775
+ this.$forceUpdate();
54776
+ });
54777
+ },
54778
+ // 处理点击事件
54779
+ handleClick() {
54780
+ if (this.configData.disabled) {
54781
+ return;
54782
+ }
54783
+ if (this.configData.linkUrl) {
54784
+ const target = this.configData.linkTarget || "_self";
54785
+ if (target === "_blank") {
54786
+ window.open(this.configData.linkUrl, "_blank");
54787
+ } else {
54788
+ window.location.href = this.configData.linkUrl;
54789
+ }
54790
+ }
54791
+ },
54792
+ // 解析自定义样式
54793
+ parseCustomStyle(customStyle) {
54794
+ if (!customStyle) return {};
54795
+ try {
54796
+ const styles = {};
54797
+ const declarations = customStyle.split(";");
54798
+ declarations.forEach(declaration => {
54799
+ const [property, value] = declaration.split(":");
54800
+ if (property && value) {
54801
+ const camelCaseProperty = property.trim().replace(/-([a-z])/g, g => g[1].toUpperCase());
54802
+ styles[camelCaseProperty] = value.trim();
54803
+ }
54804
+ });
54805
+ return styles;
54806
+ } catch (error) {
54807
+ console.warn("解析自定义样式失败:", error);
54808
+ return {};
54809
+ }
54810
+ }
54811
+ }
54812
+ });
54813
+ ;// ./package/cms-button/View.vue?vue&type=script&lang=js
54814
+ /* harmony default export */ var cms_button_Viewvue_type_script_lang_js = (Viewvue_type_script_lang_js);
54815
+ ;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.use[3]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-42.use[0]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./package/cms-button/View.vue?vue&type=style&index=0&id=d7712dd2&prod&lang=scss&scoped=true
54816
+ // extracted by mini-css-extract-plugin
54817
+
54818
+ ;// ./package/cms-button/View.vue?vue&type=style&index=0&id=d7712dd2&prod&lang=scss&scoped=true
54819
+
54820
+ // EXTERNAL MODULE: ./node_modules/@vue/vue-loader-v15/lib/runtime/componentNormalizer.js
54821
+ var componentNormalizer = __webpack_require__(1656);
54822
+ ;// ./package/cms-button/View.vue
54823
+
54824
+
54825
+
54826
+ ;
54827
+
54828
+
54829
+ /* normalize component */
54830
+
54831
+ var component = (0,componentNormalizer/* default */.A)(
54832
+ cms_button_Viewvue_type_script_lang_js,
54833
+ render,
54834
+ staticRenderFns,
54835
+ false,
54836
+ null,
54837
+ "d7712dd2",
54838
+ null
54839
+
54840
+ )
54841
+
54842
+ /* harmony default export */ var View = (component.exports);
54843
+
54844
+ /***/ }),
54845
+
54789
54846
  /***/ 8227:
54790
54847
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
54791
54848