|
@@ -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>
|
|
|
}
|