burncloud_client_shared/components/
placeholders.rs1use dioxus::prelude::*;
2
3#[component]
4pub fn Dashboard() -> Element {
5 rsx! {
6 div { class: "page-container",
7 h1 { "仪表盘" }
8 p { "这是仪表盘页面的占位符内容" }
9 }
10 }
11}
12
13#[component]
14pub fn ModelManagement() -> Element {
15 rsx! {
16 div { class: "page-container",
17 h1 { "模型管理" }
18 p { "这是模型管理页面的占位符内容" }
19 }
20 }
21}
22
23#[component]
24pub fn DeployConfig() -> Element {
25 rsx! {
26 div { class: "page-container",
27 h1 { "部署配置" }
28 p { "这是部署配置页面的占位符内容" }
29 }
30 }
31}
32
33#[component]
34pub fn ServiceMonitor() -> Element {
35 rsx! {
36 div { class: "page-container",
37 h1 { "服务监控" }
38 p { "这是服务监控页面的占位符内容" }
39 }
40 }
41}
42
43#[component]
44pub fn ApiManagement() -> Element {
45 rsx! {
46 div { class: "page-container",
47 h1 { "API管理" }
48 p { "这是API管理页面的占位符内容" }
49 }
50 }
51}
52
53#[component]
54pub fn SystemSettings() -> Element {
55 rsx! {
56 div { class: "page-container",
57 h1 { "系统设置" }
58 p { "这是系统设置页面的占位符内容" }
59 }
60 }
61}