charles_c 5 months ago
parent
commit
eda3cd857f
3 changed files with 17 additions and 4 deletions
  1. 10 2
      src/pages/Activity/index.tsx
  2. 7 0
      src/pages/NewActivities/index.tsx
  3. 0 2
      src/pages/Prediction/index.tsx

+ 10 - 2
src/pages/Activity/index.tsx

@@ -25,6 +25,10 @@ const modules = {
   ],
 };
 
+const stripHtml = (html: string) => {
+  return html.replace(/<[^>]+>/g, '');
+};
+
 const ActivityManagement: React.FC = () => {
   const [createModalVisible, setCreateModalVisible] = useState<boolean>(false);
   const [editModalVisible, setEditModalVisible] = useState<boolean>(false);
@@ -42,13 +46,17 @@ const ActivityManagement: React.FC = () => {
       dataIndex: 'title',
       copyable: true,
       ellipsis: true,
-      //   tip: '标题过长会自动收缩',
+      render: (text, record) => {
+        return stripHtml(record.title);
+      },
     },
     {
       title: '活动内容',
       dataIndex: 'content',
       ellipsis: true,
-      //   tip: '内容过长会自动收缩',
+      render: (text, record) => {
+        return stripHtml(record.content);
+      },
     },
     {
       title: '是否激活',

+ 7 - 0
src/pages/NewActivities/index.tsx

@@ -21,6 +21,10 @@ import React, { useCallback, useMemo, useRef, useState } from 'react';
 import ReactQuill from 'react-quill';
 import 'react-quill/dist/quill.snow.css';
 
+const stripHtml = (html: string) => {
+  return html.replace(/<[^>]+>/g, '');
+};
+
 const modules = {
   toolbar: [
     [{ header: [1, 2, false] }],
@@ -49,6 +53,9 @@ const ActivityManagement: React.FC = () => {
       dataIndex: 'title',
       copyable: true,
       ellipsis: true,
+      render: (text, record) => {
+        return stripHtml(record.title);
+      },
     },
     {
       title: '链接',

+ 0 - 2
src/pages/Prediction/index.tsx

@@ -22,8 +22,6 @@ const PredictionList: React.FC = () => {
       title: '比赛',
       dataIndex: 'matchInfo',
       valueType: 'text',
-      // ellipsis: true,
-      // width: 200, // 设置一个固定宽度
     },
     {
       title: '比赛时间',