|
|
@@ -14,6 +14,7 @@ import VideoPlayModal from './components/videoPlayModal';
|
|
|
import modal from 'antd/es/modal';
|
|
|
import AddPlanModal from './components/addPlanModal';
|
|
|
import { QRCodeSVG } from 'qrcode.react';
|
|
|
+import { DownloadOutlined } from '@ant-design/icons';
|
|
|
|
|
|
const { RangePicker } = DatePicker;
|
|
|
// Define a type for the expected API response (adjust if needed based on actual API)
|
|
|
@@ -321,7 +322,7 @@ const WeGZHContent: React.FC = () => {
|
|
|
{
|
|
|
right: (
|
|
|
<Space>
|
|
|
- <Button onClick={() => setIsExportModalVisible(true)}>已选视频导出</Button>
|
|
|
+ <Button type="primary" icon={<DownloadOutlined />} onClick={() => setIsExportModalVisible(true)}>已选视频导出</Button>
|
|
|
<Button type="primary" onClick={addPunlishPlan}>+ 创建发布</Button>
|
|
|
</Space>
|
|
|
)
|