diff --git a/src/views/home.vue b/src/views/home.vue
index 354f5f6..5269dcb 100644
--- a/src/views/home.vue
+++ b/src/views/home.vue
@@ -16,7 +16,7 @@
更多流程
-->
-
+
[{{ scope.row.reg_no }}] - {{ scope.row.borrow_name }} - {{ scope.row.maintitle }}
@@ -55,7 +55,7 @@
-
+
[{{ scope.row.reg_no }}] - {{ scope.row.maintitle }}
@@ -134,6 +134,8 @@
+
+
@@ -146,6 +148,7 @@ import typePie from '@/views/components/echarts/typePie.vue'
import { FetchInitStatisBase, FetchDocumentTypeByTime, FetchDocumentByDocDepartment, FetchHomeBorrowLog, FetchHomeRemindHandle } from '@/api/system/documentArchives'
import { FetchSystemInfo } from '@/api/home/cpu/index'
import { mapGetters } from 'vuex'
+import MidoArchivesInfo from '@/views/archivesMIOD/miodLibrary/module/detail'
export default {
name: 'Dashboard',
@@ -153,7 +156,8 @@ export default {
PanelGroup,
// lendAcross,
catePie,
- typePie
+ typePie,
+ MidoArchivesInfo
// serverProgress
},
data() {
@@ -186,7 +190,9 @@ export default {
memPercentage: 0,
sysFilesPercentage: 0
},
- remindData: []
+ remindData: [],
+ parentInfo: null,
+ pageType: 'miodRecord'
}
},
computed: {
@@ -244,11 +250,22 @@ export default {
return {
reg_no: item[0],
maintitle: item[1],
- latest_time: item[2]
+ latest_time: item[2],
+ document_id: item[3],
+ parents_id: item[4]
}
})
})
},
+ tableDoubleClick(row) {
+ console.log('row', row)
+ this.parentInfo = row
+ this.$nextTick(() => {
+ this.$refs.archivesInfo.archivesInfoVisible = true
+ this.$refs.archivesInfo.archivesTabIndex = 0
+ this.$refs.archivesInfo.getDetial()
+ })
+ },
getSystemInfo() {
FetchSystemInfo().then(res => {
console.log('res', res)