|
|
@@ -36,7 +36,7 @@ interface VideoSelectModalProps {
|
|
|
const VideoSelectModal: React.FC<VideoSelectModalProps> = ({ planType, visible, onClose, onOk, initialSelectedIds = [], selectedVideos = [], defaultVideoLibraryType }) => {
|
|
|
const { videoCategoryOptions } = useVideoCategoryOptions();
|
|
|
const [category, setCategory] = useState<string>();
|
|
|
- const [sort, setSort] = useState<VideoSortType>(VideoSortType.平台推荐);
|
|
|
+ const [sort, setSort] = useState<VideoSortType>(VideoSortType.推荐指数);
|
|
|
const [searchTerm, setSearchTerm] = useState<string>('');
|
|
|
const [currentPage, setCurrentPage] = useState(1);
|
|
|
const [pageSize, setPageSize] = useState(10);
|
|
|
@@ -264,6 +264,7 @@ const VideoSelectModal: React.FC<VideoSelectModalProps> = ({ planType, visible,
|
|
|
</div>
|
|
|
<div className="p-3 flex justify-between items-center">
|
|
|
<div className="flex flex-col gap-1">
|
|
|
+ <Text type="secondary" className="text-xs">推荐指数: {video.recommendScore?.toFixed(2) || '无'}</Text>
|
|
|
<Text type="secondary" className="text-xs">平台传播得分: {video.score?.toFixed(2) || '无'}</Text>
|
|
|
<Text type="secondary" className="text-xs">行业裂变率: {video.industryFissionRate?.toFixed(2) || '无'}</Text>
|
|
|
<Text type="secondary" className="text-xs">本渠道传播率: {video.channelFissionRate?.toFixed(2) || '无'}</Text>
|