([])
const pageCount = computed(() => roleList.value.length)
-const repliedCount = computed(() =>
- roleList.value.filter((item: any) => item.reply_status === '已回复').length
+const repliedCount = computed(
+ () => roleList.value.filter((item: any) => item.reply_status === '已回复').length
)
-const wechatCount = computed(() =>
- roleList.value.filter((item: any) => Boolean(item.wechat_exchanged)).length
+const wechatCount = computed(
+ () => roleList.value.filter((item: any) => Boolean(item.wechat_exchanged)).length
)
function fetchData() {
diff --git a/src/views/DataStatistics/index.vue b/src/views/DataStatistics/index.vue
index ed47581..994638c 100644
--- a/src/views/DataStatistics/index.vue
+++ b/src/views/DataStatistics/index.vue
@@ -5,7 +5,7 @@
实时追踪打招呼、回复、微信交换、Worker 与账号状态
-