|
@@ -21,7 +21,7 @@
|
|
|
<view class="chat-sys-title">收到{{xt_count}}条系统提醒
|
|
|
<view class="chat-num sys-ab" v-if="xt_count > 0">{{ xt_count }}</view>
|
|
|
</view>
|
|
|
- <view class="chat-sys-btn">去查看</view>
|
|
|
+ <view class="chat-sys-btn" @click="goSys()">去查看</view>
|
|
|
</view>
|
|
|
</view>
|
|
|
<view v-if="list && list.length > 0" class="chat-list">
|
|
@@ -119,6 +119,14 @@ const xt_count = computed(() =>{
|
|
|
return 0
|
|
|
})
|
|
|
|
|
|
+const goSys =()=>{
|
|
|
+ const count = list.value.filter(item => item.conversationType === '3')
|
|
|
+ if(count && count.length >0){
|
|
|
+ const data = count[0];
|
|
|
+ onClick(data);
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
const loadmoreInfo = ref({
|
|
|
status: 'loadmore',
|
|
|
loadingText: '努力加载中...',
|