提交1 bmad搭建与项目启动 - ok
This commit is contained in:
1
crop-x/src/pages/irrigation/IrrigationEntry.css
Normal file
1
crop-x/src/pages/irrigation/IrrigationEntry.css
Normal file
@@ -0,0 +1 @@
|
||||
/* 灌溉控制入口样式 */
|
||||
14
crop-x/src/pages/irrigation/IrrigationEntry.tsx
Normal file
14
crop-x/src/pages/irrigation/IrrigationEntry.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import { useEffect } from 'react'
|
||||
|
||||
export const IrrigationEntry = () => {
|
||||
useEffect(() => {
|
||||
// TODO: 实现灌溉控制入口逻辑
|
||||
console.log('灌溉控制入口页面')
|
||||
}, [])
|
||||
|
||||
return (
|
||||
<div className="p-6">
|
||||
<h1>灌溉控制入口</h1>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
1
crop-x/src/pages/irrigation/MonitoringSystem.css
Normal file
1
crop-x/src/pages/irrigation/MonitoringSystem.css
Normal file
@@ -0,0 +1 @@
|
||||
/* 监控系统样式 */
|
||||
14
crop-x/src/pages/irrigation/MonitoringSystem.tsx
Normal file
14
crop-x/src/pages/irrigation/MonitoringSystem.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import { useEffect } from 'react'
|
||||
|
||||
export const MonitoringSystem = () => {
|
||||
useEffect(() => {
|
||||
// TODO: 实现监控系统逻辑
|
||||
console.log('监控系统页面')
|
||||
}, [])
|
||||
|
||||
return (
|
||||
<div className="p-6">
|
||||
<h1>监控系统</h1>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
1
crop-x/src/pages/irrigation/SchedulingSystem.css
Normal file
1
crop-x/src/pages/irrigation/SchedulingSystem.css
Normal file
@@ -0,0 +1 @@
|
||||
/* 调度系统样式 */
|
||||
14
crop-x/src/pages/irrigation/SchedulingSystem.tsx
Normal file
14
crop-x/src/pages/irrigation/SchedulingSystem.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import { useEffect } from 'react'
|
||||
|
||||
export const SchedulingSystem = () => {
|
||||
useEffect(() => {
|
||||
// TODO: 实现调度系统逻辑
|
||||
console.log('调度系统页面')
|
||||
}, [])
|
||||
|
||||
return (
|
||||
<div className="p-6">
|
||||
<h1>调度系统</h1>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
1
crop-x/src/pages/irrigation/SystemControl.css
Normal file
1
crop-x/src/pages/irrigation/SystemControl.css
Normal file
@@ -0,0 +1 @@
|
||||
/* 系统控制样式 */
|
||||
14
crop-x/src/pages/irrigation/SystemControl.tsx
Normal file
14
crop-x/src/pages/irrigation/SystemControl.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
import { useEffect } from 'react'
|
||||
|
||||
export const SystemControl = () => {
|
||||
useEffect(() => {
|
||||
// TODO: 实现系统控制逻辑
|
||||
console.log('系统控制页面')
|
||||
}, [])
|
||||
|
||||
return (
|
||||
<div className="p-6">
|
||||
<h1>系统控制</h1>
|
||||
</div>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user