| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- import BaseCrud from '@/components/BaseCrud';
- import { CurdModel } from '@/components/BaseCrud/model';
- import BaseService from '@/utils/BaseService';
- import { CloseCircleOutlined, EditOutlined, PlayCircleOutlined } from '@ant-design/icons';
- import { PageContainer } from '@ant-design/pro-layout';
- import type { ActionType, ProColumns } from '@jetlinks/pro-table';
- import { Popconfirm, Tooltip } from 'antd';
- import { useRef } from 'react';
- import type { CtwingItem } from '@/pages/cloud/Ctwing/typings';
- import { useIntl } from '@@/plugin-locale/localeExports';
- import { onlyMessage } from '@/utils/util';
- export const service = new BaseService<CtwingItem>('ctwing/product');
- const stateIconMap = {
- enabled: <CloseCircleOutlined />,
- disabled: <PlayCircleOutlined />,
- };
- const Ctwing = () => {
- const intl = useIntl();
- const actionRef = useRef<ActionType>();
- const columns: ProColumns<CtwingItem>[] = [
- {
- dataIndex: 'index',
- valueType: 'indexBorder',
- width: 48,
- },
- {
- title: intl.formatMessage({
- id: 'pages.table.name',
- defaultMessage: '名称',
- }),
- align: 'center',
- dataIndex: 'name',
- },
- {
- title: intl.formatMessage({
- id: 'pages.searchTable.titleStatus',
- defaultMessage: '状态',
- }),
- dataIndex: 'state',
- render: (value: any) => value.text,
- },
- {
- title: intl.formatMessage({
- id: 'pages.table.description',
- defaultMessage: '说明',
- }),
- align: 'center',
- dataIndex: 'description',
- },
- {
- title: intl.formatMessage({
- id: 'pages.data.option',
- defaultMessage: '操作',
- }),
- valueType: 'option',
- align: 'center',
- width: 200,
- render: (text, record) => [
- <a key="editable" onClick={() => CurdModel.update(record)}>
- <Tooltip
- title={intl.formatMessage({
- id: 'pages.data.option.edit',
- defaultMessage: '编辑',
- })}
- >
- <EditOutlined />
- </Tooltip>
- </a>,
- <a key="status">
- <Popconfirm
- title={intl.formatMessage({
- id: `pages.data.option.${
- record.state.value === 'disabled' ? 'enabled' : 'disabled'
- }.tips`,
- defaultMessage: `确认${record.state.value === 'disabled' ? '启' : '禁'}用?`,
- })}
- onConfirm={async () => {
- // const state = record.state.value === 'disabled' ? 'enable' : 'disable';
- // await service.changeStatus(record.id, state);
- onlyMessage(
- intl.formatMessage({
- id: 'pages.data.option.success',
- defaultMessage: '操作成功!',
- }),
- );
- actionRef.current?.reload();
- }}
- >
- <Tooltip
- title={intl.formatMessage({
- id: `pages.data.option.${
- record.state.value === 'enabled' ? 'disabled' : 'enabled'
- }`,
- defaultMessage: record.state.text,
- })}
- >
- {stateIconMap[record.state.value]}
- </Tooltip>
- </Popconfirm>
- </a>,
- ],
- },
- ];
- const schema = {};
- return (
- <PageContainer>
- <BaseCrud<CtwingItem>
- columns={columns}
- service={service}
- title={intl.formatMessage({
- id: 'pages.cloud.ctwing',
- defaultMessage: 'ctwing',
- })}
- schema={schema}
- actionRef={actionRef}
- />
- </PageContainer>
- );
- };
- export default Ctwing;
|