@@ -595,9 +595,10 @@ 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)
+ console.log('jsonData', jsonData)
this.archivesFiledata = jsonData
this.archivesFiledataLoading = false
}).catch(error => {
@@ -608,7 +609,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'
]
@@ -893,7 +894,6 @@ export default {
: this.parentInfo.parents_id
: this.parentInfo.id
}
- console.log('param', param)
FetchInitBorrowerListOrderNo(param)
.then(res => {
if (res && res.length > 0) {
diff --git a/src/views/archivesMIOD/filingCabinet/index.vue b/src/views/archivesMIOD/filingCabinet/index.vue
index 5cbd7c0..be1c736 100644
--- a/src/views/archivesMIOD/filingCabinet/index.vue
+++ b/src/views/archivesMIOD/filingCabinet/index.vue
@@ -141,7 +141,7 @@
v-loading="borrowerListLoading"
:data="borrowerList"
row-key="id"
- height="300px"
+ height="440px"
>
@@ -152,7 +152,11 @@