|
@@ -23,7 +23,7 @@
|
|
|
<template slot-scope="scope">{{ scope.row.gmtCreated }}</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
- <div class="page">
|
|
|
+ <div v-if="totalSize !== 0" class="page">
|
|
|
<el-pagination
|
|
|
:total="totalSize"
|
|
|
background
|
|
@@ -42,7 +42,6 @@ import { parseTime } from '@/utils/index'
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
|
- multipleSelection: [],
|
|
|
delect: true,
|
|
|
input: ''
|
|
|
}
|
|
@@ -78,32 +77,17 @@ export default {
|
|
|
})
|
|
|
})
|
|
|
},
|
|
|
- handleSelectionChange(val) {
|
|
|
- this.multipleSelection = val
|
|
|
- console.log(val.length)
|
|
|
- if (val.length === 0) {
|
|
|
- this.delect = true
|
|
|
- } else {
|
|
|
- this.delect = false
|
|
|
- }
|
|
|
- },
|
|
|
+ // 跳转详情
|
|
|
detail(row, event) {
|
|
|
const taskId = row.id
|
|
|
const title = row.title
|
|
|
- // const name = event.target.classList[0]
|
|
|
- // if (row.taskJoinUser.fileStatus === 'CLOSE') {
|
|
|
- // return false
|
|
|
- // }
|
|
|
- // if (name === 'el-checkbox__inner' || name === 'el-checkbox__original') {
|
|
|
- // return false
|
|
|
- // }
|
|
|
this.$router.push({ path: `/fileDetail/fileDetail`, query: { 'taskId': taskId, 'title': title }})
|
|
|
},
|
|
|
handleSizeChange(page) {
|
|
|
console.log(page)
|
|
|
},
|
|
|
handleCurrentChange(page) {
|
|
|
- this.$store.dispatch('JoinUser', page).then((res) => {
|
|
|
+ this.$store.dispatch('TaskList', page).then((res) => {
|
|
|
console.log(res.list)
|
|
|
// 格式化时间
|
|
|
res.list.forEach((item, index) => {
|
|
@@ -111,34 +95,6 @@ export default {
|
|
|
})
|
|
|
})
|
|
|
}
|
|
|
- // deleteList() {
|
|
|
- // const joinUser = []
|
|
|
- // this.multipleSelection.forEach(item => {
|
|
|
- // joinUser.push(item.taskJoinUser.id)
|
|
|
- // })
|
|
|
- // deleteList(joinUser).then(res => {
|
|
|
- // this.joinUserList.forEach((item, index) => {
|
|
|
- // joinUser.forEach(id => {
|
|
|
- // if (item.taskJoinUser.id === id) {
|
|
|
- // this.joinUserList[index].taskJoinUser.fileStatus = 'CLOSE'
|
|
|
- // }
|
|
|
- // })
|
|
|
- // })
|
|
|
- // })
|
|
|
- // },
|
|
|
- // 更改删除的样式
|
|
|
- // tableRowClassName(row) {
|
|
|
- // if (row.taskJoinUser.fileStatus === 'CLOSE') {
|
|
|
- // return 'warning-row'
|
|
|
- // }
|
|
|
- // return ''
|
|
|
- // },
|
|
|
- // select(row) {
|
|
|
- // if (row.taskJoinUser.fileStatus === 'CLOSE') {
|
|
|
- // return false
|
|
|
- // }
|
|
|
- // return true
|
|
|
- // }
|
|
|
}
|
|
|
}
|
|
|
</script>
|