|
|
|
@ -110,9 +110,9 @@ |
|
|
|
|
<view class="btn" @click="handleGroup(item)">确认</view> |
|
|
|
|
</view> |
|
|
|
|
<!-- v-if="isShowYindao && item.isOver" --> |
|
|
|
|
<view class="yindao" @click="clickYinDao(item.reference)"> |
|
|
|
|
<!-- <view class="yindao" @click="clickYinDao(item.reference)"> |
|
|
|
|
<image src="../../static/nav/yindao.png" style="height: 40rpx; width: 40rpx;"></image> |
|
|
|
|
</view> |
|
|
|
|
</view> --> |
|
|
|
|
</view> |
|
|
|
|
</view> |
|
|
|
|
<view class="loading-animation" v-if="loading"> |
|
|
|
@ -169,6 +169,7 @@ |
|
|
|
|
// import { |
|
|
|
|
// baseUrl |
|
|
|
|
// } from '../../utils/config.js'; |
|
|
|
|
import yindaoPng from '../../static/nav/yindao.png' |
|
|
|
|
|
|
|
|
|
export default { |
|
|
|
|
components: { |
|
|
|
@ -177,6 +178,7 @@ |
|
|
|
|
}, |
|
|
|
|
data() { |
|
|
|
|
return { |
|
|
|
|
yindaoPng, |
|
|
|
|
active: 0, |
|
|
|
|
tablist: [{ |
|
|
|
|
title: "信息确认", |
|
|
|
@ -514,13 +516,13 @@ |
|
|
|
|
if (data.reference.content != null && data.reference.title != null) { |
|
|
|
|
this.isShowYindao = true |
|
|
|
|
this.$nextTick(() => { |
|
|
|
|
if (item.isOver) { |
|
|
|
|
this.msgList.forEach(item => { |
|
|
|
|
if (item.isOver) { |
|
|
|
|
item.data = item.data + |
|
|
|
|
`<img src=${yindaoPng} width=20px height=20px class=yindao/>` |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}) |
|
|
|
|
} else { |
|
|
|
|
this.isShowYindao = false |
|
|
|
|
} |
|
|
|
|