@cmstops/pro-compo 0.1.45 → 0.1.48

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.
Files changed (45) hide show
  1. package/dist/index.css +187 -0
  2. package/dist/index.min.css +1 -1
  3. package/es/contentDetailList/components/Content/LiveItem/index.js +1 -2
  4. package/es/contentDetailList/components/Content/courseItem/index.d.ts +0 -0
  5. package/es/contentDetailList/components/Content/courseItem/index.js +95 -0
  6. package/es/contentDetailList/components/Content/funhdItem/index.d.ts +0 -0
  7. package/es/contentDetailList/components/Content/funhdItem/index.js +95 -0
  8. package/es/contentDetailList/components/Content/index.js +41 -1
  9. package/es/contentDetailList/style/courseItem.less +108 -0
  10. package/es/contentDetailList/style/funhdItem.less +108 -0
  11. package/es/contentDetailList/style/index.css +184 -0
  12. package/es/contentDetailList/style/index.less +2 -0
  13. package/es/contentModal/component.js +49 -3
  14. package/es/contentModal/components/EqxiuList/MediaFilter/index.d.ts +0 -0
  15. package/es/contentModal/components/EqxiuList/MediaFilter/index.js +79 -0
  16. package/es/contentModal/components/EqxiuList/index.d.ts +0 -0
  17. package/es/contentModal/components/EqxiuList/index.js +229 -0
  18. package/es/contentModal/script/api.d.ts +1 -0
  19. package/es/contentModal/script/api.js +8 -1
  20. package/es/contentModal/style/ViewAllColumn.less +3 -0
  21. package/es/contentModal/style/index.css +3 -0
  22. package/es/index.css +187 -0
  23. package/es/typeIcons/component.js +18 -3
  24. package/es/utils/request.js +5 -1
  25. package/es/utils/typeMap.d.ts +2 -0
  26. package/es/utils/typeMap.js +3 -1
  27. package/lib/contentDetailList/components/Content/LiveItem/index.js +1 -2
  28. package/lib/contentDetailList/components/Content/courseItem/index.js +96 -0
  29. package/lib/contentDetailList/components/Content/funhdItem/index.js +96 -0
  30. package/lib/contentDetailList/components/Content/index.js +41 -1
  31. package/lib/contentDetailList/style/courseItem.less +108 -0
  32. package/lib/contentDetailList/style/funhdItem.less +108 -0
  33. package/lib/contentDetailList/style/index.css +184 -0
  34. package/lib/contentDetailList/style/index.less +2 -0
  35. package/lib/contentModal/component.js +49 -3
  36. package/lib/contentModal/components/EqxiuList/MediaFilter/index.js +80 -0
  37. package/lib/contentModal/components/EqxiuList/index.js +230 -0
  38. package/lib/contentModal/script/api.js +8 -0
  39. package/lib/contentModal/style/ViewAllColumn.less +3 -0
  40. package/lib/contentModal/style/index.css +3 -0
  41. package/lib/index.css +187 -0
  42. package/lib/typeIcons/component.js +17 -2
  43. package/lib/utils/request.js +5 -1
  44. package/lib/utils/typeMap.js +3 -1
  45. package/package.json +3 -3
