|
@@ -86,8 +86,32 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
- <div class="hc-gather-card-box">
|
|
|
-
|
|
|
+ <div class="hc-gather-card-box" :class="tableAllShow?'file-table':''">
|
|
|
+ <HcCardItem ui="hc-card-item-main">
|
|
|
+ <HcTable ref="tableRef" :column="tableColumn" :datas="tableData" :loading="tableLoading" isCurrentRow isCheck @selection-change="tableSelection" @row-click="tableRowClick" :ui="hoverHand?'hover-hand':''">
|
|
|
+ <template #action="{row,index}">
|
|
|
+ <el-button type="primary" size="small" @click.stop="consultFileClick">查阅案卷</el-button>
|
|
|
+ </template>
|
|
|
+ </HcTable>
|
|
|
+ <template #action>
|
|
|
+ <HcPages :pages="searchForm" @change="pageChange"/>
|
|
|
+ </template>
|
|
|
+ </HcCardItem>
|
|
|
+ <HcCardItem ui="hc-card-item-file" title="卷内文件">
|
|
|
+ <template #extra>
|
|
|
+ <div class="hc-icon-close text-hover" @click="tableFileCloseClick">
|
|
|
+ <HcIcon name="close"/>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ <HcTable ref="tableFileRef" :column="tableFileColumn" :datas="tableFileData" :loading="tableFileLoading" isCheck @selection-change="tableFileSelection">
|
|
|
+ <template #action="{row,index}">
|
|
|
+ <el-button type="primary" size="small" @click.stop="consultFileClick">查阅文件</el-button>
|
|
|
+ </template>
|
|
|
+ </HcTable>
|
|
|
+ <template #action>
|
|
|
+ <HcPages :pages="searchForm" @change="pageChange"/>
|
|
|
+ </template>
|
|
|
+ </HcCardItem>
|
|
|
</div>
|
|
|
|
|
|
<!--div class="hc-c-card-box" :class="tableAllShow?'all':''">
|