index.tsx 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. import React, { useRef } from 'react';
  2. import { PageContainer } from '@ant-design/pro-layout';
  3. import { ProTable } from '@ant-design/pro-components';
  4. import type { ProColumns, ActionType } from '@ant-design/pro-components';
  5. import { Button, Popconfirm, Spin, Tag } from 'antd';
  6. import UpsertSmsChannelModalForm from './component/UpsertSmsChannelModalForm';
  7. import { PlusOutlined } from '@ant-design/icons';
  8. import { pageQuerySmsChannel } from '@/services/op-admin/message/sms';
  9. /**
  10. * @author bianlanzhou
  11. * @since 2024-11-07
  12. * @desc
  13. */
  14. const SmsChannelTable: React.FC = () => {
  15. /** 引用 */
  16. const actionRef = useRef<ActionType>();
  17. /** 列定义 */
  18. const columns: ProColumns<SMS.Channel>[] = [
  19. {
  20. title: '序号',
  21. dataIndex: 'index',
  22. valueType: 'indexBorder',
  23. width: 48,
  24. },
  25. {
  26. title: '通道名称',
  27. dataIndex: 'channelName',
  28. },
  29. {
  30. title: '短信平台名称',
  31. dataIndex: 'platformName',
  32. },
  33. {
  34. title: '创建人',
  35. dataIndex: 'createUsername',
  36. search: false,
  37. },
  38. {
  39. title: '创建时间',
  40. dataIndex: 'gmtCreate',
  41. search: false,
  42. },
  43. {
  44. title: '修改人',
  45. dataIndex: 'modifyUsername',
  46. search: false,
  47. },
  48. {
  49. title: '修改时间',
  50. dataIndex: 'gmtModify',
  51. search: false,
  52. },
  53. {
  54. title: '状态',
  55. dataIndex: 'status',
  56. search: false,
  57. render: (_, record) => {
  58. if (record.status === 'draft') {
  59. return [<Tag key='status' color='orange'>草稿</Tag>]
  60. }
  61. if (record.status === 'ok') {
  62. return [<Tag key='status' color='blue'>已启用</Tag>]
  63. }
  64. if (record.status === 'draft') {
  65. return [<Tag key='status' color='red'>已停用</Tag>]
  66. }
  67. if (record.status === 'delete') {
  68. return [<Tag key='status' color='purple'>已删除</Tag>]
  69. }
  70. return [<Tag key='status' color='#f50'>未知</Tag>]
  71. }
  72. },
  73. {
  74. title: '操作',
  75. valueType: 'option',
  76. width: '10%',
  77. render: (_, record) => [
  78. <UpsertSmsChannelModalForm
  79. key="edit"
  80. trigger={
  81. <a
  82. key="edit"
  83. >
  84. 编辑
  85. </a>
  86. }
  87. callback={() => {
  88. actionRef.current?.reload()
  89. }}
  90. data={record}
  91. />
  92. ,
  93. <Popconfirm
  94. key="delete"
  95. title="确认删除此条记录?"
  96. okText="确定"
  97. cancelText="取消"
  98. onConfirm={async () => {
  99. }}
  100. >
  101. <Spin spinning={false} >
  102. <a
  103. key="delete"
  104. >
  105. 删除
  106. </a>
  107. </Spin>
  108. </Popconfirm>,
  109. ],
  110. },
  111. ]
  112. return (
  113. <PageContainer
  114. header={{
  115. title: '',
  116. }}
  117. >
  118. <ProTable<SMS.Channel>
  119. columns={columns}
  120. cardBordered
  121. actionRef={actionRef}
  122. request={pageQuerySmsChannel}
  123. editable={{
  124. type: 'multiple',
  125. }}
  126. rowKey="id"
  127. search={{
  128. labelWidth: 'auto',
  129. }}
  130. pagination={{
  131. pageSize: 10,
  132. }}
  133. toolBarRender={() => [
  134. <UpsertSmsChannelModalForm
  135. key="create"
  136. trigger={
  137. <Button key="create" type="primary" icon={<PlusOutlined />}>
  138. 创建短信通道
  139. </Button>
  140. }
  141. callback={() => {
  142. actionRef.current?.reload();
  143. }}
  144. />,
  145. ]}
  146. headerTitle="短信通道列表"
  147. />
  148. </PageContainer>
  149. );
  150. }
  151. export default SmsChannelTable;