@@ -1473,3 +1473,12 @@ export function jyxzyqkgkDetail(id) { | |||||
method: 'get' | method: 'get' | ||||
}) | }) | ||||
} | } | ||||
// 收支明细公开 | |||||
export function webList(query) { | |||||
return request({ | |||||
url: '/open/house/policy/list/level', | |||||
method: 'get', | |||||
params: query | |||||
}) | |||||
} |
@@ -43,12 +43,12 @@ | |||||
</div> | </div> | ||||
</div> | </div> | ||||
<div class="footer"> | <div class="footer"> | ||||
投诉电话:044-1234567 | |||||
投诉电话:{{tsdh}} | |||||
</div> | </div> | ||||
</div> | </div> | ||||
</template> | </template> | ||||
<script> | <script> | ||||
import {bookInfo, nologinMenus} from "@/api/sunVillage_info/fixedAssets"; | |||||
import {bookInfo, webList} from "@/api/sunVillage_info/fixedAssets"; | |||||
import Cookies from "js-cookie"; | import Cookies from "js-cookie"; | ||||
import {sysConfig} from "@/api/homesteadSurvey"; | import {sysConfig} from "@/api/homesteadSurvey"; | ||||
export default { | export default { | ||||
@@ -82,6 +82,7 @@ | |||||
deptId:"", | deptId:"", | ||||
book:"", | book:"", | ||||
userName:"", | userName:"", | ||||
tsdh:"", | |||||
}; | }; | ||||
}, | }, | ||||
created() { | created() { | ||||
@@ -99,6 +100,11 @@ | |||||
if(Cookies.get('user')){ | if(Cookies.get('user')){ | ||||
this.userName = JSON.parse(Cookies.get('user')).memberName | this.userName = JSON.parse(Cookies.get('user')).memberName | ||||
} | } | ||||
webList().then((res) => { | |||||
if (res.code == 200) { | |||||
this.tsdh = res.data.botoom2[0].contentValue; | |||||
} | |||||
}); | |||||
}, | }, | ||||
methods: { | methods: { | ||||
goCode(){ | goCode(){ | ||||
@@ -108,7 +114,7 @@ | |||||
// Cookies.remove("memberName"); | // Cookies.remove("memberName"); | ||||
// Cookies.remove("idcard"); | // Cookies.remove("idcard"); | ||||
Cookies.remove("user"); | Cookies.remove("user"); | ||||
this.$router.push({name:'sunVillageInfoIndexCode',query:{deptId:this.deptId,bookId:this.bookId}}) | |||||
this.$router.push({name:'sunVillageInfoCodeLoginNew',query:{deptId:this.deptId,bookId:this.bookId}}) | |||||
} | } | ||||
}, | }, | ||||
} | } | ||||
@@ -1,6 +1,6 @@ | |||||
<template> | <template> | ||||
<div class="home_wrapper"> | <div class="home_wrapper"> | ||||
<div class="return_btn" @click="onClickLeft"></div> | |||||
<!-- <div class="return_btn" @click="onClickLeft"></div>--> | |||||
<div class="focus_head"> | <div class="focus_head"> | ||||
<div class="title"> | <div class="title"> | ||||
<p>您好,</p> | <p>您好,</p> | ||||
@@ -56,14 +56,14 @@ | |||||
</div> | </div> | ||||
</van-form> | </van-form> | ||||
<p class="copy_name">技术支持:中农融信(北京)科技股份有限公司</p> | |||||
<p class="copy_name">技术支持:{{tsdh}}</p> | |||||
</div> | </div> | ||||
</div> | </div> | ||||
</template> | </template> | ||||
<script> | <script> | ||||
import { getCodeImg, getSmsCode } from "@/api/login"; | import { getCodeImg, getSmsCode } from "@/api/login"; | ||||
import { checkFarmer, allowFaceVerify } from "@/api/sunVillage_info/fixedAssets"; | |||||
import {checkFarmer, allowFaceVerify, webList} from "@/api/sunVillage_info/fixedAssets"; | |||||
import { getFamilyMemberList } from "@/api/sunVillage_info/homestead/familyMember"; | import { getFamilyMemberList } from "@/api/sunVillage_info/homestead/familyMember"; | ||||
import Cookies from "js-cookie"; | import Cookies from "js-cookie"; | ||||
import { encrypt, decrypt } from "../../utils/jsencrypt"; | import { encrypt, decrypt } from "../../utils/jsencrypt"; | ||||
@@ -87,6 +87,7 @@ | |||||
}, | }, | ||||
loading: false, | loading: false, | ||||
codeUrl: "", //验证码 | codeUrl: "", //验证码 | ||||
tsdh: "中农融信(北京)科技股份有限公司", //验证码 | |||||
isSmsLogin: false, //是否手机验证码 | isSmsLogin: false, //是否手机验证码 | ||||
computeTime: 0, | computeTime: 0, | ||||
height:0, | height:0, | ||||
@@ -98,6 +99,11 @@ | |||||
this.getCookie(); | this.getCookie(); | ||||
//this.formData.deptId = Cookies.get('deptId'); // 要关掉这个 | //this.formData.deptId = Cookies.get('deptId'); // 要关掉这个 | ||||
this.allowIdentityVerified(); | this.allowIdentityVerified(); | ||||
webList().then((res) => { | |||||
if (res.code == 200) { | |||||
this.tsdh = res.data.botoom3[1].contentValue; | |||||
} | |||||
}); | |||||
}, | }, | ||||
methods: { | methods: { | ||||
getCookie() { | getCookie() { | ||||