|
|
|
@ -72,7 +72,7 @@ |
|
|
|
v-loading="archivesFiledataLoading" |
|
|
|
:data="archivesFiledata" |
|
|
|
style="min-width: 100%;" |
|
|
|
height="calc(100vh - 796px)" |
|
|
|
height="calc(100vh - 786px)" |
|
|
|
> |
|
|
|
<el-table-column prop="reg_no" label="登记号" show-overflow-tooltip min-width="140" /> |
|
|
|
<el-table-column prop="details_type" label="类型" min-width="85"> |
|
|
|
@ -96,7 +96,7 @@ |
|
|
|
<span v-else class="row-state defalut-state">未绑定</span> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column prop="pass_cell" label="所在层位" min-width="120" /> |
|
|
|
<el-table-column prop="folder_location" label="所在层位" min-width="120" /> |
|
|
|
<el-table-column v-if="!isMidoRecord" prop="update_time" label="操作" min-width="140"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<div style="display: inline-block;"> |
|
|
|
@ -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) { |
|
|
|
|