This commit is contained in:
shijingjing
2022-04-02 11:25:44 +08:00
parent 4780045b21
commit a9aa0c32e8
16 changed files with 251 additions and 705 deletions

View File

@@ -9,7 +9,6 @@
<script>
import List from "./components/List.vue";
import Add from "./components/Add.vue";
import Detail from "./components/Detail.vue";
export default {
name: "AppAdministrativeLicense",
@@ -18,7 +17,7 @@ export default {
instance: Function,
dict: Object,
},
components: {Add, List,Detail},
components: {Add, List},
data() {
return {
component: "List",
@@ -33,11 +32,6 @@ export default {
this.params = data.params;
}
if (data.type === "Detail") {
this.component = "Detail";
this.params = data.params;
}
if (data.type === "List") {
this.component = "List";
this.params = data.params;