1 Commits

Author SHA1 Message Date
mmc
9d7615001c 修改名称 和电站地址 2026-08-21 09:56:10 +08:00
6 changed files with 7 additions and 7 deletions

View File

@@ -5,7 +5,7 @@
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/x-icon" href="./src/assets/logo.png" /> <link rel="icon" type="image/x-icon" href="./src/assets/logo.png" />
<title>光伏电站智能监控与运维系统</title> <title>飒沓 ⋅ 星枢</title>
<!-- 预加载关键域名(提速DNS) --> <!-- 预加载关键域名(提速DNS) -->
<link rel="dns-prefetch" href="https://cdnjs.cloudflare.com"> <link rel="dns-prefetch" href="https://cdnjs.cloudflare.com">

View File

@@ -1,5 +1,5 @@
{ {
"name": "光伏电站智能监控与运维系统", "name": "飒沓 ⋅ 星枢",
"description": "提供设备管理、视频监控、状态预警、警报处理及视频下载功能的一站式机器人智能管理平台。", "description": "提供设备管理、视频监控、状态预警、警报处理及视频下载功能的一站式机器人智能管理平台。",
"requestFramePermissions": [], "requestFramePermissions": [],
"majorCapabilities": [] "majorCapabilities": []

View File

@@ -238,7 +238,7 @@ export default function AppLayout() {
<img src={logo} alt="Logo" style={{ width: 24, height: 24 }} /> <img src={logo} alt="Logo" style={{ width: 24, height: 24 }} />
{!collapsed && ( {!collapsed && (
<span style={{ fontWeight: 'bold', fontSize: 'clamp(14px, 1.2vw, 16px)', color: '#fff', whiteSpace: 'nowrap' }}> <span style={{ fontWeight: 'bold', fontSize: 'clamp(14px, 1.2vw, 16px)', color: '#fff', whiteSpace: 'nowrap' }}>
光伏电站智能监控与运维系统 飒沓 ⋅ 星枢
</span> </span>
)} )}
</div> </div>
@@ -337,7 +337,7 @@ export default function AppLayout() {
src="https://images.unsplash.com/photo-1509391366360-2e959784a276?ixlib=rb-1.2.1&auto=format&fit=crop&w=1200&q=80" src="https://images.unsplash.com/photo-1509391366360-2e959784a276?ixlib=rb-1.2.1&auto=format&fit=crop&w=1200&q=80"
/> />
<div style={{ fontSize: 11, color: '#666', lineHeight: 1.8 }}> <div style={{ fontSize: 11, color: '#666', lineHeight: 1.8 }}>
<div>电站地址:{currentStation.address || '河南省林州'}</div> <div>电站地址:{currentStation.address || '苏州'}</div>
<div>电站类型:{currentStation.type || '地面电站'}</div> <div>电站类型:{currentStation.type || '地面电站'}</div>
<div style={{ marginTop: 4, display: 'flex', alignItems: 'center', color: '#41ad0a' }}> <div style={{ marginTop: 4, display: 'flex', alignItems: 'center', color: '#41ad0a' }}>
<span>运行状态:</span> <span>运行状态:</span>

View File

@@ -208,7 +208,7 @@ const BasicSettings = () => {
<Row gutter={16}> <Row gutter={16}>
<Col xs={24} sm={12} md={8}> <Col xs={24} sm={12} md={8}>
<Form.Item label="系统名称" name="systemName" style={{ marginBottom: 12 }}> <Form.Item label="系统名称" name="systemName" style={{ marginBottom: 12 }}>
<Input size="small" defaultValue="光伏电站智能监控与运维系统" /> <Input size="small" defaultValue="飒沓 ⋅ 星枢" />
</Form.Item> </Form.Item>
</Col> </Col>
<Col xs={24} sm={12} md={8}> <Col xs={24} sm={12} md={8}>

View File

@@ -87,7 +87,7 @@ export default function Login() {
<div className="md:w-1/2 bg-white p-10 md:p-16 flex flex-col justify-center relative z-10"> <div className="md:w-1/2 bg-white p-10 md:p-16 flex flex-col justify-center relative z-10">
<motion.div initial={{ opacity: 0, x: -20 }} animate={{ opacity: 1, x: 0 }} transition={{ delay: 0.2 }}> <motion.div initial={{ opacity: 0, x: -20 }} animate={{ opacity: 1, x: 0 }} transition={{ delay: 0.2 }}>
<Title level={2} style={{ marginBottom: 40, color: '#111', fontWeight: 700 }}> <Title level={2} style={{ marginBottom: 40, color: '#111', fontWeight: 700 }}>
光伏电站智能监控与运维系统 飒沓 ⋅ 星枢
</Title> </Title>
<Form name="login" layout="vertical" onFinish={onFinish} autoComplete="off" size="large"> <Form name="login" layout="vertical" onFinish={onFinish} autoComplete="off" size="large">

View File

@@ -1,5 +1,5 @@
// ============================================================ // ============================================================
// 光伏电站智能监控与运维系统 - 全局类型定义 // 飒沓 ⋅ 星枢 - 全局类型定义
// ============================================================ // ============================================================
// ------------------- 通用 ------------------- // ------------------- 通用 -------------------