diff --git a/src/views/sunVillage_info/index.vue b/src/views/sunVillage_info/index.vue index 381ebc10..a92ebebf 100644 --- a/src/views/sunVillage_info/index.vue +++ b/src/views/sunVillage_info/index.vue @@ -68,7 +68,7 @@ @@ -100,6 +100,7 @@ import {bookListByDeptId} from "../../api/homestead"; import Cookies from "js-cookie"; import {logout} from "../../api/login"; + import { sysConfig } from "@/api/homesteadSurvey/index"; export default { name: "certificateList", data() { @@ -138,6 +139,8 @@ zcsqList:[], cwxxList:[], menusList:[], + + configValue:'' }; }, created() { @@ -177,6 +180,13 @@ } }); this.$set(this.queryParams, "systemType", '4'); + let params={ + configKey: "system.company.name"} + sysConfig(params).then((res) => { + if (res.code == 200) { + this.configValue = res.rows[0].configValue; + } + }); }, methods: { getPath(url){ diff --git a/src/views/sunVillage_info/index_code.vue b/src/views/sunVillage_info/index_code.vue index 3e985d2c..233ce805 100644 --- a/src/views/sunVillage_info/index_code.vue +++ b/src/views/sunVillage_info/index_code.vue @@ -59,13 +59,14 @@