feat: 本次提交更新内容如下

流量分发的功能构建完成
This commit is contained in:
笔记本里的永平
2025-07-10 17:05:13 +08:00
parent c87378fc66
commit cb253a568c
3 changed files with 86 additions and 71 deletions

View File

@@ -204,7 +204,7 @@ export const updateDistributionRule = async (id: string, params: any): Promise<A
* @returns 删除结果
*/
export const deleteDistributionRule = async (id: string): Promise<ApiResponse<any>> => {
return del<ApiResponse<any>>(`/v1/workbench/delete/${id}`);
return del<ApiResponse<any>>(`/v1/workbench/delete?id=${id}`);
};
/**