This commit is contained in:
2025-07-28 18:46:48 +08:00
parent 09c8cf2333
commit ab8fb27e23
5 changed files with 20 additions and 13 deletions

View File

@ -253,16 +253,6 @@ const handleDelete = async (row?: EnterRoadVO) => {
await getList();
};
/** 导出按钮操作 */
const handleExport = () => {
proxy?.download(
'land/enterRoad/export',
{
...queryParams.value
},
`enterRoad_${new Date().getTime()}.xlsx`
);
};
//监听项目id刷新数据
const listeningProject = watch(
() => currentProject.value.id,