Commit 7d5c6190 by chenyu

update: update

parent 36e2d7eb
......@@ -118,6 +118,9 @@ export default {
numOfTel: 0,
numOfMarket: 0
},
memberRelationInfo:[
// {protocolType:1访问时的协议 2登录时的协议,consentPrivacyProtocolTime:时间}
],
memberbaseinfo: {
status: 1,
wxStatus: 0,
......@@ -818,6 +821,7 @@ export default {
if (res.data.errorCode === 0) {
const ret = res.data.result;
this.memberInfo = ret.memberInfo;
this.memberRelationInfo = ret.memberRelationInfo?ret.memberRelationInfo.memberProtocolInfo:[];
this.memberInfo.thirdImgUrl = ret.memberInfo.thirdImgUrl
? ret.memberInfo.thirdImgUrl
: this.storeImageUrl;
......
......@@ -168,13 +168,12 @@
<div class="wechat-cardtitle">关联渠道</div>
<div class="related-channel-wrap">
<ul class="related-channel-content">
<li class="related-channel-content-item">
<li class="related-channel-content-item" v-for="relationInfo in memberRelationInfo" :key="relationInfo">
<img :src="weimengLogo" alt="">
<div class="related-channel-content-item-info">
<h2>微盟同意协议时间</h2>
<div class="info-date">
<p>访问:2021-09-10 12:00:09</p>
<p>登录:2021-09-11 12:00:09</p>
<p>{{relationInfo.protocolType===1?'访问':'登录'}}{{relationInfo.consentPrivacyProtocolTime | formatTime}}</p>
</div>
</div>
</li>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment