Explorar o código

weCom「已选视频导出」按钮改为蓝色主按钮 + 下载图标,与「+创建发布」视觉一致。

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
刘立冬 hai 1 semana
pai
achega
3ffd3aaa80
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  1. 2 1
      src/views/publishContent/weCom/index.tsx

+ 2 - 1
src/views/publishContent/weCom/index.tsx

@@ -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>
 							)