style: 代码统一风格格式化

Former-commit-id: 5d0a75e41127c57c663eb2617b1ce66d039f4c29
This commit is contained in:
郝先瑞
2022-05-08 13:06:12 +08:00
parent 77a71db326
commit eab11687aa
137 changed files with 10635 additions and 10635 deletions

View File

@@ -8,13 +8,13 @@ import { AxiosPromise } from 'axios';
* @param queryParams
*/
export function listOrderPages(
queryParams: OrderQueryParam
queryParams: OrderQueryParam
): AxiosPromise<OrderPageResult> {
return request({
url: '/mall-oms/api/v1/orders',
method: 'get',
params: queryParams
});
return request({
url: '/mall-oms/api/v1/orders',
method: 'get',
params: queryParams
});
}
/**
@@ -23,8 +23,8 @@ export function listOrderPages(
* @param orderId
*/
export function getOrderDetail(orderId: number) {
return request({
url: '/mall-oms/api/v1/orders/' + orderId,
method: 'get'
});
return request({
url: '/mall-oms/api/v1/orders/' + orderId,
method: 'get'
});
}