diff --git a/src/views/task/list.vue b/src/views/task/list.vue index 96c5cee..63be94a 100644 --- a/src/views/task/list.vue +++ b/src/views/task/list.vue @@ -32,7 +32,7 @@ - + @@ -233,7 +233,7 @@ import Utils from '../../utils/contact.js' import { getOwnList, terminateRenwu, completeRenwuFn } from '@/api/renwu' import { cancelRenwuFn } from '@/api/common' import Enclosure from '@/views/common/Enclosure' -import {mapGetters} from 'vuex' +import { mapGetters } from 'vuex' export default { name: 'MyTask', components: { Sticky, Pagination, SliceUpload, Enclosure }, @@ -294,18 +294,20 @@ export default { }, currentRenwuId: 0, dialogEnclosureVisible: false, - isSysUser: this.$store.getters.clientType === 'System' + isSysUser: this.$store.getters.clientType === 'System', + searchNblist:[] } }, computed: { ...mapGetters(['allCategory']) }, - watch:{ - allCategory:{ - handler(n,o){ - return n.filter(item=>item.parentId!==null) + watch: { + allCategory: { + handler(n, o) { + console.log(n.filter(item => item.parentId)) + this.searchNblist = n.filter(item => item.parentId) }, - deep:true + deep: true } }, created() {