四邻设置开发完成

This commit is contained in:
aixianling
2022-04-18 15:20:35 +08:00
parent 8002d58294
commit f4f23b4814
3 changed files with 228 additions and 1 deletions

View File

@@ -9,11 +9,13 @@ import List from './components/List'
import Add from './components/Add'
import Detail from './components/Detail'
import {mapState} from "vuex";
import NeighbourSetting from "./components/neighbourSetting";
export default {
name: 'AppPartyMember',
label: '党员管理',
components: {
NeighbourSetting,
Add,
List,
Detail
@@ -32,6 +34,8 @@ export default {
component() {
if (this.$route.hash == "#add") {
return Add
} else if (this.$route.hash == "#ns") {
return NeighbourSetting
} else if (this.$route.query.id) {
return Detail
} else return List