@@ -1477,7 +1477,7 @@ export function jyxzyqkgkDetail(id) { | |||||
// 收支明细公开 | // 收支明细公开 | ||||
export function webList(query) { | export function webList(query) { | ||||
return request({ | return request({ | ||||
url: '/open/house/policy/list/level', | |||||
url: '/open/typz/list', | |||||
method: 'get', | method: 'get', | ||||
params: query | params: query | ||||
}) | }) | ||||
@@ -43,7 +43,7 @@ | |||||
</div> | </div> | ||||
</div> | </div> | ||||
<div class="footer"> | <div class="footer"> | ||||
投诉电话:{{tsdh}} | |||||
{{tsdh}} | |||||
</div> | </div> | ||||
</div> | </div> | ||||
</template> | </template> | ||||
@@ -102,7 +102,12 @@ | |||||
} | } | ||||
webList().then((res) => { | webList().then((res) => { | ||||
if (res.code == 200) { | 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; | |||||
} | |||||
}) | |||||
} | } | ||||
}); | }); | ||||
}, | }, | ||||
@@ -56,7 +56,7 @@ | |||||
</div> | </div> | ||||
</van-form> | </van-form> | ||||
<p class="copy_name">技术支持:{{tsdh}}</p> | |||||
<p class="copy_name">{{tsdh}}</p> | |||||
</div> | </div> | ||||
</div> | </div> | ||||
</template> | </template> | ||||
@@ -101,7 +101,12 @@ | |||||
this.allowIdentityVerified(); | this.allowIdentityVerified(); | ||||
webList().then((res) => { | webList().then((res) => { | ||||
if (res.code == 200) { | 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; | |||||
} | |||||
}) | |||||
} | } | ||||
}); | }); | ||||
}, | }, | ||||