|
@@ -140,7 +140,7 @@
|
|
<span>密</span>
|
|
<span>密</span>
|
|
<span class="ml-7">级:</span>
|
|
<span class="ml-7">级:</span>
|
|
</div>
|
|
</div>
|
|
- <div class="content">{{ fileInfo.secretLevelValueame }}</div>
|
|
|
|
|
|
+ <div class="content">{{ fileInfo.secretLevelValue }}</div>
|
|
</div>
|
|
</div>
|
|
<div class="hc-info-text-item">
|
|
<div class="hc-info-text-item">
|
|
<div class="title">保管期限:</div>
|
|
<div class="title">保管期限:</div>
|
|
@@ -152,7 +152,8 @@
|
|
</div>
|
|
</div>
|
|
<div class="hc-info-text-item">
|
|
<div class="hc-info-text-item">
|
|
<div class="title">起止日期:</div>
|
|
<div class="title">起止日期:</div>
|
|
- <div class="content">{{ fileInfo.endDate+"~"+ fileInfo.startDate}}</div>
|
|
|
|
|
|
+ <div class="content" v-if="fileInfo.endDate!==''||fileInfo.startDate!==''">{{ fileInfo.endDate+"~"+ fileInfo.startDate}}</div>
|
|
|
|
+ <div class="content" v-else></div>
|
|
</div>
|
|
</div>
|
|
<div class="hc-info-text-item">
|
|
<div class="hc-info-text-item">
|
|
<div class="title">立卷单位:</div>
|
|
<div class="title">立卷单位:</div>
|
|
@@ -578,7 +579,8 @@ const tableRowClick = ({row}) => {
|
|
cscTableData1.value=getArrValue( row['approvalFileList'])
|
|
cscTableData1.value=getArrValue( row['approvalFileList'])
|
|
InsearchForm.value.total=row['approvalFileList'].length
|
|
InsearchForm.value.total=row['approvalFileList'].length
|
|
fileInfo.value=row
|
|
fileInfo.value=row
|
|
- fileInfo.value.pageN=row['approvalFileList'].length
|
|
|
|
|
|
+ fileInfo.value.pageN=row['approvalFileList'].length||0
|
|
|
|
+
|
|
|
|
|
|
}
|
|
}
|
|
const tableFileCloseClick = () => {
|
|
const tableFileCloseClick = () => {
|
|
@@ -596,6 +598,7 @@ const consultFileClick = (row,type) => {
|
|
if(type===1){
|
|
if(type===1){
|
|
cscTableData1.value=row.approvalFileList
|
|
cscTableData1.value=row.approvalFileList
|
|
fileInfo.value=row
|
|
fileInfo.value=row
|
|
|
|
+ fileInfo.value.pageN=row['approvalFileList'].length||0
|
|
}else if(type==2){
|
|
}else if(type==2){
|
|
checkId.value=row.id
|
|
checkId.value=row.id
|
|
pdfUrl.value=row.pdfFileUrl
|
|
pdfUrl.value=row.pdfFileUrl
|
|
@@ -613,7 +616,8 @@ const fileInfo=ref({
|
|
secretLevelValue:'',
|
|
secretLevelValue:'',
|
|
filePage:'',
|
|
filePage:'',
|
|
unit:'',
|
|
unit:'',
|
|
- time:''
|
|
|
|
|
|
+ time:'',
|
|
|
|
+ pageN:0,
|
|
})//案卷信息
|
|
})//案卷信息
|
|
const checkId=ref('')
|
|
const checkId=ref('')
|
|
const changePdf=(row)=>{
|
|
const changePdf=(row)=>{
|