You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
281 lines
9.9 KiB
281 lines
9.9 KiB
<template>
|
|
<div>
|
|
<CollectHeader ref="collectHeaderRef" :is-title-type="isTitleType" :selected-category="selectedCategory" :arc-id="arcId" :selections="selections" :test="test" :is-recycle="isRecycle" />
|
|
<div class="collect-table">
|
|
<el-table
|
|
ref="table"
|
|
v-loading="getTableDisplayFieldsLoading"
|
|
class="archives-table"
|
|
:data="anjuanData"
|
|
highlight-current-row
|
|
style="width: 100%;"
|
|
: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" :reserve-selection="true" width="55" align="center" />
|
|
<el-table-column type="index" label="序号" width="55" align="center" />
|
|
<el-table-column :label="selectedCategory.arrangeType === 1 || (selectedCategory.arrangeType !==1 ) ? '原文':'卷内'" 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-column v-if="!isRecycle && selectedCategory.arrangeType === 1" label="实体" width="88" align="center" :fixed="parentsData.fixedStatusBar ? false : 'right' ">
|
|
<!-- slot-scope="scope" -->
|
|
<template>
|
|
<span class="row-state row-physical state-active">有</span>
|
|
<!-- <span :class="['row-state', 'row-physical', scope.row.tid ? 'state-active' : '' ]">{{ scope.row.tid ? '有': '无' }}</span> -->
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column v-if="!isRecycle && selectedCategory.arrangeType === 1" label="标签" width="88" align="center" :fixed="parentsData.fixedStatusBar ? false : 'right' ">
|
|
<template>
|
|
<span class="row-state row-binding state-active">未绑</span>
|
|
<!-- 未绑 / 已绑 -->
|
|
<!-- <span :class="['row-state', 'row-binding', scope.row.tid ? 'state-active' : '' ]">{{ scope.row.tid ? '已绑': '未绑' }}</span> -->
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column v-if="!isRecycle" label="装盒" width="88" align="center" :fixed="parentsData.fixedStatusBar ? false : 'right' ">
|
|
<!-- state-active 已装/已入/已借/已绑 -->
|
|
<template>
|
|
<!-- 未装 / 已装 -->
|
|
<span class="row-state row-packing state-active">已装</span>
|
|
<!-- <span :class="['row-state', 'row-packing', scope.row.case_no ? 'state-active' : '' ]">{{ scope.row.case_no ? '已装': '未装' }}</span> -->
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column v-if="!isRecycle" label="入库" width="88" align="center" :fixed="parentsData.fixedStatusBar ? false : 'right' ">
|
|
<template>
|
|
<span class="row-state row-warehousing state-active">已入</span>
|
|
<!-- is_storage 为空的情况下即没装盒 / 0 未入 / 1 待入 / 2 已入 / 3 待出-->
|
|
<!-- <span :class="['row-state', 'row-warehousing', (storageTxt[scope.$index] === '已入' )? 'state-active' : '' ]">{{ storageTxt[scope.$index] }}</span> -->
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column v-if="!isRecycle && selectedCategory.arrangeType === 1" label="借阅" width="88" align="center" :fixed="parentsData.fixedStatusBar ? false : 'right' ">
|
|
<template>
|
|
<span class="row-state row-lending state-active">已借</span>
|
|
<!-- is_borrow 4 已归还 / 为空 - 未加入待借列表 - 在库 / 2 待借阅(在待借列表/借出确认列表) - 待借 / 1待登记 - 不可借-用“—” 表示 / 3 待归还 - 已借 -->
|
|
<!-- <span :class="['row-state', 'row-lending', (borrowTxt[scope.$index] === '已借' )? 'state-active' : '' ]">{{ borrowTxt[scope.$index] }}</span> -->
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
<!--分页组件-->
|
|
<el-pagination
|
|
v-if="anjuanData.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" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { header, form } from '@crud/crud'
|
|
import { manageLibraryCrud } from '../mixins/index'
|
|
import ArchivesInfo from '../module/archivesInfo/index'
|
|
import CollectHeader from '../module/collectHeader'
|
|
export default {
|
|
name: 'Sorted',
|
|
components: { ArchivesInfo, CollectHeader },
|
|
mixins: [
|
|
header(),
|
|
form({}),
|
|
manageLibraryCrud
|
|
],
|
|
props: {
|
|
isTitleType: {
|
|
type: Number,
|
|
default: 3
|
|
},
|
|
selectedCategory: {
|
|
type: Object,
|
|
default: function() {
|
|
return {}
|
|
}
|
|
},
|
|
test: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
isRecycle: {
|
|
type: Boolean,
|
|
default: false
|
|
},
|
|
smartQuery: {
|
|
type: Object,
|
|
default: function() {
|
|
return {}
|
|
}
|
|
}
|
|
},
|
|
inject: ['parentsData'],
|
|
data() {
|
|
return {
|
|
categoryId: '',
|
|
arcId: '',
|
|
title: '',
|
|
selections: [],
|
|
yearData: [],
|
|
parentId: null
|
|
}
|
|
},
|
|
watch: {
|
|
selectedCategory: function(newValue, oldValue) {
|
|
this.selections = []
|
|
this.$refs.table.clearSelection()
|
|
if (newValue.arrangeType !== 1) {
|
|
this.title = '案卷'
|
|
} else {
|
|
this.title = '文件'
|
|
}
|
|
},
|
|
tableDisplayFields(val) {
|
|
this.doLayout()
|
|
}
|
|
},
|
|
created() {
|
|
},
|
|
mounted() {
|
|
},
|
|
methods: {
|
|
getCommonData(categoryLevel, parentId, type) {
|
|
this.getViewTable(categoryLevel, parentId, type)
|
|
},
|
|
rowKey(row) {
|
|
return row.id
|
|
},
|
|
sendYearDataToParent() {
|
|
this.$parent.$parent.$emit('myYearEvent', this.yearData)
|
|
},
|
|
openJuannei(data, parentId) {
|
|
// this.$emit('openJuannei', '这是来自案卷的通知')
|
|
if (this.selectedCategory.arrangeType === 3) {
|
|
this.$parent.$parent.$parent.$emit('openJuannei', data, parentId)
|
|
} else {
|
|
this.$parent.$parent.$emit('openJuannei', data, parentId)
|
|
}
|
|
},
|
|
// table选中加上选中状态
|
|
tableRowClassName({ 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(() => {
|
|
if (this.selectedCategory.arrangeType !== 1) {
|
|
this.$refs.archivesInfo.isHasFile = false
|
|
this.$refs.archivesInfo.detailTitle = '案卷详情'
|
|
this.$refs.archivesInfo.getDetial(2, row.id)
|
|
} else {
|
|
this.$refs.archivesInfo.isHasFile = true
|
|
this.$refs.archivesInfo.detailTitle = '文件详情'
|
|
this.$refs.archivesInfo.getDetial(3, row.id)
|
|
}
|
|
this.$refs.archivesInfo.archivesInfoVisible = true
|
|
this.$refs.archivesInfo.archivesTabIndex = 0
|
|
})
|
|
},
|
|
// 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)
|
|
}
|
|
if (this.selectedCategory.arrangeType === 1) {
|
|
this.title = '文件'
|
|
} else {
|
|
this.title = '案卷'
|
|
}
|
|
this.timer = setTimeout(() => {
|
|
this.parentId = row.id
|
|
this.openJuannei('所属' + this.title + ':' + 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
|
|
if (this.selectedCategory.arrangeType === 3) {
|
|
this.getViewTable(2, this.parentsData.parentsProjectId)
|
|
} else {
|
|
this.getViewTable(2, null)
|
|
}
|
|
},
|
|
handleCurrentPage(val) {
|
|
this.page.page = val
|
|
if (this.selectedCategory.arrangeType === 3) {
|
|
this.getViewTable(2, this.parentsData.parentsProjectId)
|
|
} else {
|
|
this.getViewTable(2, null)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang='scss' scoped>
|
|
@mixin management-fixed-style{
|
|
[data-theme="dark"] & {
|
|
background-color: #031435 !important;
|
|
-webkit-box-shadow: -5px 5px 10px 1px rgba(15,164,222,.16);
|
|
box-shadow: -5px 5px 10px 1px rgba(15,164,222,.16);
|
|
}
|
|
[data-theme="light"] & {
|
|
background-color: #fff;
|
|
}
|
|
}
|
|
.el-table {
|
|
::v-deep .el-table__fixed-right {
|
|
@include management-fixed-style;
|
|
}
|
|
}
|
|
</style>
|