Merge branch 'master' of http://47.109.37.87:3000/by2025/admin-vben5
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
This commit is contained in:
@@ -10,7 +10,7 @@ import { requestClient } from '#/api/request';
|
||||
* @returns 绿植租赁-订单收费列表
|
||||
*/
|
||||
export function orderChargeList(params?: OrderChargeQuery) {
|
||||
return requestClient.get<PageResult<OrderChargeVO>>('/system/orderCharge/list', { params });
|
||||
return requestClient.get<PageResult<OrderChargeVO>>('/property/orderCharge/list', { params });
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -19,7 +19,7 @@ export function orderChargeList(params?: OrderChargeQuery) {
|
||||
* @returns 绿植租赁-订单收费列表
|
||||
*/
|
||||
export function orderChargeExport(params?: OrderChargeQuery) {
|
||||
return commonExport('/system/orderCharge/export', params ?? {});
|
||||
return commonExport('/property/orderCharge/export', params ?? {});
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -28,7 +28,7 @@ export function orderChargeExport(params?: OrderChargeQuery) {
|
||||
* @returns 绿植租赁-订单收费详情
|
||||
*/
|
||||
export function orderChargeInfo(id: ID) {
|
||||
return requestClient.get<OrderChargeVO>(`/system/orderCharge/${id}`);
|
||||
return requestClient.get<OrderChargeVO>(`/property/orderCharge/${id}`);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -37,7 +37,7 @@ export function orderChargeInfo(id: ID) {
|
||||
* @returns void
|
||||
*/
|
||||
export function orderChargeAdd(data: OrderChargeForm) {
|
||||
return requestClient.postWithMsg<void>('/system/orderCharge', data);
|
||||
return requestClient.postWithMsg<void>('/property/orderCharge', data);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -46,7 +46,7 @@ export function orderChargeAdd(data: OrderChargeForm) {
|
||||
* @returns void
|
||||
*/
|
||||
export function orderChargeUpdate(data: OrderChargeForm) {
|
||||
return requestClient.putWithMsg<void>('/system/orderCharge', data);
|
||||
return requestClient.putWithMsg<void>('/property/orderCharge', data);
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -55,5 +55,5 @@ export function orderChargeUpdate(data: OrderChargeForm) {
|
||||
* @returns void
|
||||
*/
|
||||
export function orderChargeRemove(id: ID | IDS) {
|
||||
return requestClient.deleteWithMsg<void>(`/system/orderCharge/${id}`);
|
||||
return requestClient.deleteWithMsg<void>(`/property/orderCharge/${id}`);
|
||||
}
|
||||
|
Reference in New Issue
Block a user