|
|
@@ -46,6 +46,7 @@
|
|
|
<view class="form-data fflex">
|
|
|
<block v-if="info.customTypeName&&info.customTypeName.length>0">{{info.customTypeName.join(',')}}
|
|
|
</block>
|
|
|
+ <block>-</block>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="ddflex form-item">
|
|
|
@@ -78,7 +79,7 @@
|
|
|
</view>
|
|
|
<view class="dt-box ddflex">
|
|
|
<view class="dt-title">客户动态</view>
|
|
|
- <view class="more ddflex" @click="jumpUrl('/mine/clientDynamic/clientDynamic')">
|
|
|
+ <view class="more ddflex" @click="jumpUrl('/mine/clientDynamic/clientDynamic?id='+id)">
|
|
|
查看更多
|
|
|
<image style="width: 9rpx;height: 18rpx;margin-left: 10rpx;" src="/static/images/rico.png"></image>
|
|
|
</view>
|
|
|
@@ -99,7 +100,7 @@
|
|
|
<image src="/mine/static/images/jcico.png" class="jcico"></image>
|
|
|
<view class="time">{{ it.time }}</view>
|
|
|
<!-- <view class="des" v-if="it.brief">{{ it.brief }}</view> -->
|
|
|
- <rich-text class="des" :nodes="it.brief"></rich-text>
|
|
|
+ <rich-text class="des" :nodes="it.content"></rich-text>
|
|
|
</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
@@ -195,7 +196,7 @@
|
|
|
this.todayDay = new Date().getDate()
|
|
|
},
|
|
|
onShow() {
|
|
|
-
|
|
|
+ this.getDynamic()
|
|
|
},
|
|
|
methods: {
|
|
|
jumpUrl(url){
|
|
|
@@ -247,6 +248,18 @@
|
|
|
minute:minute,
|
|
|
second:second,
|
|
|
}
|
|
|
+ },
|
|
|
+ getDynamic(){
|
|
|
+ req.getRequest('/api/user/getUserTrends',{uid:this.id,page:1,limit:5},res=>{
|
|
|
+ this.logsList = res&&res.list?res.list:[],
|
|
|
+ this.logsList.map(item=>{
|
|
|
+ let t = this.getDate(item.createDate)
|
|
|
+ item.year = t.year
|
|
|
+ item.month = t.month
|
|
|
+ item.day = t.day
|
|
|
+ item.time = t.hour+':'+t.minute
|
|
|
+ })
|
|
|
+ })
|
|
|
}
|
|
|
},
|
|
|
mounted() {},
|