From f065a999ccb87b81ef9886dc6a8c91640be71075 Mon Sep 17 00:00:00 2001 From: xuhuajiao <13476289682@163.com> Date: Fri, 26 Jun 2026 09:40:52 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=AC=E6=96=87=E7=BC=96=E8=BE=91-=E5=B1=82?= =?UTF-8?q?=E4=BD=8D=E5=AD=97=E6=AE=B5=E6=B7=BB=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/archivesMIOD/miodLibrary/index.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/archivesMIOD/miodLibrary/index.vue b/src/views/archivesMIOD/miodLibrary/index.vue index a19a12b..95a0346 100644 --- a/src/views/archivesMIOD/miodLibrary/index.vue +++ b/src/views/archivesMIOD/miodLibrary/index.vue @@ -553,8 +553,8 @@ export default { } FetchInitDocumentDetailsList(params).then(data => { - // id,parents_id,reg_no,details_type,pass_location,read_type,tid,is_destroy,create_by,create_time,update_by,update_time - // id,公文id,登记号,文件类别(1.原文 2.复印件),传阅所在位置,传阅状态,tid,是否销毁,创建人,创建时间,更新人,更新时间 + // id,parents_id,reg_no,details_type,pass_location,folder_location,read_type,tid,is_destroy,create_by,create_time,update_by,update_time + // id,公文id,登记号,文件类别(1.原文 2.复印件),传阅所在位置,文件夹所在位置,传阅状态,tid,是否销毁,创建人,创建时间,更新人,更新时间 const jsonData = this.convertData(data) const fileOriginal = jsonData.filter(item => item.details_type === 1) console.log('jsonData', jsonData) @@ -567,7 +567,7 @@ export default { convertData(data) { return data.map(item => { const fieldNames = [ - 'id', 'parents_id', 'reg_no', 'details_type', 'pass_location', + 'id', 'parents_id', 'reg_no', 'details_type', 'pass_location', 'folder_location', 'read_type', 'tid', 'is_destroy', 'create_by', 'create_time', 'update_by', 'update_time' ]