|
@@ -247,13 +247,19 @@ export default {
|
|
|
this.$router.push(`/material/myReceive`)
|
|
|
},
|
|
|
enforceTasksClick() {
|
|
|
- this.$router.push('/enforceflow/enforceflow')
|
|
|
+ let params = {
|
|
|
+ status: '1'
|
|
|
+ }
|
|
|
+ this.$router.push({path: '/enforceflow/enforceflow', query: params});
|
|
|
},
|
|
|
todoMeetingClick() {
|
|
|
this.$router.push('/meeting/meeting')
|
|
|
},
|
|
|
enforceRemindClick() {
|
|
|
- this.$router.push('/enforceflow/enforceflow')
|
|
|
+ let params = {
|
|
|
+ status: '1'
|
|
|
+ }
|
|
|
+ this.$router.push({path: '/enforceflow/enforceflow', query: params});
|
|
|
},
|
|
|
|
|
|
handleAudit() {
|