Browse Source

新需求

魏超 4 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,7 +242,7 @@ function header(props) {
242 242
             submitValue.startDate = null
243 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 246
             if (!data) {
247 247
                 return
248 248
             }

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

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