魏超 5 gadus atpakaļ
vecāks
revīzija
a978334906

+ 1
- 1
src/pages/fundManagement/ConsumeOrder.jsx Parādīt failu

146
             submitValue.startDate = null
146
             submitValue.startDate = null
147
             submitValue.endDate = null
147
             submitValue.endDate = null
148
         }
148
         }
149
-        request({ ...apis.fund.orderExport, params: { orderType: 'redPacket', orgId, ...submitValue } }).then(data => {
149
+        request({ ...apis.fund.consumeOrderExport, params: { itemType: 'redPacket', orgId, ...submitValue } }).then(data => {
150
             if (!data) {
150
             if (!data) {
151
                 return
151
                 return
152
             }
152
             }

+ 1
- 1
src/pages/fundManagement/RechargeOrder.jsx Parādīt failu

139
             submitValue.startDate = null
139
             submitValue.startDate = null
140
             submitValue.endDate = null
140
             submitValue.endDate = null
141
         }
141
         }
142
-        request({ ...apis.fund.orderExport, params: { orderType: 'recharge', orgId, ...submitValue } }).then(data => {
142
+        request({ ...apis.fund.rechargeOrderExport, params: { itemType: 'recharge', orgId, ...submitValue } }).then(data => {
143
             if (!data) {
143
             if (!data) {
144
                 return
144
                 return
145
             }
145
             }

+ 7
- 3
src/services/apis.js Parādīt failu

253
       method: 'GET',
253
       method: 'GET',
254
       action: 'channel',
254
       action: 'channel',
255
     },
255
     },
256
-    orderExport: {
257
-      url: `${prefix}/taOrgOrder/orgOrderExport`,
256
+    rechargeOrderExport: {
257
+      url: `${prefix}/taOrgOrder/rechargeOrderExport`,
258
+      method: 'GET',
259
+      action: 'channel',
260
+    },
261
+    consumeOrderExport: {
262
+      url: `${prefix}/taOrgOrder/consumeOrderExport`,
258
       method: 'GET',
263
       method: 'GET',
259
       action: 'channel',
264
       action: 'channel',
260
     },
265
     },
261
-
262
   },
266
   },
263
   relatedOrganization: {
267
   relatedOrganization: {
264
     get: {
268
     get: {