import { EChart } from "../charts/EChart.jsx"; import { createRevenueOption } from "../charts/options/createRevenueOption.js"; import { Panel } from "./Panel.jsx"; export function RevenueTrendPanel({ loading = false, revenueSeries }) { return ( {loading ? (
) : revenueSeries.length ? ( ) : (
暂无趋势数据
)}
); }