@cmstops/pro-compo 0.1.46 → 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 (38) 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 +11 -4
  14. package/es/contentModal/components/EqxiuList/index.js +5 -5
  15. package/es/contentModal/style/ViewAllColumn.less +3 -0
  16. package/es/contentModal/style/index.css +3 -0
  17. package/es/index.css +187 -0
  18. package/es/typeIcons/component.js +18 -3
  19. package/es/utils/request.js +5 -1
  20. package/es/utils/typeMap.d.ts +2 -0
  21. package/es/utils/typeMap.js +3 -1
  22. package/lib/contentDetailList/components/Content/LiveItem/index.js +1 -2
  23. package/lib/contentDetailList/components/Content/courseItem/index.js +96 -0
  24. package/lib/contentDetailList/components/Content/funhdItem/index.js +96 -0
  25. package/lib/contentDetailList/components/Content/index.js +41 -1
  26. package/lib/contentDetailList/style/courseItem.less +108 -0
  27. package/lib/contentDetailList/style/funhdItem.less +108 -0
  28. package/lib/contentDetailList/style/index.css +184 -0
  29. package/lib/contentDetailList/style/index.less +2 -0
  30. package/lib/contentModal/component.js +11 -4
  31. package/lib/contentModal/components/EqxiuList/index.js +5 -5
  32. package/lib/contentModal/style/ViewAllColumn.less +3 -0
  33. package/lib/contentModal/style/index.css +3 -0
  34. package/lib/index.css +187 -0
  35. package/lib/typeIcons/component.js +17 -2
  36. package/lib/utils/request.js +5 -1
  37. package/lib/utils/typeMap.js +3 -1
  38. 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%);
@@ -102,6 +102,7 @@ const _sfc_main = defineComponent({
102
102
  onTabClick: tabsChange
103
103
  }, {
104
104
  default: withCtx(() => [
105
+ createCommentVNode(" \u680F\u76EE\u7A3F\u4EF6 "),
105
106
  typeDataController.value.addDoc ? (openBlock(), createBlock(unref(TabPane), {
106
107
  key: "1",
107
108
  title: "\u680F\u76EE"
@@ -140,6 +141,7 @@ const _sfc_main = defineComponent({
140
141
  ]),
141
142
  _: 1
142
143
  })) : createCommentVNode("v-if", true),
144
+ createCommentVNode(" \u9891\u9053 "),
143
145
  typeDataController.value.addContentList ? (openBlock(), createBlock(unref(TabPane), {
144
146
  key: "2",
145
147
  title: "\u9891\u9053"
@@ -178,6 +180,7 @@ const _sfc_main = defineComponent({
178
180
  ]),
179
181
  _: 1
180
182
  })) : createCommentVNode("v-if", true),
183
+ createCommentVNode(" \u7EC4\u4EF6 "),
181
184
  typeDataController.value.addCompo ? (openBlock(), createBlock(unref(TabPane), {
182
185
  key: "5",
183
186
  title: "\u7EC4\u4EF6"
@@ -217,14 +220,15 @@ const _sfc_main = defineComponent({
217
220
  ]),
218
221
  _: 1
219
222
  })) : createCommentVNode("v-if", true),
220
- typeDataController.value.addCompo ? (openBlock(), createBlock(unref(TabPane), {
223
+ createCommentVNode(" \u4E92\u52A8\u76F4\u64AD "),
224
+ typeDataController.value.addILive ? (openBlock(), createBlock(unref(TabPane), {
221
225
  key: "6",
222
226
  title: "\u4E92\u52A8\u76F4\u64AD"
223
227
  }, {
224
228
  default: withCtx(() => [
225
229
  unref(userInfo) && unref(userInfo).repository_id ? (openBlock(), createBlock(_sfc_main$5, {
226
230
  key: 0,
227
- columns: typeDataController.value.compoType,
231
+ columns: typeDataController.value.iliveType,
228
232
  "default-selected-data": selectedData.value,
229
233
  "max-select": _ctx.maxSelect,
230
234
  "outside-select-data": _ctx.outsideSelectData || [],
@@ -255,6 +259,7 @@ const _sfc_main = defineComponent({
255
259
  ]),
256
260
  _: 1
257
261
  })) : createCommentVNode("v-if", true),
262
+ createCommentVNode(" \u516C\u4F17\u53F7\u8D26\u53F7 "),
258
263
  typeDataController.value.addMpAccount ? (openBlock(), createBlock(unref(TabPane), {
259
264
  key: "7",
260
265
  title: unref(mpName)
@@ -293,6 +298,7 @@ const _sfc_main = defineComponent({
293
298
  ]),
294
299
  _: 1
295
300
  }, 8, ["title"])) : createCommentVNode("v-if", true),
301
+ createCommentVNode(" \u516C\u4F17\u53F7\u5185\u5BB9 "),
296
302
  typeDataController.value.addMpContent ? (openBlock(), createBlock(unref(TabPane), {
297
303
  key: "8",
298
304
  title: `${unref(mpName)}\u5185\u5BB9`
@@ -331,14 +337,15 @@ const _sfc_main = defineComponent({
331
337
  ]),
332
338
  _: 1
333
339
  }, 8, ["title"])) : createCommentVNode("v-if", true),
334
- typeDataController.value.addEqxiu ? (openBlock(), createBlock(unref(TabPane), {
340
+ createCommentVNode(" \u4E92\u52A8\u8FD0\u8425 "),
341
+ typeDataController.value.addFunhd ? (openBlock(), createBlock(unref(TabPane), {
335
342
  key: "9",
336
343
  title: "\u4E92\u52A8\u8FD0\u8425"
337
344
  }, {
338
345
  default: withCtx(() => [
339
346
  unref(userInfo) && unref(userInfo).repository_id ? (openBlock(), createBlock(_sfc_main$8, {
340
347
  key: 0,
341
- columns: typeDataController.value.compoType,
348
+ columns: typeDataController.value.funhdType,
342
349
  "default-selected-data": selectedData.value,
343
350
  "max-select": _ctx.maxSelect,
344
351
  "outside-select-data": _ctx.outsideSelectData || [],
@@ -89,15 +89,15 @@ const _sfc_main = defineComponent({
89
89
  params.gid = gid;
90
90
  }
91
91
  dataLoading.value = true;
92
- const { code, message } = await getEqxiuList(props.userInfo.BASE_API, params);
92
+ const res = await getEqxiuList(props.userInfo.BASE_API, params);
93
93
  dataLoading.value = false;
94
- if (code === 0) {
95
- const { count, data } = message;
94
+ if ((res == null ? void 0 : res.code) === 0) {
95
+ const { count, data } = res.message;
96
96
  mediaFileData.value = data.map((v) => {
97
- v.catalog = "doc";
97
+ v.catalog = "funhd";
98
98
  v.id = v.ID || v.id;
99
99
  v.target_id = v.ID || v.id;
100
- v.target_type = 3;
100
+ v.target_type = 17;
101
101
  v.pub_time = v.updateTime;
102
102
  v.update_time = v.updateTime;
103
103
  return v;
@@ -13,6 +13,8 @@
13
13
  .pic-thumb-img {
14
14
  width: 60px;
15
15
  height: 45px;
16
+ vertical-align: middle;
17
+ border-radius: 3px;
16
18
  }
17
19
 
18
20
  .title-span,
@@ -30,6 +32,7 @@
30
32
  margin-right: 8px;
31
33
  padding-left: 0;
32
34
  font-size: 18px;
35
+ line-height: 28px;
33
36
  text-align: center;
34
37
  vertical-align: middle;
35
38
  }