|                                                              |  | // 订单相关接口
const api = {	// 我的订单-查询订单列表
	queryOrderList: {		url: '/order/queryOrderList',		method: 'GET',	},	// 我的订单-查询订单详情
	queryOrderById: {		url: '/order/queryOrderById',		method: 'GET',	},	// 我的订单-创建订单
	createOrder: {		url: '/order/createOrder',		method: 'POST',		auth: true, 		limit : 500,		showLoading : true,	},	// 我的订单-修改订单
	updateOrder: {		url: '/order/updateOrder',		method: 'POST',		auth: true, 		limit : 500,		showLoading : true,	},	// 我的订单-支付订单
	payOrder: {		url: '/order/payOrder',		method: 'POST',		auth: true, 		limit : 500,		showLoading : true,	},	// 我的订单-查询出行人列表
	queryTouristList: {		url: '/order/queryTouristList',		method: 'GET',		auth: true, 	},	// 我的订单-查询出行人详情
	queryTouristById: {		url: '/order/queryTouristById',		method: 'GET',		auth: true, 	},	// 我的订单-添加出行人
	addTourist: {		url: '/order/addTourist',		method: 'POST',		auth: true, 		limit : 500,		showLoading : true,	},	// 我的订单-修改出行人信息
	updateTourist: {		url: '/order/updateTourist',		method: 'POST',		auth: true, 		limit : 500,		showLoading : true,	},}
export default api
 |