소스 검색

task 底部配置

rongxin_dev
庞东旭 6 일 전
부모
커밋
9338b88610
3개의 변경된 파일27개의 추가작업 그리고 6개의 파일을 삭제
  1. +9
    -0
      src/api/sunVillage_info/fixedAssets.js
  2. +9
    -3
      src/views/sunVillage_info/index_code_rights_new.vue
  3. +9
    -3
      src/views/sunVillage_info/login_code_new.vue

+ 9
- 0
src/api/sunVillage_info/fixedAssets.js 파일 보기

@@ -1473,3 +1473,12 @@ export function jyxzyqkgkDetail(id) {
method: 'get'
})
}

// 收支明细公开
export function webList(query) {
return request({
url: '/open/house/policy/list/level',
method: 'get',
params: query
})
}

+ 9
- 3
src/views/sunVillage_info/index_code_rights_new.vue 파일 보기

@@ -43,12 +43,12 @@
</div>
</div>
<div class="footer">
投诉电话:044-1234567
投诉电话:{{tsdh}}
</div>
</div>
</template>
<script>
import {bookInfo, nologinMenus} from "@/api/sunVillage_info/fixedAssets";
import {bookInfo, webList} from "@/api/sunVillage_info/fixedAssets";
import Cookies from "js-cookie";
import {sysConfig} from "@/api/homesteadSurvey";
export default {
@@ -82,6 +82,7 @@
deptId:"",
book:"",
userName:"",
tsdh:"",
};
},
created() {
@@ -99,6 +100,11 @@
if(Cookies.get('user')){
this.userName = JSON.parse(Cookies.get('user')).memberName
}
webList().then((res) => {
if (res.code == 200) {
this.tsdh = res.data.botoom2[0].contentValue;
}
});
},
methods: {
goCode(){
@@ -108,7 +114,7 @@
// Cookies.remove("memberName");
// Cookies.remove("idcard");
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}})
}
},
}


+ 9
- 3
src/views/sunVillage_info/login_code_new.vue 파일 보기

@@ -1,6 +1,6 @@
<template>
<div class="home_wrapper">
<div class="return_btn" @click="onClickLeft"></div>
<!-- <div class="return_btn" @click="onClickLeft"></div>-->
<div class="focus_head">
<div class="title">
<p>您好,</p>
@@ -56,14 +56,14 @@
</div>

</van-form>
<p class="copy_name">技术支持:中农融信(北京)科技股份有限公司</p>
<p class="copy_name">技术支持:{{tsdh}}</p>
</div>
</div>
</template>

<script>
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 Cookies from "js-cookie";
import { encrypt, decrypt } from "../../utils/jsencrypt";
@@ -87,6 +87,7 @@
},
loading: false,
codeUrl: "", //验证码
tsdh: "中农融信(北京)科技股份有限公司", //验证码
isSmsLogin: false, //是否手机验证码
computeTime: 0,
height:0,
@@ -98,6 +99,11 @@
this.getCookie();
//this.formData.deptId = Cookies.get('deptId'); // 要关掉这个
this.allowIdentityVerified();
webList().then((res) => {
if (res.code == 200) {
this.tsdh = res.data.botoom3[1].contentValue;
}
});
},
methods: {
getCookie() {


불러오는 중...
취소
저장