魏超 5 years ago
parent
commit
f2d5104382

+ 2
- 2
src/pages/fundManagement/AccountManagement.jsx View File

108
             render: (x, row) => (
108
             render: (x, row) => (
109
                 <>
109
                 <>
110
                     <span style={{ color: '#FF925C', cursor: 'pointer', marginRight: '16px', display: 'inline-block' }}><Recharge onClick={handleReset} orgId={row.orgId} accountId={row.accountId} /></span>
110
                     <span style={{ color: '#FF925C', cursor: 'pointer', marginRight: '16px', display: 'inline-block' }}><Recharge onClick={handleReset} orgId={row.orgId} accountId={row.accountId} /></span>
111
-                    <span style={{ color: '#FF925C', cursor: 'pointer', display: 'inline-block' }} >
111
+                    {/* <span style={{ color: '#FF925C', cursor: 'pointer', display: 'inline-block' }} >
112
                         <Refund orgId={row.orgId} accountId={row.accountId} onClick={handleReset} realBalance={row.realBalance || '0'} />
112
                         <Refund orgId={row.orgId} accountId={row.accountId} onClick={handleReset} realBalance={row.realBalance || '0'} />
113
-                    </span>
113
+                    </span> */}
114
                 </>
114
                 </>
115
             ),
115
             ),
116
         },
116
         },

+ 1
- 1
src/pages/fundManagement/ConsumeOrder.jsx View File

21
     const [personInfo, setPersonInfo] = useState({})
21
     const [personInfo, setPersonInfo] = useState({})
22
     const orgId = props.orgId || ''
22
     const orgId = props.orgId || ''
23
     useEffect(() => {
23
     useEffect(() => {
24
-        getList({ pageNum: 1, pageSize: 10, orderType: 'redPacket' });
24
+        getList({ pageNum: 1, pageSize: 10, orderType: 'RedPacket' });
25
     }, [])
25
     }, [])
26
 
26
 
27
     // 查询列表
27
     // 查询列表

+ 1
- 1
src/pages/fundManagement/RechargeOrder.jsx View File

104
             dataIndex: 'isOffline',
104
             dataIndex: 'isOffline',
105
             key: 'isOffline',
105
             key: 'isOffline',
106
             align: 'center',
106
             align: 'center',
107
-            render: (x, row) => <><span>{row.isOffline ? '运营手充值' : '业务线上充值'}</span></>
107
+            render: (x, row) => <><span>{row.isOffline ? '运营手充值' : '业务线上充值'}</span></>
108
         },
108
         },
109
         {
109
         {
110
             title: '下单时间',
110
             title: '下单时间',

+ 10
- 0
src/pages/fundManagement/RefundOrder.jsx View File

315
                         />,
315
                         />,
316
                     )}
316
                     )}
317
                 </Form.Item>
317
                 </Form.Item>
318
+                <Form.Item>
319
+                    {getFieldDecorator('auditStatus')(
320
+                        <Select style={{ width: '180px' }} placeholder="退款状态">
321
+                            <Select.Option value="">全部</Select.Option>
322
+                            <Select.Option value="checking">已申请</Select.Option>
323
+                            <Select.Option value="agree">已退款</Select.Option>
324
+                            <Select.Option value="unAgree">已驳回</Select.Option>
325
+                        </Select>,
326
+                    )}
327
+                </Form.Item>
318
                 <Form.Item>
328
                 <Form.Item>
319
                     <span style={{ marginRight: '10px' }}>退款时间段:</span>
329
                     <span style={{ marginRight: '10px' }}>退款时间段:</span>
320
                     {getFieldDecorator('LocalDate')(
330
                     {getFieldDecorator('LocalDate')(