@@ -0,0 +1,95 @@
1
+ import { defineComponent, computed, openBlock, createElementBlock, normalizeClass, createElementVNode, createBlock, unref, toDisplayString, renderSlot, createVNode, withCtx } from "vue";
2
+ import { Image, Tooltip } from "@arco-design/web-vue";
3
+ import _sfc_main$1 from "../../../../typeIcons/component.js";
4
+ import { noCoverText, timeFormat } from "../../../../utils/index.js";
5
+ const _hoisted_1 = { class: "cover-view" };
6
+ const _hoisted_2 = {
7
+ key: 1,
8
+ class: "no-img"
9
+ };
10
+ const _hoisted_3 = { class: "info-view" };
11
+ const _hoisted_4 = { class: "title_i" };
12
+ const _hoisted_5 = { class: "abttrite-v" };
13
+ const _hoisted_6 = { class: "left" };
14
+ const _hoisted_7 = /* @__PURE__ */ createElementVNode("span", { class: "abttr tags" }, "\u6D3B\u52A8", -1);
15
+ const _hoisted_8 = { class: "abttr tags" };
16
+ const _hoisted_9 = { class: "abttr time" };
17
+ const _hoisted_10 = { class: "right" };
18
+ const _sfc_main = defineComponent({
19
+ __name: "index",
20
+ props: {
21
+ item: {}
22
+ },
23
+ emits: ["clickTitle"],
24
+ setup(__props, { emit: __emit }) {
25
+ const props = __props;
26
+ const emit = __emit;
27
+ const hide = computed(() => {
28
+ const { hide: hide2 } = props.item;
29
+ return hide2 === 7 || hide2 === 6;
30
+ });
31
+ const silent = computed(() => {
32
+ return props.item && props.item.mourn_style === 1;
33
+ });
34
+ const pc_banner = computed(() => {
35
+ if (props.item.preview_url || props.item.cover || props.item.pc_cover)
36
+ return props.item.preview_url || props.item.cover || props.item.pc_cover;
37
+ if (!props.item.style)
38
+ return null;
39
+ const ret = JSON.parse(props.item.style);
40
+ if (!ret.pc_banner_url)
41
+ return null;
42
+ return ret.pc_banner_url;
43
+ });
44
+ const clickTitle = () => {
45
+ emit("clickTitle", props.item);
46
+ };
47
+ return (_ctx, _cache) => {
48
+ return openBlock(), createElementBlock("div", {
49
+ class: normalizeClass(["medialist-funhd-item-view", { "gray-forbidden": hide.value, "gray-for-state-hide": silent.value }])
50
+ }, [
51
+ createElementVNode("div", _hoisted_1, [
52
+ pc_banner.value ? (openBlock(), createBlock(unref(Image), {
53
+ key: 0,
54
+ src: pc_banner.value,
55
+ class: "image",
56
+ fit: "cover"
57
+ }, null, 8, ["src"])) : (openBlock(), createElementBlock("span", _hoisted_2, toDisplayString(unref(noCoverText)(_ctx.item)), 1))
58
+ ]),
59
+ createElementVNode("div", _hoisted_3, [
60
+ createElementVNode("div", {
61
+ class: "title",
62
+ onClick: clickTitle
63
+ }, [
64
+ renderSlot(_ctx.$slots, "index"),
65
+ createElementVNode("span", _hoisted_4, toDisplayString(_ctx.item.alias || _ctx.item.title), 1)
66
+ ]),
67
+ createElementVNode("div", _hoisted_5, [
68
+ createElementVNode("div", _hoisted_6, [
69
+ createVNode(_sfc_main$1, {
70
+ class: "icon",
71
+ type: "funhd"
72
+ }),
73
+ renderSlot(_ctx.$slots, "tip"),
74
+ _hoisted_7,
75
+ createVNode(unref(Tooltip), {
76
+ content: `\u6D3B\u52A8\u521B\u5EFA\u4EBA: ${_ctx.item.pub_user_alias}`,
77
+ position: "top"
78
+ }, {
79
+ default: withCtx(() => [
80
+ createElementVNode("span", _hoisted_8, toDisplayString(_ctx.item.pub_user_alias), 1)
81
+ ]),
82
+ _: 1
83
+ }, 8, ["content"]),
84
+ createElementVNode("span", _hoisted_9, "\u53D1\u5E03\u65F6\u95F4: " + toDisplayString(unref(timeFormat)(_ctx.item.pub_time)), 1)
85
+ ]),
86
+ createElementVNode("div", _hoisted_10, [
87
+ renderSlot(_ctx.$slots, "option", { row: _ctx.item })
88
+ ])
89
+ ])
90
+ ])
91
+ ], 2);
92
+ };
93
+ }
94
+ });
95
+ export { _sfc_main as default };
@@ -7,6 +7,8 @@ import _sfc_main$6 from "./KongoNavItem/index.js";
7
7
  import _sfc_main$5 from "./LiveItem/index.js";
