|
|
@@ -374,7 +374,10 @@
|
|
|
min-width="120"
|
|
|
align="center"
|
|
|
>
|
|
|
- <template slot-scope="scope">
|
|
|
+ <template
|
|
|
+ v-if="scope.row.documentName.includes('送达回证')"
|
|
|
+ slot-scope="scope"
|
|
|
+ >
|
|
|
<!-- <el-button
|
|
|
:disabled="isViewMode"
|
|
|
type="text"
|
|
|
@@ -397,6 +400,17 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
+ <!-- 分页 -->
|
|
|
+ <el-pagination
|
|
|
+ style="margin: 20px 0"
|
|
|
+ :current-page.sync="auditDocumentPagination.page"
|
|
|
+ :page-sizes="[50, 100]"
|
|
|
+ :page-size.sync="auditDocumentPagination.pageSize"
|
|
|
+ layout="total, sizes, prev, pager, next, jumper"
|
|
|
+ :total="auditDocumentPagination.total"
|
|
|
+ @size-change="handleSizeChange"
|
|
|
+ @current-change="handleCurrentChange"
|
|
|
+ />
|
|
|
</div>
|
|
|
</el-tab-pane>
|
|
|
|
|
|
@@ -1046,7 +1060,7 @@
|
|
|
},
|
|
|
auditDocumentPagination: {
|
|
|
page: 1,
|
|
|
- pageSize: 10,
|
|
|
+ pageSize: 50,
|
|
|
total: 0,
|
|
|
},
|
|
|
unitList: [],
|
|
|
@@ -1886,7 +1900,7 @@
|
|
|
pageNum: this.auditDocumentPagination.page,
|
|
|
pageSize: this.auditDocumentPagination.pageSize,
|
|
|
projectId: this.currentTaskInfo.projectId,
|
|
|
- documentName: '',
|
|
|
+ // documentName: '',
|
|
|
permissionType: 1,
|
|
|
}).then((res) => {
|
|
|
this.formData.auditDocument = res.value.value.records
|
|
|
@@ -2377,6 +2391,19 @@
|
|
|
this.messageNoticePagination.currentPage = 1
|
|
|
this.loadMessageNotice()
|
|
|
},
|
|
|
+
|
|
|
+ // 监审文书分页 - 每页条数改变
|
|
|
+ handleSizeChange(size) {
|
|
|
+ this.auditDocumentPagination.pageSize = size
|
|
|
+ this.auditDocumentPagination.page = 1
|
|
|
+ this.loadAuditDocument()
|
|
|
+ },
|
|
|
+
|
|
|
+ // 监审文书分页 - 页码改变
|
|
|
+ handleCurrentChange(page) {
|
|
|
+ this.auditDocumentPagination.page = page
|
|
|
+ this.loadAuditDocument()
|
|
|
+ },
|
|
|
},
|
|
|
}
|
|
|
</script>
|