公告,活动,投诉接口对接完成

This commit is contained in:
Zy
2026-04-14 17:34:33 +08:00
parent 2701b02c59
commit 40f13be704
41 changed files with 2499 additions and 220 deletions

View File

@@ -221,7 +221,7 @@ const handleMain = async (row?: HouseRentalVO) => {
/** 删除按钮操作 */
const handleDelete = async (row?: HouseRentalVO) => {
const _ids = row?.id || ids.value;
await proxy?.$modal.confirm('是否确认删除房屋租赁管理编号为"' + _ids + '"的数据项').finally(() => (loading.value = false));
await proxy?.$modal.confirm('该信息删除后无法恢复,确定要删除吗').finally(() => (loading.value = false));
await delHouseRental(_ids);
proxy?.$modal.msgSuccess('删除成功');
await getList();