8
8
  import _sfc_main$4 from "./MaccountItem/index.js";
9
9
  import _sfc_main$7 from "./DocMpItem/index.js";
10
+ import _sfc_main$9 from "./courseItem/index.js";
11
+ import _sfc_main$8 from "./funhdItem/index.js";
10
12
  const _hoisted_1 = { class: "index" };
11
13
  const _hoisted_2 = {
12
14
  key: 0,
@@ -86,6 +88,8 @@ const _hoisted_32 = {
86
88
  };
87
89
  const _hoisted_33 = { class: "doc-fixed-icon" };
88
90
  const _hoisted_34 = { class: "doc-fixed-num" };
91
+ const _hoisted_35 = { class: "index" };
92
+ const _hoisted_36 = { class: "index" };
89
93
  const _sfc_main = defineComponent({
90
94
  __name: "index",
91
95
  props: {
@@ -294,7 +298,7 @@ const _sfc_main = defineComponent({
294
298
  _: 3
295
299
  }, 8, ["item"]))
296
300
  ], 2112)) : _ctx.item.catalog === "mp_content" ? (openBlock(), createElementBlock(Fragment, { key: 6 }, [
297
- createCommentVNode(" \u7A3F\u4EF6\uFF08\u516C\u4F17\u53F7\u7A3F\u4EF6\uFF09 "),
301
+ createCommentVNode(" \u516C\u4F17\u53F7\u5185\u5BB9 "),
298
302
  (openBlock(), createBlock(_sfc_main$7, {
299
303
  key: `doc-mp-${_ctx.item.post_id}`,
300
304
  abttrites: _ctx.abttrites,
@@ -324,6 +328,42 @@ const _sfc_main = defineComponent({
324
328
  ]),
325
329
  _: 3
326
330
  }, 8, ["abttrites", "item"]))
331
+ ], 2112)) : _ctx.item.catalog === "funhd" ? (openBlock(), createElementBlock(Fragment, { key: 7 }, [
332
+ createCommentVNode(" \u4E92\u52A8\u8FD0\u8425\uFF08\u6613\u4F01\u79C0\uFF09 "),
333
+ (openBlock(), createBlock(_sfc_main$8, {
334
+ key: `funhd-${_ctx.item.post_id}`,
335
+ item: { ..._ctx.item, index: _ctx.index },
336
+ onClickTitle: clickTitle
337
+ }, {
338
+ index: withCtx(() => [
339
+ createElementVNode("span", _hoisted_35, toDisplayString(_ctx.index + 1), 1)
340
+ ]),
341
+ option: withCtx(() => [
342
+ renderSlot(_ctx.$slots, "option", {
343
+ row: _ctx.item,
344
+ index: _ctx.index
345
+ })
346
+ ]),
347
+ _: 3
348
+ }, 8, ["item"]))
349
+ ], 2112)) : _ctx.item.catalog === "course" ? (openBlock(), createElementBlock(Fragment, { key: 8 }, [
350
+ createCommentVNode(" \u8BFE\u7A0B "),
351
+ (openBlock(), createBlock(_sfc_main$9, {
352
+ key: `course-${_ctx.item.post_id}`,
353
+ item: { ..._ctx.item, index: _ctx.index },
354
+ onClickTitle: clickTitle
355
+ }, {
356
+ index: withCtx(() => [
357
+ createElementVNode("span", _hoisted_36, toDisplayString(_ctx.index + 1), 1)
358
+ ]),
359
+ option: withCtx(() => [
360
+ renderSlot(_ctx.$slots, "option", {
361
+ row: _ctx.item,
362
+ index: _ctx.index
363
+ })
364
+ ]),
365
+ _: 3
366
+ }, 8, ["item"]))
327
367
  ], 2112)) : createCommentVNode("v-if", true)
