123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- import { PageContainer } from '@ant-design/pro-components';
- import { Button, Card, Form, Input, Space, Table } from 'antd';
- import React, { useEffect, useState } from 'react';
- import { ReloadOutlined, SearchOutlined } from '@ant-design/icons';
- import { history } from 'umi';
- import type { ColumnsType } from 'antd/es/table';
- import { queryHomeList } from '@/services/home';
- import Overwrite from '@/pages/home/overwrite';
- interface DataType {
- name: string;
- member: any[];
- power: number;
- record_id: string;
- }
- /**
- * 家列表
- * @constructor
- */
- const Home: React.FC = () => {
- const [form] = Form.useForm();
- const [loading, setLoading] = useState(false);
- const [searchData, setSearchData] = useState<object | null>({});
- const [dataList, setDataList] = useState([]);
- const [pagination, setPagination] = useState({ total: 0, current: 1, pageSize: 10 });
- const [visible, setVisible] = useState(false);
- const [editData, setEditData] = useState(null);
- const getData = () => {
- const params = {
- q: 'page',
- current: pagination.current,
- pageSize: pagination.pageSize,
- ...searchData,
- };
- queryHomeList(params).then((res) => {
- if (res.code === 0) {
- setDataList(res.data.list);
- setPagination(res.data.pagination);
- setLoading(false);
- }
- });
- };
- useEffect(() => {
- setLoading(true);
- getData();
- }, []);
- useEffect(() => {
- getData();
- }, [searchData]);
- // 查询
- const onFinish = () => {
- form.validateFields().then((data) => {
- setLoading(true);
- setSearchData(data);
- });
- };
- // 重置
- const onReset = () => {
- form.resetFields();
- setLoading(true);
- setSearchData(null);
- };
- // table切换
- const tableChange = (page: any) => {
- setLoading(true);
- const param = {
- q: 'page',
- current: page.current,
- pageSize: page.pageSize,
- ...searchData,
- };
- queryHomeList(param).then((res) => {
- if (res.code === 0) {
- setDataList(res.data.list);
- setPagination(res.data.pagination);
- setLoading(false);
- }
- });
- };
- // 下发
- const onOverwrite = (data: any) => {
- setVisible(true);
- setEditData(data);
- };
- // 下发弹框回调
- const overwriteCallback = () => {
- setVisible(false);
- getData();
- };
- // 跳转到房间
- const toRoom = (record: DataType) => {
- history.push({ pathname: '/roomList', state: record.record_id });
- };
- const columns: ColumnsType<DataType> = [
- {
- title: '序号',
- align: 'center',
- key: 'index',
- render: (_: any, row: any, index: number) => index + 1,
- },
- {
- title: '名称',
- width: 200,
- dataIndex: 'name',
- key: 'name',
- },
- {
- title: '设备编号',
- width: 100,
- dataIndex: 'gateway',
- key: 'gateway',
- },
- {
- title: '设备是否在线',
- dataIndex: 'is_online',
- key: 'is_online',
- render: (v) => <span>{v ? '在线' : '离线'}</span>,
- },
- {
- title: '成员人数',
- dataIndex: 'member',
- key: 'member',
- render: (v) => v && <span>{v.length}</span>,
- },
- {
- title: '地区',
- dataIndex: 'district',
- key: 'district',
- },
- {
- title: '操作',
- key: 'action',
- render: (_, record) => (
- <Space size="middle">
- <a
- onClick={() => {
- toRoom(record);
- }}
- >
- 查看房间
- </a>
- <a
- onClick={() => {
- onOverwrite(record);
- }}
- >
- 远程配置
- </a>
- </Space>
- ),
- },
- ];
- const paginationProps = {
- showSizeChanger: true,
- showQuickJumper: true,
- showTotal: (total: number) => {
- return <span> 共 {total}条 </span>;
- },
- ...pagination,
- };
- return (
- <PageContainer>
- <Card>
- <Form form={form} layout="inline" onFinish={onFinish}>
- <Form.Item name="like_name" label="名称">
- <Input placeholder="请输入名称" />
- </Form.Item>
- <Form.Item name="like_gateway" label="设备编号">
- <Input placeholder="请输入设备编号" />
- </Form.Item>
- <Form.Item style={{ marginBottom: '10px' }}>
- <Space>
- <Button type="primary" htmlType="submit">
- <SearchOutlined />
- 查询
- </Button>
- <Button htmlType="button" onClick={onReset}>
- <ReloadOutlined />
- 重置
- </Button>
- </Space>
- </Form.Item>
- </Form>
- <Table
- columns={columns}
- dataSource={dataList}
- rowKey={(record: any) => record.record_id}
- pagination={paginationProps}
- loading={loading}
- onChange={tableChange}
- style={{ marginTop: '20px' }}
- />
- {visible && (
- <Overwrite visible={visible} editCallback={overwriteCallback} params={editData} />
- )}
- </Card>
- </PageContainer>
- );
- };
- export default Home;
|