网格员-责任家庭

This commit is contained in:
yanran200730
2022-01-13 14:56:41 +08:00
parent ca29a77dd2
commit f091321ac7
3 changed files with 421 additions and 8 deletions

View File

@@ -16,6 +16,7 @@
<script>
import List from "./components/list";
import Add from "./components/add";
import Family from "./components/Family";
export default {
name: "AppGridMember",
@@ -37,6 +38,7 @@ export default {
components: {
Add,
List,
Family
},
mounted() {},
@@ -48,6 +50,11 @@ export default {
this.params = data.params;
}
if (data.type === "Family") {
this.component = "Family"
this.params = data.params
}
if (data.type === "list") {
this.component = "List";
this.params = data.params;