UpdateForm.tsx 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. import {
  2. ModalForm,
  3. ProFormDatePicker,
  4. ProFormDigit,
  5. ProFormSelect,
  6. ProFormText,
  7. } from '@ant-design/pro-components';
  8. import React from 'react';
  9. export type UpdateFormProps = {
  10. onCancel: () => void;
  11. onSubmit: (values: API.MatchItem) => Promise<void>;
  12. updateModalOpen: boolean;
  13. values: Partial<API.MatchItem>;
  14. };
  15. const UpdateForm: React.FC<UpdateFormProps> = (props) => {
  16. const { onCancel, onSubmit, updateModalOpen, values } = props;
  17. return (
  18. <ModalForm
  19. key={values._id}
  20. title="更新赛事"
  21. width="400px"
  22. open={updateModalOpen}
  23. onOpenChange={(visible) => {
  24. if (!visible) {
  25. onCancel();
  26. }
  27. }}
  28. onFinish={async (value) => {
  29. const formData = {
  30. ...values,
  31. ...value,
  32. homeTeam: {
  33. ...values.homeTeam,
  34. ...value.homeTeam,
  35. },
  36. awayTeam: {
  37. ...values.awayTeam,
  38. ...value.awayTeam,
  39. },
  40. // 根据新的数据模型调整
  41. football: {
  42. ...values.football,
  43. ...value.football,
  44. result: {
  45. ...values.football?.result,
  46. ...value.football?.result,
  47. },
  48. pointRewards: {
  49. ...values.football?.pointRewards,
  50. ...value.football?.pointRewards,
  51. },
  52. },
  53. // 保持基本字段
  54. homeTeamScore: value.homeTeamScore,
  55. awayTeamScore: value.awayTeamScore,
  56. status: value.status,
  57. };
  58. await onSubmit(formData as API.MatchItem);
  59. }}
  60. initialValues={{
  61. ...values,
  62. // 展开嵌套字段以匹配表单结构
  63. ...values.football,
  64. }}
  65. >
  66. <ProFormText
  67. rules={[
  68. {
  69. required: true,
  70. message: '主队名称是必填项',
  71. },
  72. ]}
  73. width="md"
  74. name={['homeTeam', 'name']}
  75. label="主队名称"
  76. />
  77. <ProFormText
  78. rules={[
  79. {
  80. required: true,
  81. message: '客队名称是必填项',
  82. },
  83. ]}
  84. width="md"
  85. name={['awayTeam', 'name']}
  86. label="客队名称"
  87. />
  88. <ProFormDatePicker
  89. rules={[
  90. {
  91. required: true,
  92. message: '比赛日期是必填项',
  93. },
  94. ]}
  95. width="md"
  96. name="date"
  97. label="比赛日期"
  98. />
  99. <ProFormText
  100. rules={[
  101. {
  102. required: true,
  103. message: '联赛是必填项',
  104. },
  105. ]}
  106. width="md"
  107. name="league"
  108. label="联赛"
  109. />
  110. <ProFormText
  111. rules={[
  112. {
  113. required: true,
  114. message: '比赛时间是必填项',
  115. },
  116. ]}
  117. width="md"
  118. name="time"
  119. label="比赛时间"
  120. />
  121. <ProFormDigit width="md" name="homeTeamScore" label="主队得分" />
  122. <ProFormDigit width="md" name="awayTeamScore" label="客队得分" />
  123. <ProFormSelect
  124. width="md"
  125. name={['football', 'result', 'whoWillWin']}
  126. label="胜负结果"
  127. valueEnum={{
  128. home: '主队胜',
  129. away: '客队胜',
  130. draw: '平局',
  131. }}
  132. />
  133. <ProFormSelect
  134. width="md"
  135. name={['football', 'result', 'firstTeamToScore']}
  136. label="首个进球球队"
  137. valueEnum={{
  138. home: '主队',
  139. away: '客队',
  140. no_goal: '无进球',
  141. }}
  142. />
  143. <ProFormDigit
  144. width="md"
  145. name={['football', 'pointRewards', 'whoWillWin']}
  146. label="胜负预测积分"
  147. disabled
  148. />
  149. <ProFormDigit
  150. width="md"
  151. name={['football', 'pointRewards', 'firstTeamToScore']}
  152. label="首进球预测积分"
  153. disabled
  154. />
  155. <ProFormDigit
  156. width="md"
  157. name={['football', 'pointRewards', 'totalGoals']}
  158. label="总进球预测积分"
  159. disabled
  160. />
  161. <ProFormSelect
  162. rules={[
  163. {
  164. required: true,
  165. message: '比赛状态是必填项',
  166. },
  167. ]}
  168. width="md"
  169. name="status"
  170. label="比赛状态"
  171. valueEnum={{
  172. 未开始: '未开始',
  173. 进行中: '进行中',
  174. 已结束: '已结束',
  175. }}
  176. />
  177. </ModalForm>
  178. );
  179. };
  180. export default UpdateForm;