You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
493 B
22 lines
493 B
/*
|
|
* @Author: ch
|
|
* @Date: 2022-07-04 15:20:02
|
|
* @LastEditors: ch
|
|
* @LastEditTime: 2022-07-07 15:25:01
|
|
* @Description: file content
|
|
*/
|
|
import request from '@/utils/request.js';
|
|
export const detail = (refundOrderId) => {
|
|
return request({
|
|
url: `/payCenter/refundOrder/${refundOrderId}`,
|
|
method: 'get',
|
|
});
|
|
};
|
|
export const getOrderList = (params) => {
|
|
return request({
|
|
url: '/payCenter/refundOrder/page',
|
|
method: 'get',
|
|
params,
|
|
});
|
|
};
|