Commit 12648c6a by xue_wengang

Update index.vue

parent 34a2a643
......@@ -161,6 +161,7 @@
</template>
<script>
import Http from "@/utils/axiosHttp.js";
import requestUserInfo from "@/api/interface/dictionaryCode.js";
import qs from "qs";
import url from "@/api/base";
export default {
......@@ -195,9 +196,17 @@ export default {
],
imgurl: require("../../assets/img/jfgl/tz.png"),
list: [],
userInfo: {},
userInfo: {}
};
},
created() {
requestUserInfo.getYhxx("").then((res)=>{
if (res.success === true){
debugger
this.userInfo = res.data.rows;
}
})
},
mounted() {
this.userInfo = JSON.parse(window.sessionStorage.getItem("userInfo"));
this.getQxpm();
......
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