wjx 1 年之前
父節點
當前提交
b6b4c41f81
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      src/pages/gameDataStatistics/order/back.tsx

+ 2 - 1
src/pages/gameDataStatistics/order/back.tsx

@@ -1,6 +1,6 @@
 import { useAjax } from "@/Hook/useAjax"
 import { setBackApi } from "@/services/gameData/order"
-import { InputNumber, Modal, message } from "antd"
+import { Alert, InputNumber, Modal, message } from "antd"
 import React, { useState } from "react"
 
 interface Props {
@@ -36,6 +36,7 @@ const Back: React.FC<Props> = ({ data, visible, onClose, onChange }) => {
         onCancel={onClose}
         onOk={handleOk}
     >
+        <Alert message="回传状态3分钟延迟" type="error" style={{ marginBottom: 10 }}/>
         <InputNumber placeholder="请输入回传金额" value={backMoney} onChange={(e) => setBackMoney(e)} style={{ width: '100%' }} />
     </Modal>
 }