328
368
  ], 2112);
329
369
  };
@@ -0,0 +1,108 @@
1
+ .medialist-course-item-view {
2
+ display: flex;
3
+ // width: 100%;
4
+ padding: 10px;
5
+ border-bottom: 1px solid #f0f0f0;
6
+
7
+ &:hover {
8
+ background: #fafafa;
9
+ }
10
+
11
+ .cover-view {
12
+ position: relative;
13
+ flex-shrink: 0;
14
+ width: 110px;
15
+ height: 70px;
16
+ margin-right: 20px;
17
+ background: #edf3ff;
18
+
19
+ .image {
20
+ width: 100%;
21
+ height: 100%;
22
+ border-radius: 4px;
23
+
24
+ img {
25
+ width: 100%;
26
+ height: 100%;
27
+ }
28
+ }
29
+
30
+ .no-img {
31
+ display: flex;
32
+ align-items: center;
33
+ justify-content: center;
34
+ width: 100%;
35
+ height: 100%;
36
+ color: white;
37
+ font-size: 30px;
38
+ }
39
+ }
40
+
41
+ .info-view {
42
+ display: flex;
43
+ flex: 1;
44
+ flex-direction: column;
45
+ justify-content: space-between;
46
+ padding: 2px 0;
47
+
48
+ .title {
49
+ display: flex;
50
+ align-items: center;
51
+ margin-bottom: 10px;
52
+ overflow: hidden;
53
+ color: #1d2129;
54
+ font-weight: 400;
55
+ font-size: 14px;
56
+ font-style: normal;
57
+ line-height: 22px;
58
+ cursor: pointer;
59
+ -webkit-line-clamp: 2;
60
+ -webkit-box-orient: vertical;
61
+ }
62
+
63
+ .abttrite-v {
64
+ display: flex;
65
+ align-items: center;
66
+ justify-content: space-between;
67
+
68
+ .left {
69
+ display: flex;
70
+ flex: 1;
71
+ align-items: center;
72
+ color: #808692;
73
+ font-size: 12px;
74
+
75
+ .icon {
76
+ margin-right: 8px;
77
+ }
78
+
79
+ .abttr {
80
+ display: inline-block;
81
+ width: 20%;
82
+ overflow: hidden;
83
+ white-space: nowrap;
84
+ text-overflow: ellipsis;
85
+
86
+ &.time {
87
+ width: 250px;
88
+ }
89
+
90
+ &.tags {
91
+ display: flex;
92
+ align-items: center;
93
+ width: 190px;
94
+ }
95
+
96
+ &.type {
97
+ display: inline-block;
98
+ width: 160px;
99
+ }
100
+ }
101
+ }
102
+
103
+ .right {
104
+ margin-right: 20px;
105
+ }
106
+ }
107
+ }
108
+ }
@@ -0,0 +1,108 @@
1
+ .medialist-funhd-item-view {
2
+ display: flex;
3
+ // width: 100%;
4
+ padding: 10px;
5
+ border-bottom: 1px solid #f0f0f0;
6
+
7
+ &:hover {
8
+ background: #fafafa;
9
+ }
10
+
11
+ .cover-view {
12
+ position: relative;
13
+ flex-shrink: 0;
14
+ width: 110px;
15
+ height: 70px;
16
+ margin-right: 20px;
17
+ background: #edf3ff;
18
+
19
+ .image {
20
+ width: 100%;
21
+ height: 100%;
22
+ border-radius: 4px;
23
+
24
+ img {
25
+ width: 100%;
26
+ height: 100%;
27
+ }
28
+ }
29
+
30
+ .no-img {
31
+ display: flex;
32
+ align-items: center;
33
+ justify-content: center;
34
+ width: 100%;
35
+ height: 100%;
36
+ color: white;
37
+ font-size: 30px;
38
+ }
39
+ }
40
+
41
+ .info-view {
42
+ display: flex;
43
+ flex: 1;
44
+ flex-direction: column;
45
+ justify-content: space-between;
46
+ padding: 2px 0;
47
+
48
+ .title {
49
+ display: flex;
50
+ align-items: center;
51
+ margin-bottom: 10px;
52
+ overflow: hidden;
53
+ color: #1d2129;
54
+ font-weight: 400;
55
+ font-size: 14px;
56
+ font-style: normal;
57
+ line-height: 22px;
58
+ cursor: pointer;
59
+ -webkit-line-clamp: 2;
60
+ -webkit-box-orient: vertical;
61
+ }
62
+
63
+ .abttrite-v {
64
+ display: flex;
65
+ align-items: center;
66
+ justify-content: space-between;
67
+
68
+ .left {
69
+ display: flex;
70
+ flex: 1;
71
+ align-items: center;
72
+ color: #808692;
73
+ font-size: 12px;
74
+
75
+ .icon {
76
+ margin-right: 8px;
77
+ }
78
+
79
+ .abttr {
80
+ display: inline-block;
81
+ width: 20%;
82
+ overflow: hidden;
83
+ white-space: nowrap;
84
+ text-overflow: ellipsis;
85
+
86
+ &.time {
87
+ width: 250px;
88
+ }
89
+
90
+ &.tags {
91
+ display: flex;
92
+ align-items: center;
93
+ width: 190px;
94
+ }
95
+
96
+ &.type {
97
+ display: inline-block;
98
+ width: 160px;
99
+ }
100
+ }
101
+ }
102
+
103
+ .right {
104
+ margin-right: 20px;
105
+ }
106
+ }
107
+ }
108
+ }
@@ -740,6 +740,190 @@
740
740
  .medialist-mpdoc-item-view .info-view .abttrite-v .right {
741
741
  margin-right: 20px;
742
742
  }
