【修改】 标准协会会员基本信息

This commit is contained in:
fengachen
2021-12-20 11:31:31 +08:00
parent 0a179a6129
commit d0f7fd5d37
3 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ import http from './http.js'
let URL_CONFIG = '/jero-boot/'
// 标协会员基本信息
const getStandardBasicInfo = (params) => http.get(`${URL_CONFIG}`, params)
const getStandardBasicInfo = (params) => http.get(`${URL_CONFIG}company/payContactsManagement/baseInfo`, params)
export {
getStandardBasicInfo
+2 -2
View File
@@ -15,8 +15,8 @@ Page({
console.log(res);
if(res.success){
this.setData({
secretariatInfo:res.result,
companyInfo:res.result
secretariatInfo:res.result.secretariat,
companyInfo:res.result.memberInfo
})
}
}).catch(err => {
@@ -7,11 +7,11 @@
</view>
<view>
<text>地址:</text>
<text>{{secretariatInfo.address}}</text>
<text>{{secretariatInfo.address || ''}}</text>
</view>
<view>
<text>联系人:</text>
<text>{{secretariatInfo.contract}}</text>
<text>{{secretariatInfo.username}}</text>
</view>
<view>
<text>联系人电话:</text>
@@ -31,15 +31,15 @@
</view>
<view>
<text>企业名称:</text>
<text>{{companyInfo.name}}</text>
<text>{{companyInfo.companyName}}</text>
</view>
<view>
<text>企业管理员:</text>
<text>{{companyInfo.email}}</text>
<text>{{companyInfo.liaisonMan}}</text>
</view>
<view>
<text>管理员电话:</text>
<text>{{companyInfo.phone}}</text>
<text>{{companyInfo.mobile}}</text>
</view>
<view>
<text>管理人邮箱:</text>
@@ -47,7 +47,7 @@
</view>
<view>
<text>会员有效期:</text>
<text>{{companyInfo.email}}</text>
<text>{{companyInfo.validDate}}</text>
</view>
</view>
<!-- 本企业信息end' -->