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.
14 lines
481 B
14 lines
481 B
import http from '../utils/http/index.js'
|
|
|
|
/**
|
|
* 获取客户订单列表
|
|
* @param {object} data 获取验证码参数
|
|
* @returns {Promise<object[]>}
|
|
* swagger: http://api-ops-yyt-test.qniao.cn//base-paper-trading/swagger-ui/index.html?urls.primaryName=CustomerApi#/%E5%8E%9F%E7%BA%B8%E8%AE%A2%E5%8D%95/getCustomerOrderListPageUsingGET
|
|
*/
|
|
export const getOrderList = (data) => {
|
|
return http.get({
|
|
url: '/base-paper-trading/get/customer/order/list/page',
|
|
data
|
|
})
|
|
}
|