Files
hms/apps/web/src/pages/health/DeviceManage.tsx
iven cac61637ce
Some checks failed
CI / rust-check (push) Has been cancelled
CI / rust-test (push) Has been cancelled
CI / frontend-build (push) Has been cancelled
CI / security-audit (push) Has been cancelled
feat(health): Web 管理端设备数据集成补全 — Phase 2
- 新增告警三页面(仪表盘/列表/规则)+ 设备管理菜单种子数据
- 新增设备管理后端 API(GET /devices + DELETE /devices/{id})
- 新增设备数据查看组件 DeviceReadingsTab(原始数据 + 小时聚合)
- 新增设备管理页面 DeviceManage(列表/筛选/解绑)
- 患者详情页新增设备数据 Tab
2026-04-29 06:28:30 +08:00

165 lines
4.4 KiB
TypeScript

import { useCallback, useEffect, useState } from 'react';
import { Button, Input, message, Popconfirm, Select, Space, Table, Tag } from 'antd';
import type { ColumnsType } from 'antd/es/table';
import dayjs from 'dayjs';
import { deviceApi, type DeviceItem } from '../../api/health/devices';
const DEVICE_TYPE_OPTIONS = [
{ label: '血压', value: 'blood_pressure' },
{ label: '血糖', value: 'blood_glucose' },
{ label: '心率', value: 'heart_rate' },
{ label: '血氧', value: 'blood_oxygen' },
{ label: '步数', value: 'steps' },
{ label: '体温', value: 'temperature' },
];
const DEVICE_TYPE_COLOR: Record<string, string> = {
blood_pressure: 'red',
blood_glucose: 'purple',
heart_rate: 'volcano',
blood_oxygen: 'blue',
steps: 'green',
temperature: 'orange',
};
function formatTime(val?: string | null): string {
if (!val) return '-';
return dayjs(val).format('YYYY-MM-DD HH:mm');
}
export default function DeviceManage() {
const [data, setData] = useState<DeviceItem[]>([]);
const [total, setTotal] = useState(0);
const [loading, setLoading] = useState(false);
const [page, setPage] = useState(1);
const [filterPatientId, setFilterPatientId] = useState('');
const [filterDeviceType, setFilterDeviceType] = useState<string | undefined>(undefined);
const fetchDevices = useCallback(async () => {
setLoading(true);
try {
const res = await deviceApi.listDevices({
page,
page_size: 20,
...(filterPatientId ? { patient_id: filterPatientId } : {}),
...(filterDeviceType ? { device_type: filterDeviceType } : {}),
});
setData(res.data);
setTotal(res.total);
} catch {
message.error('加载设备列表失败');
} finally {
setLoading(false);
}
}, [page, filterPatientId, filterDeviceType]);
useEffect(() => {
fetchDevices();
}, [fetchDevices]);
const handleUnbind = async (record: DeviceItem) => {
try {
await deviceApi.unbindDevice(record.id, record.version);
message.success('设备已解绑');
fetchDevices();
} catch {
message.error('解绑失败');
}
};
const columns: ColumnsType<DeviceItem> = [
{
title: '设备 ID',
dataIndex: 'device_id',
width: 120,
render: (v: string) => v.slice(0, 8),
},
{
title: '设备型号',
dataIndex: 'device_model',
width: 160,
},
{
title: '设备类型',
dataIndex: 'device_type',
width: 100,
render: (v: string) => {
const label = DEVICE_TYPE_OPTIONS.find((d) => d.value === v)?.label || v;
return <Tag color={DEVICE_TYPE_COLOR[v] || 'default'}>{label}</Tag>;
},
},
{
title: '绑定时间',
dataIndex: 'bound_at',
width: 170,
render: (v: string) => formatTime(v),
},
{
title: '最后同步',
dataIndex: 'last_sync_at',
width: 170,
render: (v: string) => formatTime(v),
},
{
title: '操作',
width: 80,
render: (_, record) => (
<Popconfirm
title="确认解绑"
description="解绑后设备将不再关联该患者,确定继续?"
onConfirm={() => handleUnbind(record)}
okText="确定"
cancelText="取消"
>
<Button size="small" type="link" danger>
</Button>
</Popconfirm>
),
},
];
return (
<div style={{ padding: 24 }}>
<h2 style={{ marginBottom: 16 }}></h2>
<Space style={{ marginBottom: 16 }} wrap>
<Input
placeholder="患者 ID"
value={filterPatientId}
onChange={(e) => setFilterPatientId(e.target.value)}
style={{ width: 200 }}
allowClear
/>
<Select
placeholder="设备类型"
value={filterDeviceType}
onChange={setFilterDeviceType}
options={DEVICE_TYPE_OPTIONS}
style={{ width: 140 }}
allowClear
/>
<Button type="primary" onClick={() => setPage(1)}>
</Button>
</Space>
<Table<DeviceItem>
rowKey="id"
columns={columns}
dataSource={data}
loading={loading}
pagination={{
current: page,
total,
pageSize: 20,
showTotal: (t) => `${t}`,
onChange: (p) => setPage(p),
}}
/>
</div>
);
}