|
|
<template> <el-drawer :with-header="false" :visible.sync="juanneiDrawer" :modal="false" :wrapper-closable="false" :show-close="false" direction="rtl" :size="selectedCategory.arrangeType === 2 ? '90%' :'80%'" > <CollectHeader ref="collectHeaderRef" :is-title-type="isTitleType" :selected-category="selectedCategory" :selections="selections" :test="test" :is-recycle="isRecycle" /> <div class="collect-table"> <el-table ref="table" v-loading="crud.loading || getTableDisplayFieldsLoading" class="archives-table" :data="junneiData" highlight-current-row style="width: 100%;" height="calc(100vh - 418px)" :row-class-name="tableRowClassName" :row-key="rowKey" @select-all="selectAll" @selection-change="crud.selectionChangeHandler" @row-click="clickRowHandler" @cell-dblclick="tableDoubleClick" @select="handleCurrentChange" > <el-table-column type="selection" width="55" :reserve-selection="true" align="center" /> <el-table-column type="index" label="序号" width="55" align="center" /> <el-table-column label="原文" prop="child" width="55" align="center"> <template slot-scope="scope"> {{ scope.row.child === '' ? 0 : scope.row.child }} </template> </el-table-column> <el-table-column v-for="field in tableDisplayFields" :key="field.id" :label="field.fieldCnName" :align="field.displayformatType" :width="field.displayLength" show-overflow-tooltip> <template slot="header"> <el-tooltip class="item" effect="dark" :content="field.fieldCnName" placement="top-start" > <span>{{ field.fieldCnName }}</span> </el-tooltip> </template> <template slot-scope="scope"> {{ scope.row[field.fieldName] }} </template> </el-table-column> </el-table> <!--分页组件--> <el-pagination v-if="junneiData.length !== 0" :current-page="page.page" :total="page.total" :page-size="page.size" :pager-count="5" layout="total, prev, pager, next, sizes" @size-change="handleSizeChange" @current-change="handleCurrentPage" /> </div> <!-- 档案详情 --> <ArchivesInfo ref="archivesInfo" :selected-category="selectedCategory" :arc-id="arcId" :is-title-type="isTitleType" /> <span class="closed-btn" @click="closeDrawer" /> </el-drawer> </template>
<script> import { collectionLibraryCrud } from '../mixins/index' import { header, form } from '@crud/crud' import CollectHeader from '../module/collectHeader.vue' import ArchivesInfo from '../module/archivesInfo/index' export default { name: 'Juannei', components: { CollectHeader, ArchivesInfo }, mixins: [ header(), form({}), collectionLibraryCrud ], props: { selectedCategory: { type: Object, default: function() { return {} } }, isRecycle: { type: Boolean, default: false }, smartQuery: { type: Object, default: function() { return {} } } }, inject: ['parentsData'], data() { return { isTitleType: 4, juanneiDrawer: false, categoryId: '', arcId: '', test: '', selections: [], parentId: null } }, watch: { selectedCategory: function(newValue, oldValue) { }, tableDisplayFields(val) { // this.doLayout()
} }, created() { }, mounted() { }, methods: { getCommonData(categoryLevel, parentId, type) { this.getViewTable(categoryLevel, parentId, type) }, openFile(data, parentId) { // this.$emit('openFile', '这是来自卷内的通知')
this.$emit('openFile', data, parentId) }, closeDrawer() { this.juanneiDrawer = false this.$parent.parentsAnjuanId = null }, rowKey(row) { return row.id }, // table选中加上选中状态
tableRowClassName({ row, rowIndex }) { // console.log('添加类名', row, rowIndex)
let color = '' this.selections.forEach(item => { if (item.id === row.id) { color = 'rowStyle' } }) return color }, // table - 全选
selectAll(val) { this.selections = val }, // table - 双击查看详情
tableDoubleClick(row) { if (this.timer) { clearTimeout(this.timer) } this.arcId = row.id this.$nextTick(() => { this.$refs.archivesInfo.isHasFile = true this.$refs.archivesInfo.isFourTest = true this.$refs.archivesInfo.detailTitle = '卷内详情' this.$refs.archivesInfo.archivesInfoVisible = true this.$refs.archivesInfo.archivesTabIndex = 0 this.$refs.archivesInfo.getDetial(3, row.id) }) }, // table - 当前选中得row
clickRowHandler(row) { this.parentsData.smartQuery = { 'retention': null, 'security_class': null, 'doc_type': null, 'medium_type': null, 'archive_year': null, 'fonds_no': null } if (this.timer) { clearTimeout(this.timer) } this.timer = setTimeout(() => { this.parentId = row.id this.openFile('所属卷内:' + row.archive_no, this.parentId) }, 300) this.selections = this.crud.selections }, // 触发单选
handleCurrentChange(selection, row) { this.selections = selection }, handleSizeChange(size) { this.page.size = size this.page.page = 1 this.getViewTable(3, this.parentsData.parentsAnjuanId) }, handleCurrentPage(val) { this.page.page = val this.getViewTable(3, this.parentsData.parentsAnjuanId) } } } </script>
<style lang='scss' scoped> @import "~@/assets/styles/collect-reorganizi.scss"; </style>
|