2026-03-18 19:12:38 +08:00
|
|
|
import React, { useState, useEffect } from 'react';
|
|
|
|
|
import { Table, Button, Input, Select, DatePicker, message, Card, Tabs } from 'antd';
|
|
|
|
|
import { PlusOutlined, EditOutlined, DeleteOutlined, SearchOutlined, PlayCircleOutlined, PauseCircleOutlined } from '@ant-design/icons';
|
2026-03-19 01:39:34 +08:00
|
|
|
import { marketingDataSource, Ad } from '@/services/marketingDataSource';
|
2026-03-18 19:12:38 +08:00
|
|
|
|
|
|
|
|
const { Option } = Select;
|
|
|
|
|
const { RangePicker } = DatePicker;
|
|
|
|
|
const { Search } = Input;
|
|
|
|
|
const { TabPane } = Tabs;
|
|
|
|
|
|
|
|
|
|
const Ads: React.FC = () => {
|
|
|
|
|
const [ads, setAds] = useState<Ad[]>([]);
|
|
|
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
|
const [filters, setFilters] = useState({
|
|
|
|
|
platform: '',
|
|
|
|
|
status: '',
|
|
|
|
|
search: '',
|
2026-03-20 09:53:25 +08:00
|
|
|
dateRange: null as [Date, Date] | null,
|
2026-03-18 19:12:38 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
|
fetchAds();
|
|
|
|
|
}, [filters]);
|
|
|
|
|
|
|
|
|
|
const fetchAds = async () => {
|
|
|
|
|
setLoading(true);
|
2026-03-19 01:39:34 +08:00
|
|
|
try {
|
|
|
|
|
const data = await marketingDataSource.fetchAds(filters);
|
|
|
|
|
setAds(data);
|
|
|
|
|
} catch (error) {
|
|
|
|
|
message.error('Failed to load ads');
|
|
|
|
|
} finally {
|
|
|
|
|
setLoading(false);
|
|
|
|
|
}
|
|
|
|
|
};
|
2026-03-19 14:19:01 +08:00
|
|
|
|
|
|
|
|
const handleAddAd = () => {
|
|
|
|
|
message.info('创建广告功能开发中');
|
2026-03-18 19:12:38 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleStartAd = (id: string) => {
|
|
|
|
|
message.success('广告已启动');
|
|
|
|
|
fetchAds();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handlePauseAd = (id: string) => {
|
|
|
|
|
message.success('广告已暂停');
|
|
|
|
|
fetchAds();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleEditAd = (id: string) => {
|
|
|
|
|
message.info('编辑广告功能开发中');
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const handleDeleteAd = (id: string) => {
|
|
|
|
|
message.success('广告已删除');
|
|
|
|
|
fetchAds();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const columns = [
|
|
|
|
|
{
|
|
|
|
|
title: '广告名称',
|
|
|
|
|
dataIndex: 'name',
|
|
|
|
|
key: 'name',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '平台',
|
|
|
|
|
dataIndex: 'platform',
|
|
|
|
|
key: 'platform',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '活动',
|
|
|
|
|
dataIndex: 'campaign',
|
|
|
|
|
key: 'campaign',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '状态',
|
|
|
|
|
dataIndex: 'status',
|
|
|
|
|
key: 'status',
|
|
|
|
|
render: (status: string) => {
|
|
|
|
|
const statusMap = {
|
|
|
|
|
active: '活跃',
|
|
|
|
|
paused: '暂停',
|
|
|
|
|
completed: '已完成',
|
|
|
|
|
};
|
|
|
|
|
return statusMap[status] || status;
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '预算',
|
|
|
|
|
dataIndex: 'budget',
|
|
|
|
|
key: 'budget',
|
|
|
|
|
render: (budget: number) => `$${budget.toFixed(2)}`,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '支出',
|
|
|
|
|
dataIndex: 'spend',
|
|
|
|
|
key: 'spend',
|
|
|
|
|
render: (spend: number) => `$${spend.toFixed(2)}`,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '点击量',
|
|
|
|
|
dataIndex: 'clicks',
|
|
|
|
|
key: 'clicks',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '转化数',
|
|
|
|
|
dataIndex: 'conversions',
|
|
|
|
|
key: 'conversions',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: 'ROI',
|
|
|
|
|
dataIndex: 'roi',
|
|
|
|
|
key: 'roi',
|
|
|
|
|
render: (roi: number) => `${roi.toFixed(2)}x`,
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
title: '操作',
|
|
|
|
|
key: 'action',
|
2026-03-20 09:53:25 +08:00
|
|
|
render: (_: unknown, record: Ad) => (
|
2026-03-18 19:12:38 +08:00
|
|
|
<div>
|
|
|
|
|
{record.status === 'active' ? (
|
|
|
|
|
<Button
|
|
|
|
|
type="link"
|
|
|
|
|
icon={<PauseCircleOutlined />}
|
|
|
|
|
onClick={() => handlePauseAd(record.id)}
|
|
|
|
|
>
|
|
|
|
|
暂停
|
|
|
|
|
</Button>
|
|
|
|
|
) : (
|
|
|
|
|
<Button
|
|
|
|
|
type="link"
|
|
|
|
|
icon={<PlayCircleOutlined />}
|
|
|
|
|
onClick={() => handleStartAd(record.id)}
|
|
|
|
|
>
|
|
|
|
|
启动
|
|
|
|
|
</Button>
|
|
|
|
|
)}
|
|
|
|
|
<Button
|
|
|
|
|
type="link"
|
|
|
|
|
icon={<EditOutlined />}
|
|
|
|
|
onClick={() => handleEditAd(record.id)}
|
|
|
|
|
>
|
|
|
|
|
编辑
|
|
|
|
|
</Button>
|
|
|
|
|
<Button
|
|
|
|
|
type="link"
|
|
|
|
|
danger
|
|
|
|
|
icon={<DeleteOutlined />}
|
|
|
|
|
onClick={() => handleDeleteAd(record.id)}
|
|
|
|
|
>
|
|
|
|
|
删除
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|
),
|
|
|
|
|
},
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="ads">
|
|
|
|
|
<div className="page-header">
|
|
|
|
|
<h1>广告管理</h1>
|
|
|
|
|
<Button
|
|
|
|
|
type="primary"
|
|
|
|
|
icon={<PlusOutlined />}
|
|
|
|
|
>
|
|
|
|
|
创建广告
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div className="filter-section" style={{ marginBottom: 24, display: 'flex', gap: 16, flexWrap: 'wrap' }}>
|
|
|
|
|
<Search
|
|
|
|
|
placeholder="搜索广告名称或活动"
|
|
|
|
|
style={{ width: 300 }}
|
|
|
|
|
onChange={(e) => setFilters({ ...filters, search: e.target.value })}
|
|
|
|
|
/>
|
|
|
|
|
<Select
|
|
|
|
|
placeholder="平台"
|
|
|
|
|
style={{ width: 120 }}
|
|
|
|
|
onChange={(value) => setFilters({ ...filters, platform: value })}
|
|
|
|
|
>
|
|
|
|
|
<Option value="">全部</Option>
|
|
|
|
|
<Option value="Facebook">Facebook</Option>
|
|
|
|
|
<Option value="Google">Google</Option>
|
|
|
|
|
<Option value="Instagram">Instagram</Option>
|
|
|
|
|
<Option value="TikTok">TikTok</Option>
|
|
|
|
|
</Select>
|
|
|
|
|
<Select
|
|
|
|
|
placeholder="状态"
|
|
|
|
|
style={{ width: 120 }}
|
|
|
|
|
onChange={(value) => setFilters({ ...filters, status: value })}
|
|
|
|
|
>
|
|
|
|
|
<Option value="">全部</Option>
|
|
|
|
|
<Option value="active">活跃</Option>
|
|
|
|
|
<Option value="paused">暂停</Option>
|
|
|
|
|
<Option value="completed">已完成</Option>
|
|
|
|
|
</Select>
|
|
|
|
|
<RangePicker
|
|
|
|
|
style={{ width: 300 }}
|
|
|
|
|
onChange={(dates) => setFilters({ ...filters, dateRange: dates })}
|
|
|
|
|
/>
|
|
|
|
|
<Button
|
|
|
|
|
icon={<SearchOutlined />}
|
|
|
|
|
onClick={fetchAds}
|
|
|
|
|
>
|
|
|
|
|
筛选
|
|
|
|
|
</Button>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<Card title="广告列表">
|
|
|
|
|
<Table
|
|
|
|
|
columns={columns}
|
|
|
|
|
dataSource={ads}
|
|
|
|
|
loading={loading}
|
|
|
|
|
rowKey="id"
|
|
|
|
|
pagination={{
|
|
|
|
|
pageSize: 10,
|
|
|
|
|
showSizeChanger: true,
|
|
|
|
|
}}
|
|
|
|
|
/>
|
|
|
|
|
</Card>
|
|
|
|
|
</div>
|
|
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default Ads;
|