第一书记跟随目录名称

This commit is contained in:
aixianling
2023-10-09 10:53:30 +08:00
parent 872e7afdd3
commit 30b25883a8
3 changed files with 128 additions and 124 deletions

View File

@@ -1,66 +1,66 @@
<template>
<div class="doc-circulation ailist-wrapper">
<keep-alive :include="['List']">
<component ref="component" :is="component" @change="onChange" :params="params" :instance="instance" :dict="dict"></component>
<component ref="component" :is="component" @change="onChange" :params="params" v-bind="$props"></component>
</keep-alive>
</div>
</template>
<script>
import List from './components/List'
import Add from './components/Add'
import List from './components/List'
import Add from './components/Add'
export default {
name: 'AppVillageAuxiliarPolice',
label: '第一书记',
export default {
name: 'AppVillageAuxiliarPolice',
label: '第一书记',
props: {
instance: Function,
dict: Object,
menuName: {default: "第一书记"}
},
props: {
instance: Function,
dict: Object
},
data() {
return {
component: 'List',
params: {},
include: []
}
},
data () {
return {
component: 'List',
params: {},
include: []
components: {
Add,
List
},
mounted() {
},
methods: {
onChange(data) {
if (data.type === 'Add') {
this.component = 'Add'
this.params = data.params
}
},
components: {
Add,
List
},
if (data.type === 'list') {
this.component = 'List'
this.params = data.params
mounted () {
},
methods: {
onChange (data) {
if (data.type === 'Add') {
this.component = 'Add'
this.params = data.params
}
if (data.type === 'list') {
this.component = 'List'
this.params = data.params
this.$nextTick(() => {
if (data.isRefresh) {
this.$refs.component.getList()
}
})
}
this.$nextTick(() => {
if (data.isRefresh) {
this.$refs.component.getList()
}
})
}
}
}
}
</script>
<style lang="scss">
.doc-circulation {
height: 100%;
background: #F3F6F9;
overflow: auto;
}
.doc-circulation {
height: 100%;
background: #F3F6F9;
overflow: auto;
}
</style>