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.
23 lines
387 B
23 lines
387 B
import request from '@/sheep/request';
|
|
|
|
|
|
|
|
const orderApi = {
|
|
searchCart: (data) => {
|
|
return request({
|
|
url: `/share/ride-order/page?pageNo=${data.pageNo}&pageSize=${data.pageSize}&status=${data.status}`,
|
|
method: 'GET'
|
|
});
|
|
},
|
|
detailorder: (data) => {
|
|
return request({
|
|
url: 'share/ride-order/getList',
|
|
method: 'POST' ,
|
|
data
|
|
});
|
|
},
|
|
|
|
|
|
}
|
|
|
|
export default orderApi; |