diff --git a/src/api/sunVillage_info/fixedAssets.js b/src/api/sunVillage_info/fixedAssets.js index f82b866d..c514ba4e 100644 --- a/src/api/sunVillage_info/fixedAssets.js +++ b/src/api/sunVillage_info/fixedAssets.js @@ -1477,7 +1477,7 @@ export function jyxzyqkgkDetail(id) { // 收支明细公开 export function webList(query) { return request({ - url: '/open/house/policy/list/level', + url: '/open/typz/list', method: 'get', params: query }) diff --git a/src/views/sunVillage_info/index_code_rights_new.vue b/src/views/sunVillage_info/index_code_rights_new.vue index 0021c7e0..aacb141b 100644 --- a/src/views/sunVillage_info/index_code_rights_new.vue +++ b/src/views/sunVillage_info/index_code_rights_new.vue @@ -43,7 +43,7 @@ @@ -102,7 +102,12 @@ } webList().then((res) => { if (res.code == 200) { - this.tsdh = res.data.botoom2[0].contentValue; + var content = res.rows; + content.map(rr=>{ + if (rr.configKey == 'web.open.phone'){ + this.tsdh = rr.configValue; + } + }) } }); }, diff --git a/src/views/sunVillage_info/login_code_new.vue b/src/views/sunVillage_info/login_code_new.vue index a0d89b4f..406b2229 100644 --- a/src/views/sunVillage_info/login_code_new.vue +++ b/src/views/sunVillage_info/login_code_new.vue @@ -56,7 +56,7 @@ -

技术支持:{{tsdh}}

+

{{tsdh}}

@@ -101,7 +101,12 @@ this.allowIdentityVerified(); webList().then((res) => { if (res.code == 200) { - this.tsdh = res.data.botoom3[1].contentValue; + var content = res.rows; + content.map(rr=>{ + if (rr.configKey == 'web.open.technique'){ + this.tsdh = rr.configValue; + } + }) } }); },