/*
|
* @Author: zxq
|
* @Date: 2022-01-04 17:26:04
|
* @LastEditors: zhaoxiaoqiang 287285524@qq.com
|
* @LastEditTime: 2023-09-05 16:12:38
|
* @Description: Description
|
* @FilePath: \comn_plat\src\api\order.js
|
*/
|
// 列表接口
|
import request from '@/utils/request';
|
// 订单导出
|
export function orderBaseExport(params) {
|
return request({
|
url: '/qyp/order/orderBaseExport',
|
method: 'get',
|
params
|
})
|
}
|
// 管理员订单导出
|
export function orderExport(params) {
|
return request({
|
url: '/qyp/order/orderExport',
|
method: 'get',
|
params
|
})
|
}
|
// 订单详情
|
export function orderDtl(data) {
|
return request({
|
url: '/qyp/order/orderDtl',
|
method: 'post',
|
data
|
})
|
}
|
// 初始化订单搜索条件
|
export function orderInit(data) {
|
return request({
|
url: '/qyp/order/orderInit',
|
method: 'post',
|
data
|
})
|
}
|