@cmstops/pro-compo 0.1.61 → 0.1.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.css +107 -0
- package/dist/index.min.css +1 -1
- package/dist/matrix/baijiahao.png +0 -0
- package/dist/matrix/bilibili.png +0 -0
- package/dist/matrix/channelsweixin.png +0 -0
- package/dist/matrix/douyin.png +0 -0
- package/dist/matrix/kuaishou.png +0 -0
- package/dist/matrix/qq.png +0 -0
- package/dist/matrix/toutiao.png +0 -0
- package/dist/matrix/weibo.png +0 -0
- package/dist/matrix/weixin.png +0 -0
- package/es/contentDetailList/__demo__/matrix/platform.d.ts +27 -0
- package/es/contentDetailList/component.js +79 -8
- package/es/contentDetailList/components/Content/CompoItem/index.js +32 -19
- package/es/contentDetailList/components/Content/ContentListItem/index.js +38 -25
- package/es/contentDetailList/components/Content/DocItem/index.js +2 -1
- package/es/contentDetailList/components/Content/DocMpItem/index.js +13 -4
- package/es/contentDetailList/components/Content/KongoNavItem/index.js +35 -22
- package/es/contentDetailList/components/Content/LiveItem/index.js +32 -19
- package/es/contentDetailList/components/Content/MaccountItem/index.js +31 -19
- package/es/contentDetailList/components/Content/courseItem/index.js +34 -21
- package/es/contentDetailList/components/Content/funhdItem/index.js +34 -21
- package/es/contentDetailList/components/Content/index.js +114 -22
- package/es/contentDetailList/components/Doc/index.js +3 -1
- package/es/contentDetailList/components/Records/MatrixItem/index.d.ts +0 -0
- package/es/contentDetailList/components/Records/MatrixItem/index.js +131 -0
- package/es/contentDetailList/components/Records/index.d.ts +0 -0
- package/es/contentDetailList/components/Records/index.js +63 -0
- package/es/contentDetailList/style/MatrixItem.less +127 -0
- package/es/contentDetailList/style/index.css +107 -0
- package/es/contentDetailList/style/index.less +1 -0
- package/es/index.css +107 -0
- package/es/matrix/baijiahao.png +0 -0
- package/es/matrix/bilibili.png +0 -0
- package/es/matrix/channelsweixin.png +0 -0
- package/es/matrix/douyin.png +0 -0
- package/es/matrix/kuaishou.png +0 -0
- package/es/matrix/qq.png +0 -0
- package/es/matrix/toutiao.png +0 -0
- package/es/matrix/weibo.png +0 -0
- package/es/matrix/weixin.png +0 -0
- package/es/selectThumb/component.js +0 -7
- package/es/utils/typeMap.d.ts +23 -0
- package/es/utils/typeMap.js +26 -2
- package/lib/contentDetailList/component.js +96 -25
- package/lib/contentDetailList/components/Content/CompoItem/index.js +32 -19
- package/lib/contentDetailList/components/Content/ContentListItem/index.js +38 -25
- package/lib/contentDetailList/components/Content/DocItem/index.js +2 -1
- package/lib/contentDetailList/components/Content/DocMpItem/index.js +13 -4
- package/lib/contentDetailList/components/Content/KongoNavItem/index.js +35 -22
- package/lib/contentDetailList/components/Content/LiveItem/index.js +32 -19
- package/lib/contentDetailList/components/Content/MaccountItem/index.js +31 -19
- package/lib/contentDetailList/components/Content/courseItem/index.js +34 -21
- package/lib/contentDetailList/components/Content/funhdItem/index.js +34 -21
- package/lib/contentDetailList/components/Content/index.js +113 -21
- package/lib/contentDetailList/components/Doc/index.js +3 -1
- package/lib/contentDetailList/components/Records/MatrixItem/index.js +132 -0
- package/lib/contentDetailList/components/Records/index.js +64 -0
- package/lib/contentDetailList/style/MatrixItem.less +127 -0
- package/lib/contentDetailList/style/index.css +107 -0
- package/lib/contentDetailList/style/index.less +1 -0
- package/lib/index.css +107 -0
- package/lib/selectThumb/component.js +0 -7
- package/lib/utils/typeMap.js +27 -1
- package/package.json +1 -1
- package/es/contentDetailList/components/Content/MaccountItem/temp/user.js +0 -2
- package/lib/contentDetailList/components/Content/MaccountItem/temp/user.js +0 -3
|
@@ -934,6 +934,113 @@
|
|
|
934
934
|
.medialist-funhd-item-view .info-view .abttrite-v .right {
|
|
935
935
|
margin-right: 20px;
|
|
936
936
|
}
|
|
937
|
+
.matrix-records-item-view {
|
|
938
|
+
display: flex;
|
|
939
|
+
padding: 10px;
|
|
940
|
+
border-bottom: 1px solid #f0f0f0;
|
|
941
|
+
}
|
|
942
|
+
.matrix-records-item-view:hover {
|
|
943
|
+
background: #fafafa;
|
|
944
|
+
}
|
|
945
|
+
.matrix-records-item-view .cover-view {
|
|
946
|
+
position: relative;
|
|
947
|
+
flex-shrink: 0;
|
|
948
|
+
width: 110px;
|
|
949
|
+
height: 70px;
|
|
950
|
+
margin-right: 20px;
|
|
951
|
+
background: #edf3ff;
|
|
952
|
+
}
|
|
953
|
+
.matrix-records-item-view .cover-view .image {
|
|
954
|
+
width: 100%;
|
|
955
|
+
height: 100%;
|
|
956
|
+
border-radius: 4px;
|
|
957
|
+
}
|
|
958
|
+
.matrix-records-item-view .cover-view .image img {
|
|
959
|
+
width: 100%;
|
|
960
|
+
height: 100%;
|
|
961
|
+
}
|
|
962
|
+
.matrix-records-item-view .cover-view .no-img {
|
|
963
|
+
display: flex;
|
|
964
|
+
align-items: center;
|
|
965
|
+
justify-content: center;
|
|
966
|
+
width: 100%;
|
|
967
|
+
height: 100%;
|
|
968
|
+
color: white;
|
|
969
|
+
font-size: 30px;
|
|
970
|
+
}
|
|
971
|
+
.matrix-records-item-view .info-view {
|
|
972
|
+
display: flex;
|
|
973
|
+
flex: 1;
|
|
974
|
+
flex-direction: column;
|
|
975
|
+
justify-content: space-between;
|
|
976
|
+
padding: 2px 0;
|
|
977
|
+
}
|
|
978
|
+
.matrix-records-item-view .info-view .title {
|
|
979
|
+
display: flex;
|
|
980
|
+
align-items: center;
|
|
981
|
+
margin-bottom: 10px;
|
|
982
|
+
overflow: hidden;
|
|
983
|
+
color: #1d2129;
|
|
984
|
+
font-weight: 400;
|
|
985
|
+
font-size: 14px;
|
|
986
|
+
font-style: normal;
|
|
987
|
+
line-height: 22px;
|
|
988
|
+
cursor: pointer;
|
|
989
|
+
-webkit-line-clamp: 2;
|
|
990
|
+
-webkit-box-orient: vertical;
|
|
991
|
+
}
|
|
992
|
+
.matrix-records-item-view .info-view .abttrite-v {
|
|
993
|
+
display: flex;
|
|
994
|
+
align-items: center;
|
|
995
|
+
justify-content: space-between;
|
|
996
|
+
}
|
|
997
|
+
.matrix-records-item-view .info-view .abttrite-v .left {
|
|
998
|
+
display: flex;
|
|
999
|
+
align-items: center;
|
|
1000
|
+
color: #808692;
|
|
1001
|
+
font-size: 12px;
|
|
1002
|
+
}
|
|
1003
|
+
.matrix-records-item-view .info-view .abttrite-v .left .abttr {
|
|
1004
|
+
display: inline-block;
|
|
1005
|
+
width: 130px;
|
|
1006
|
+
margin-right: 10px;
|
|
1007
|
+
overflow: hidden;
|
|
1008
|
+
white-space: nowrap;
|
|
1009
|
+
text-overflow: ellipsis;
|
|
1010
|
+
}
|
|
1011
|
+
.matrix-records-item-view .info-view .abttrite-v .left .abttr.time {
|
|
1012
|
+
width: 240px;
|
|
1013
|
+
}
|
|
1014
|
+
.matrix-records-item-view .info-view .abttrite-v .left .abttr.tags {
|
|
1015
|
+
display: flex;
|
|
1016
|
+
align-items: center;
|
|
1017
|
+
width: 190px;
|
|
1018
|
+
}
|
|
1019
|
+
.matrix-records-item-view .info-view .abttrite-v .left .account {
|
|
1020
|
+
margin-left: 10px;
|
|
1021
|
+
}
|
|
1022
|
+
.matrix-records-item-view .info-view .abttrite-v .left .account .avatar {
|
|
1023
|
+
width: 25px;
|
|
1024
|
+
height: 25px;
|
|
1025
|
+
margin-right: 10px;
|
|
1026
|
+
border-radius: 50%;
|
|
1027
|
+
}
|
|
1028
|
+
.matrix-records-item-view .info-view .abttrite-v .left .account .avatar img {
|
|
1029
|
+
width: 100%;
|
|
1030
|
+
height: 100%;
|
|
1031
|
+
}
|
|
1032
|
+
.matrix-records-item-view .info-view .abttrite-v .left .state::before {
|
|
1033
|
+
display: inline-block;
|
|
1034
|
+
width: 6px;
|
|
1035
|
+
height: 6px;
|
|
1036
|
+
margin-right: 5px;
|
|
1037
|
+
background-color: currentColor;
|
|
1038
|
+
border-radius: 50%;
|
|
1039
|
+
content: '';
|
|
1040
|
+
}
|
|
1041
|
+
.matrix-records-item-view .info-view .abttrite-v .right {
|
|
1042
|
+
margin-right: 20px;
|
|
1043
|
+
}
|
|
937
1044
|
.gray-for-state-hide {
|
|
938
1045
|
-webkit-filter: grayscale(100%);
|
|
939
1046
|
-moz-filter: grayscale(100%);
|
package/lib/index.css
CHANGED
|
@@ -2953,6 +2953,113 @@
|
|
|
2953
2953
|
.medialist-funhd-item-view .info-view .abttrite-v .right {
|
|
2954
2954
|
margin-right: 20px;
|
|
2955
2955
|
}
|
|
2956
|
+
.matrix-records-item-view {
|
|
2957
|
+
display: flex;
|
|
2958
|
+
padding: 10px;
|
|
2959
|
+
border-bottom: 1px solid #f0f0f0;
|
|
2960
|
+
}
|
|
2961
|
+
.matrix-records-item-view:hover {
|
|
2962
|
+
background: #fafafa;
|
|
2963
|
+
}
|
|
2964
|
+
.matrix-records-item-view .cover-view {
|
|
2965
|
+
position: relative;
|
|
2966
|
+
flex-shrink: 0;
|
|
2967
|
+
width: 110px;
|
|
2968
|
+
height: 70px;
|
|
2969
|
+
margin-right: 20px;
|
|
2970
|
+
background: #edf3ff;
|
|
2971
|
+
}
|
|
2972
|
+
.matrix-records-item-view .cover-view .image {
|
|
2973
|
+
width: 100%;
|
|
2974
|
+
height: 100%;
|
|
2975
|
+
border-radius: 4px;
|
|
2976
|
+
}
|
|
2977
|
+
.matrix-records-item-view .cover-view .image img {
|
|
2978
|
+
width: 100%;
|
|
2979
|
+
height: 100%;
|
|
2980
|
+
}
|
|
2981
|
+
.matrix-records-item-view .cover-view .no-img {
|
|
2982
|
+
display: flex;
|
|
2983
|
+
align-items: center;
|
|
2984
|
+
justify-content: center;
|
|
2985
|
+
width: 100%;
|
|
2986
|
+
height: 100%;
|
|
2987
|
+
color: white;
|
|
2988
|
+
font-size: 30px;
|
|
2989
|
+
}
|
|
2990
|
+
.matrix-records-item-view .info-view {
|
|
2991
|
+
display: flex;
|
|
2992
|
+
flex: 1;
|
|
2993
|
+
flex-direction: column;
|
|
2994
|
+
justify-content: space-between;
|
|
2995
|
+
padding: 2px 0;
|
|
2996
|
+
}
|
|
2997
|
+
.matrix-records-item-view .info-view .title {
|
|
2998
|
+
display: flex;
|
|
2999
|
+
align-items: center;
|
|
3000
|
+
margin-bottom: 10px;
|
|
3001
|
+
overflow: hidden;
|
|
3002
|
+
color: #1d2129;
|
|
3003
|
+
font-weight: 400;
|
|
3004
|
+
font-size: 14px;
|
|
3005
|
+
font-style: normal;
|
|
3006
|
+
line-height: 22px;
|
|
3007
|
+
cursor: pointer;
|
|
3008
|
+
-webkit-line-clamp: 2;
|
|
3009
|
+
-webkit-box-orient: vertical;
|
|
3010
|
+
}
|
|
3011
|
+
.matrix-records-item-view .info-view .abttrite-v {
|
|
3012
|
+
display: flex;
|
|
3013
|
+
align-items: center;
|
|
3014
|
+
justify-content: space-between;
|
|
3015
|
+
}
|
|
3016
|
+
.matrix-records-item-view .info-view .abttrite-v .left {
|
|
3017
|
+
display: flex;
|
|
3018
|
+
align-items: center;
|
|
3019
|
+
color: #808692;
|
|
3020
|
+
font-size: 12px;
|
|
3021
|
+
}
|
|
3022
|
+
.matrix-records-item-view .info-view .abttrite-v .left .abttr {
|
|
3023
|
+
display: inline-block;
|
|
3024
|
+
width: 130px;
|
|
3025
|
+
margin-right: 10px;
|
|
3026
|
+
overflow: hidden;
|
|
3027
|
+
white-space: nowrap;
|
|
3028
|
+
text-overflow: ellipsis;
|
|
3029
|
+
}
|
|
3030
|
+
.matrix-records-item-view .info-view .abttrite-v .left .abttr.time {
|
|
3031
|
+
width: 240px;
|
|
3032
|
+
}
|
|
3033
|
+
.matrix-records-item-view .info-view .abttrite-v .left .abttr.tags {
|
|
3034
|
+
display: flex;
|
|
3035
|
+
align-items: center;
|
|
3036
|
+
width: 190px;
|
|
3037
|
+
}
|
|
3038
|
+
.matrix-records-item-view .info-view .abttrite-v .left .account {
|
|
3039
|
+
margin-left: 10px;
|
|
3040
|
+
}
|
|
3041
|
+
.matrix-records-item-view .info-view .abttrite-v .left .account .avatar {
|
|
3042
|
+
width: 25px;
|
|
3043
|
+
height: 25px;
|
|
3044
|
+
margin-right: 10px;
|
|
3045
|
+
border-radius: 50%;
|
|
3046
|
+
}
|
|
3047
|
+
.matrix-records-item-view .info-view .abttrite-v .left .account .avatar img {
|
|
3048
|
+
width: 100%;
|
|
3049
|
+
height: 100%;
|
|
3050
|
+
}
|
|
3051
|
+
.matrix-records-item-view .info-view .abttrite-v .left .state::before {
|
|
3052
|
+
display: inline-block;
|
|
3053
|
+
width: 6px;
|
|
3054
|
+
height: 6px;
|
|
3055
|
+
margin-right: 5px;
|
|
3056
|
+
background-color: currentColor;
|
|
3057
|
+
border-radius: 50%;
|
|
3058
|
+
content: '';
|
|
3059
|
+
}
|
|
3060
|
+
.matrix-records-item-view .info-view .abttrite-v .right {
|
|
3061
|
+
margin-right: 20px;
|
|
3062
|
+
}
|
|
2956
3063
|
.gray-for-state-hide {
|
|
2957
3064
|
-webkit-filter: grayscale(100%);
|
|
2958
3065
|
-moz-filter: grayscale(100%);
|
|
@@ -155,7 +155,6 @@ const _sfc_main = vue.defineComponent({
|
|
|
155
155
|
}
|
|
156
156
|
emit("update:dataValue", JSON.stringify(temp));
|
|
157
157
|
}
|
|
158
|
-
console.log("callbackData", JSON.stringify(temp));
|
|
159
158
|
};
|
|
160
159
|
const curtemplate = vue.computed(() => {
|
|
161
160
|
if (props.mode !== "doc") {
|
|
@@ -302,12 +301,6 @@ const _sfc_main = vue.defineComponent({
|
|
|
302
301
|
};
|
|
303
302
|
styleData.value.data = temp;
|
|
304
303
|
}
|
|
305
|
-
console.log(
|
|
306
|
-
"thumbBannerModel:",
|
|
307
|
-
thumbBannerModel.value,
|
|
308
|
-
"styleData:",
|
|
309
|
-
styleData.value
|
|
310
|
-
);
|
|
311
304
|
callback(styleData.value);
|
|
312
305
|
};
|
|
313
306
|
const loadImage = (url) => {
|
package/lib/utils/typeMap.js
CHANGED
|
@@ -17,7 +17,8 @@ const key_target_type_map = {
|
|
|
17
17
|
15: "kongo",
|
|
18
18
|
16: "mp_content",
|
|
19
19
|
17: "funhd",
|
|
20
|
-
18: "course"
|
|
20
|
+
18: "course",
|
|
21
|
+
19: "matrix"
|
|
21
22
|
};
|
|
22
23
|
const approveFlowStatusMap = {
|
|
23
24
|
1: "\u5BA1\u6838\u4E2D",
|
|
@@ -137,6 +138,29 @@ const local_live_doc_status = [
|
|
|
137
138
|
{ value: 1, label: "\u76F4\u64AD\u4E2D", bgColor: "#FF192D" },
|
|
138
139
|
{ value: 2, label: "\u5DF2\u7ED3\u675F", bgColor: "#C9CDD4" }
|
|
139
140
|
];
|
|
141
|
+
const matrixPublishStateMap = {
|
|
142
|
+
0: "\u5F85\u53D1\u5E03",
|
|
143
|
+
1: "\u53D1\u5E03\u4E2D",
|
|
144
|
+
2: "\u53D1\u5E03\u6210\u529F",
|
|
145
|
+
3: "\u53D1\u5E03\u5931\u8D25"
|
|
146
|
+
};
|
|
147
|
+
const matrixPublishFormalStateMap = {
|
|
148
|
+
"-1": "\u5F85\u83B7\u53D6\u72B6\u6001",
|
|
149
|
+
0: "\u5DF2\u53D1\u5E03",
|
|
150
|
+
1: "\u5BA1\u6838\u4E2D",
|
|
151
|
+
2: "\u672A\u901A\u8FC7",
|
|
152
|
+
3: "\u5DF2\u64A4\u56DE",
|
|
153
|
+
4: "\u8349\u7A3F",
|
|
154
|
+
5: "\u5B9A\u65F6\u53D1\u5E03",
|
|
155
|
+
6: "\u5DF2\u5220\u9664",
|
|
156
|
+
7: "\u5F85\u5904\u7406",
|
|
157
|
+
8: "\u5904\u7406\u5931\u8D25",
|
|
158
|
+
9: "\u5B98\u65B9\u64A4\u56DE",
|
|
159
|
+
10: "\u7528\u6237\u64A4\u56DE",
|
|
160
|
+
11: "\u4E0D\u9002\u5B9C\u516C\u5F00",
|
|
161
|
+
12: "\u672A\u77E5",
|
|
162
|
+
13: "\u79C1\u5BC6"
|
|
163
|
+
};
|
|
140
164
|
exports.approveFlowStatusMap = approveFlowStatusMap;
|
|
141
165
|
exports.calcApprovingDependent = calcApprovingDependent;
|
|
142
166
|
exports.calcApprovingUser = calcApprovingUser;
|
|
@@ -150,5 +174,7 @@ exports.key_target_type_map = key_target_type_map;
|
|
|
150
174
|
exports.kongo_source_map = kongo_source_map;
|
|
151
175
|
exports.local_live_doc_status = local_live_doc_status;
|
|
152
176
|
exports.local_live_doc_type = local_live_doc_type;
|
|
177
|
+
exports.matrixPublishFormalStateMap = matrixPublishFormalStateMap;
|
|
178
|
+
exports.matrixPublishStateMap = matrixPublishStateMap;
|
|
153
179
|
exports.mpTypeOptions = mpTypeOptions;
|
|
154
180
|
exports.mp_type_map = mp_type_map;
|
package/package.json
CHANGED
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
var defaultAvatar = "data:image/png;base64,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";
|
|
2
|
-
export { defaultAvatar as default };
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var defaultAvatar = "data:image/png;base64,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";
|
|
3
|
-
module.exports = defaultAvatar;
|