fix: 修改注释,删除无用常量

This commit is contained in:
2025-04-22 10:35:19 +08:00
parent e533c08ef6
commit 6703e0c58c
2 changed files with 2 additions and 13 deletions

View File

@@ -9,14 +9,14 @@ export async function getOrderList(data: any) {
return requestClient.get<any>(`${prefix}list`, { params: data });
}
/**
* 分页查询用户列表
* 订单状态下拉
* @param data
*/
export async function getOrderStatusOption(data: any) {
return requestClient.get<any>(`${prefix}status-option`, { params: data });
}
/**
* 分页查询用户列表
* 统计金额
* @param data
*/
export async function saleAmountApi(data: any) {

View File

@@ -26,17 +26,6 @@ const [DrugGrid, DrugGridApi] = useVbenVxeGrid({
gridOptions: drugReconciliationTable,
});
const chartTabs = [
{
label: '诊所',
value: 'store',
},
{
label: '药品',
value: 'drug',
},
];
const activeTab = ref('store');
const statistics = ref();