调整村务公开

This commit is contained in:
aixianling
2022-03-14 12:21:24 +08:00
parent f2508c5823
commit edf03dbb5d
4 changed files with 274 additions and 269 deletions

View File

@@ -54,7 +54,6 @@ export default {
props: {
dict: Object,
params: Object,
instance: Function,
areaId: String
},
@@ -78,7 +77,10 @@ export default {
},
computed: {
...mapState(['user'])
...mapState(['user']),
params() {
return this.$route.query
}
},
created() {
@@ -89,7 +91,7 @@ export default {
methods: {
onBack() {
this.cancel()
this.$router.push({})
},
getInfo() {
@@ -124,13 +126,6 @@ export default {
}
})
},
cancel(isRefresh) {
this.$emit('change', {
type: 'list',
isRefresh: !!isRefresh
})
}
}
}
</script>