Browse Source

bug修复

master
xuhuajiao 2 years ago
parent
commit
726dcd5708
  1. 7
      src/views/archivesManage/archivesList/index.vue
  2. 2
      src/views/home.vue

7
src/views/archivesManage/archivesList/index.vue

@ -460,8 +460,8 @@ export default {
if (this.$refs.file) {
if (localStorage.getItem('noClick')) {
this.$refs.file.$refs.table.clearSelection()
this.clearFile()
}
this.clearFile()
}
this.$refs.project.getTableDisplayFields(0)
if (this.selectedCategory.children.length !== 0) {
@ -486,6 +486,9 @@ export default {
if (this.$refs.anjuan.$refs.table.selection.length !== 0) {
this.$refs.anjuan.selections = this.$refs.anjuan.$refs.table.selection
this.$refs.file.getTableList()
if (this.$refs.file.$refs.table.selection.length !== 0) {
this.$refs.file.selections = this.$refs.file.$refs.table.selection
}
this.isAnjuan = false
} else {
this.$refs.anjuan.anjuanData = []
@ -509,8 +512,8 @@ export default {
if (this.$refs.file) {
if (localStorage.getItem('noClick')) {
this.$refs.file.$refs.table.clearSelection()
this.clearFile()
}
this.clearFile()
}
this.$refs.anjuan.getTableDisplayFields(1)
if (this.selectedCategory.children.length !== 0) {

2
src/views/home.vue

@ -64,7 +64,7 @@
<ul v-if="waitBorrowerData.length !== 0" class="todo-list">
<li v-for="(item,index) in waitBorrowerData" :key="index">
<el-tooltip class="item" effect="dark" :content="item.title" :enterable="false" placement="top">
<p>温馨提示{{ item.title }}</p>
<p>{{ item.title }}</p>
</el-tooltip>
<span>{{ item.update_time | parseTime }}</span>
</li>

Loading…
Cancel
Save