- Migrated 4 components from ECharts to Chart.js: * MonthlyExpenseCard.vue (折线图) * DailyTrendChart.vue (双系列折线图) * ExpenseCategoryCard.vue (环形图) * BudgetChartAnalysis.vue (仪表盘 + 多种图表) - Removed all ECharts imports and environment variable switches - Unified all charts to use BaseChart.vue component - Build verified: pnpm build success ✓ - No echarts imports remaining ✓ Refs: openspec/changes/migrate-remaining-echarts-to-chartjs
20 lines
671 B
C#
20 lines
671 B
C#
global using Repository;
|
|
global using Microsoft.Extensions.DependencyInjection;
|
|
global using Microsoft.Extensions.Logging;
|
|
global using System.Text.RegularExpressions;
|
|
global using Microsoft.Extensions.Options;
|
|
global using System.Globalization;
|
|
global using System.Text;
|
|
global using System.Text.Json;
|
|
global using Entity;
|
|
global using System.Linq;
|
|
global using Service.AppSettingModel;
|
|
global using System.Text.Json.Serialization;
|
|
global using System.Text.Json.Nodes;
|
|
global using Microsoft.Extensions.Configuration;
|
|
global using Common;
|
|
global using System.Net;
|
|
global using System.Net.Http;
|
|
global using System.Text.Encodings.Web;
|
|
global using JetBrains.Annotations;
|