Commit d844d137 by liupeng

Merge branch 'dev_xzeq' of http://47.92.108.28/changchao/founder_vue into dev_xzeq

parents 3c053628 732711f1
......@@ -126,6 +126,7 @@
<script>
import SelectTreeDialog from "@c/treeCode_components.vue";
import SearchCollapse from "@c/searchCollapse.vue";
import axios from "axios";
import {
queryYwgzAll,
queryDysDlrzAll,
......@@ -149,7 +150,8 @@ export default {
props: [],
value: "",
codeOptions: [],
codeTree: 'CODE_UNIT'
codeTree: 'CODE_UNIT',
name:'受理单位'
},
header: require("../../assets/xnpgbg/header.png"),
headerInfo1:"",
......@@ -242,6 +244,14 @@ export default {
},
created() {
this.$store.commit("user/SET_Menu", this.Menu);
axios
.get(`JsonData/${this.currentItem.codeTree}.json`)
.then((res) => {
this.$set(this.currentItem, "codeOptions", res.data.rows);
})
.catch((err) => {
console.log(err);
});
},
methods:{
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment