diff --git a/src/api/modules/goverment.ts b/src/api/modules/goverment.ts index 292317c..160d0de 100644 --- a/src/api/modules/goverment.ts +++ b/src/api/modules/goverment.ts @@ -436,3 +436,13 @@ export const fileShowAdd = (params: any) => { export const fileShowDelete = (params: any) => { return http.post(BASEURL + `/gov/engineeringAnnex/delete`, params); }; + +// 项目列表管理--根据ID查询附件文件列表 +export const annexFileList = (params: any) => { + return http.post(BASEURL + `/gov/engineeringAnnex/queryById`, params); +}; + +// 项目列表管理--保存附件文件列表 +export const annexFileSave = (params: any) => { + return http.post(BASEURL + `/gov/engineeringAnnex/batchUpdateFile`, params); +}; diff --git a/src/views/goverment/huizhou/projectList/components/fileListDialog/index.vue b/src/views/goverment/huizhou/projectList/components/fileListDialog/index.vue index ba4d083..8a7a744 100644 --- a/src/views/goverment/huizhou/projectList/components/fileListDialog/index.vue +++ b/src/views/goverment/huizhou/projectList/components/fileListDialog/index.vue @@ -1,6 +1,6 @@ - +