完成访客搭建,完善之前审核界面

This commit is contained in:
Zy
2026-04-13 18:10:23 +08:00
parent d957d1a039
commit 7f152c45f5
34 changed files with 1732 additions and 1208 deletions

View File

@@ -61,3 +61,15 @@ export const delCar = (id: string | number | Array<string | number>) => {
method: 'delete'
});
};
/**
* 删除车辆图片
* @param id
*/
export const uploadCar = (formdata: FormData) => {
return request({
url: '/car/uploadImage',
method: 'POST',
data: formdata
});
};