743
+ .medialist-course-item-view {
744
+ display: flex;
745
+ padding: 10px;
746
+ border-bottom: 1px solid #f0f0f0;
747
+ }
748
+ .medialist-course-item-view:hover {
749
+ background: #fafafa;
750
+ }
751
+ .medialist-course-item-view .cover-view {
752
+ position: relative;
753
+ flex-shrink: 0;
754
+ width: 110px;
755
+ height: 70px;
756
+ margin-right: 20px;
757
+ background: #edf3ff;
758
+ }
759
+ .medialist-course-item-view .cover-view .image {
760
+ width: 100%;
761
+ height: 100%;
762
+ border-radius: 4px;
763
+ }
764
+ .medialist-course-item-view .cover-view .image img {
765
+ width: 100%;
766
+ height: 100%;
767
+ }
768
+ .medialist-course-item-view .cover-view .no-img {
769
+ display: flex;
770
+ align-items: center;
771
+ justify-content: center;
772
+ width: 100%;
773
+ height: 100%;
774
+ color: white;
775
+ font-size: 30px;
776
+ }
777
+ .medialist-course-item-view .info-view {
778
+ display: flex;
779
+ flex: 1;
780
+ flex-direction: column;
781
+ justify-content: space-between;
782
+ padding: 2px 0;
783
+ }
784
+ .medialist-course-item-view .info-view .title {
785
+ display: flex;
786
+ align-items: center;
787
+ margin-bottom: 10px;
788
+ overflow: hidden;
789
+ color: #1d2129;
790
+ font-weight: 400;
791
+ font-size: 14px;
792
+ font-style: normal;
793
+ line-height: 22px;
794
+ cursor: pointer;
795
+ -webkit-line-clamp: 2;
796
+ -webkit-box-orient: vertical;
797
+ }
798
+ .medialist-course-item-view .info-view .abttrite-v {
799
+ display: flex;
800
+ align-items: center;
801
+ justify-content: space-between;
802
+ }
803
+ .medialist-course-item-view .info-view .abttrite-v .left {
804
+ display: flex;
805
+ flex: 1;
806
+ align-items: center;
807
+ color: #808692;
808
+ font-size: 12px;
809
+ }
810
+ .medialist-course-item-view .info-view .abttrite-v .left .icon {
811
+ margin-right: 8px;
812
+ }
813
+ .medialist-course-item-view .info-view .abttrite-v .left .abttr {
814
+ display: inline-block;
815
+ width: 20%;
816
+ overflow: hidden;
817
+ white-space: nowrap;
818
+ text-overflow: ellipsis;
819
+ }
820
+ .medialist-course-item-view .info-view .abttrite-v .left .abttr.time {
821
+ width: 250px;
822
+ }
823
+ .medialist-course-item-view .info-view .abttrite-v .left .abttr.tags {
824
+ display: flex;
825
+ align-items: center;
826
+ width: 190px;
827
+ }
828
+ .medialist-course-item-view .info-view .abttrite-v .left .abttr.type {
829
+ display: inline-block;
830
+ width: 160px;
831
+ }
832
+ .medialist-course-item-view .info-view .abttrite-v .right {
833
+ margin-right: 20px;
834
+ }
835
+ .medialist-funhd-item-view {
836
+ display: flex;
837
+ padding: 10px;
838
+ border-bottom: 1px solid #f0f0f0;
839
+ }
840
+ .medialist-funhd-item-view:hover {
841
+ background: #fafafa;
842
+ }
843
+ .medialist-funhd-item-view .cover-view {
844
+ position: relative;
845
+ flex-shrink: 0;
846
+ width: 110px;
847
+ height: 70px;
848
+ margin-right: 20px;
849
+ background: #edf3ff;
850
+ }
851
+ .medialist-funhd-item-view .cover-view .image {
852
+ width: 100%;
853
+ height: 100%;
854
+ border-radius: 4px;
855
+ }
856
+ .medialist-funhd-item-view .cover-view .image img {
857
+ width: 100%;
858
+ height: 100%;
859
+ }
860
+ .medialist-funhd-item-view .cover-view .no-img {
861
+ display: flex;
862
+ align-items: center;
863
+ justify-content: center;
864
+ width: 100%;
865
+ height: 100%;
866
+ color: white;
867
+ font-size: 30px;
868
+ }
869
+ .medialist-funhd-item-view .info-view {
870
+ display: flex;
871
+ flex: 1;
872
+ flex-direction: column;
873
+ justify-content: space-between;
874
+ padding: 2px 0;
875
+ }
876
+ .medialist-funhd-item-view .info-view .title {
877
+ display: flex;
878
+ align-items: center;
879
+ margin-bottom: 10px;
880
+ overflow: hidden;
881
+ color: #1d2129;
882
+ font-weight: 400;
883
+ font-size: 14px;
884
+ font-style: normal;
885
+ line-height: 22px;
886
+ cursor: pointer;
887
+ -webkit-line-clamp: 2;
888
+ -webkit-box-orient: vertical;
889
+ }
890
+ .medialist-funhd-item-view .info-view .abttrite-v {
891
+ display: flex;
892
+ align-items: center;
893
+ justify-content: space-between;
894
+ }
895
+ .medialist-funhd-item-view .info-view .abttrite-v .left {
896
+ display: flex;
897
+ flex: 1;
898
+ align-items: center;
899
+ color: #808692;
900
+ font-size: 12px;
901
+ }
902
+ .medialist-funhd-item-view .info-view .abttrite-v .left .icon {
903
+ margin-right: 8px;
904
+ }
905
+ .medialist-funhd-item-view .info-view .abttrite-v .left .abttr {
906
+ display: inline-block;
907
+ width: 20%;
908
+ overflow: hidden;
909
+ white-space: nowrap;
910
+ text-overflow: ellipsis;
911
+ }
912
+ .medialist-funhd-item-view .info-view .abttrite-v .left .abttr.time {
913
+ width: 250px;
914
+ }
915
+ .medialist-funhd-item-view .info-view .abttrite-v .left .abttr.tags {
916
+ display: flex;
917
+ align-items: center;
918
+ width: 190px;
919
+ }
920
+ .medialist-funhd-item-view .info-view .abttrite-v .left .abttr.type {
921
+ display: inline-block;
922
+ width: 160px;
923
+ }
924
+ .medialist-funhd-item-view .info-view .abttrite-v .right {
925
+ margin-right: 20px;
926
+ }
743
927
  .gray-for-state-hide {
744
928
  -webkit-filter: grayscale(100%);
745
929
  -moz-filter: grayscale(100%);
@@ -7,6 +7,8 @@
7
7
  @import './Doc.less';
8
8
  @import './DocItem.less';
9
9
  @import './DocMpItem.less';
10
+ @import './courseItem.less';
11
+ @import './funhdItem.less';
10
12
 
11
13
  .gray-for-state-hide {
12
14
  -webkit-filter: grayscale(100%);
@@ -5,6 +5,7 @@ import _sfc_main$4 from "./components/CompoList/index.js";
5
5
  import _sfc_main$6 from "./components/MpAccountList/index.js";
6
6
  import _sfc_main$3 from "./components/ContentList/index.js";
7
7
  import _sfc_main$5 from "./components/LiveList/index.js";
8
+ import _sfc_main$8 from "./components/EqxiuList/index.js";
8
9
  import _sfc_main$7 from "./components/MpContentList/index.js";
9
10
  import _sfc_main$2 from "./components/storeBox/index.js";
10
11
  import "../typeIcons/style/index.js";
@@ -101,6 +102,7 @@ const _sfc_main = defineComponent({
101
102
  onTabClick: tabsChange
102
103
  }, {
103
104
  default: withCtx(() => [
105
+ createCommentVNode(" \u680F\u76EE\u7A3F\u4EF6 "),
104
106
  typeDataController.value.addDoc ? (openBlock(), createBlock(unref(TabPane), {
105
107
  key: "1",
106
108
  title: "\u680F\u76EE"
@@ -139,6 +141,7 @@ const _sfc_main = defineComponent({
139
141
  ]),
140
142
  _: 1
141
143
  })) : createCommentVNode("v-if", true),
144
+ createCommentVNode(" \u9891\u9053 "),
142
145
  typeDataController.value.addContentList ? (openBlock(), createBlock(unref(TabPane), {
143
146
  key: "2",
144
147
  title: "\u9891\u9053"
@@ -177,6 +180,7 @@ const _sfc_main = defineComponent({
177
180
  ]),
178
181
  _: 1
179
182
  })) : createCommentVNode("v-if", true),
183
+ createCommentVNode(" \u7EC4\u4EF6 "),
180
184
  typeDataController.value.addCompo ? (openBlock(), createBlock(unref(TabPane), {
181
185
  key: "5",
182
186
  title: "\u7EC4\u4EF6"
@@ -216,14 +220,15 @@ const _sfc_main = defineComponent({
216
220
  ]),
217
221
  _: 1
218
222
  })) : createCommentVNode("v-if", true),
219
- typeDataController.value.addCompo ? (openBlock(), createBlock(unref(TabPane), {
223
+ createCommentVNode(" \u4E92\u52A8\u76F4\u64AD "),
224
+ typeDataController.value.addILive ? (openBlock(), createBlock(unref(TabPane), {
220
225
  key: "6",
221
226
  title: "\u4E92\u52A8\u76F4\u64AD"
222
227
  }, {
223
228
  default: withCtx(() => [
224
229
  unref(userInfo) && unref(userInfo).repository_id ? (openBlock(), createBlock(_sfc_main$5, {
225
230
  key: 0,
226
- columns: typeDataController.value.compoType,
231
+ columns: typeDataController.value.iliveType,
227
232
  "default-selected-data": selectedData.value,
228
233
  "max-select": _ctx.maxSelect,
229
234
  "outside-select-data": _ctx.outsideSelectData || [],
@@ -254,6 +259,7 @@ const _sfc_main = defineComponent({
254
259
  ]),
255
260
  _: 1
256
261
  })) : createCommentVNode("v-if", true),
262
+ createCommentVNode(" \u516C\u4F17\u53F7\u8D26\u53F7 "),
257
263
  typeDataController.value.addMpAccount ? (openBlock(), createBlock(unref(TabPane), {
258
264
  key: "7",
259
265
  title: unref(mpName)
@@ -292,6 +298,7 @@ const _sfc_main = defineComponent({
292
298
  ]),
293
299
  _: 1
294
300
  }, 8, ["title"])) : createCommentVNode("v-if", true),
301
+ createCommentVNode(" \u516C\u4F17\u53F7\u5185\u5BB9 "),
295
302
  typeDataController.value.addMpContent ? (openBlock(), createBlock(unref(TabPane), {
296
303
  key: "8",
297
304
  title: `${unref(mpName)}\u5185\u5BB9`
@@ -329,7 +336,46 @@ const _sfc_main = defineComponent({
329
336
  }, 8, ["columns", "default-selected-data", "max-select", "outside-select-data", "type-data", "user-info"])) : createCommentVNode("v-if", true)
330
337
  ]),
331
338
  _: 1
332
- }, 8, ["title"])) : createCommentVNode("v-if", true)
339
+ }, 8, ["title"])) : createCommentVNode("v-if", true),
340
+ createCommentVNode(" \u4E92\u52A8\u8FD0\u8425 "),
341
+ typeDataController.value.addFunhd ? (openBlock(), createBlock(unref(TabPane), {
342
+ key: "9",
343
+ title: "\u4E92\u52A8\u8FD0\u8425"
344
+ }, {
345
+ default: withCtx(() => [
346
+ unref(userInfo) && unref(userInfo).repository_id ? (openBlock(), createBlock(_sfc_main$8, {
347
+ key: 0,
348
+ columns: typeDataController.value.funhdType,
349
+ "default-selected-data": selectedData.value,
350
+ "max-select": _ctx.maxSelect,
351
+ "outside-select-data": _ctx.outsideSelectData || [],
352
+ "type-data": typeDataController.value,
353
+ "user-info": unref(userInfo),
354
+ onChange: selectedDataChangeHandle
355
+ }, {
356
+ store: withCtx(() => [
357
+ createVNode(_sfc_main$2, {
358
+ selectData: selectedData.value,
359
+ "onUpdate:selectData": _cache[6] || (_cache[6] = ($event) => selectedData.value = $event)
360
+ }, null, 8, ["selectData"])
361
+ ]),
362
+ options: withCtx(() => [
363
+ createVNode(unref(Button), {
364
+ disabled: !hasSelected.value,
365
+ type: "primary",
366
+ onClick: comfirm
367
+ }, {
368
+ default: withCtx(() => [
369
+ createTextVNode(" \u6DFB\u52A0 ")
370
+ ]),
371
+ _: 1
372
+ }, 8, ["disabled"])
373
+ ]),
374
+ _: 1
375
+ }, 8, ["columns", "default-selected-data", "max-select", "outside-select-data", "type-data", "user-info"])) : createCommentVNode("v-if", true)
376
+ ]),
377
+ _: 1
378
+ })) : createCommentVNode("v-if", true)
333
379
  ]),
334
380
  _: 1
335
381
  })