Browse Source

新需求

魏超 5 years ago
parent
commit
f6ff10c949
2 changed files with 6 additions and 1 deletions
  1. 1
    1
      src/pages/fundManagement/RefundOrder.jsx
  2. 5
    0
      src/services/apis.js

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

242
             submitValue.startDate = null
242
             submitValue.startDate = null
243
             submitValue.endDate = null
243
             submitValue.endDate = null
244
         }
244
         }
245
-        request({ ...apis.fund.orderExport, params: { orderType: 'refund', orgId, ...submitValue } }).then(data => {
245
+        request({ ...apis.fund.refundOrderExport, params: { itemType: 'refund', orgId, ...submitValue } }).then(data => {
246
             if (!data) {
246
             if (!data) {
247
                 return
247
                 return
248
             }
248
             }

+ 5
- 0
src/services/apis.js View File

263
       method: 'GET',
263
       method: 'GET',
264
       action: 'channel',
264
       action: 'channel',
265
     },
265
     },
266
+    refundOrderExport: {
267
+      url: `${prefix}/taOrgOrder/refundOrderExport`,
268
+      method: 'GET',
269
+      action: 'channel',
270
+    },
266
   },
271
   },
267
   relatedOrganization: {
272
   relatedOrganization: {
268
     get: {
273
     get: {