mirror of
https://github.com/LifeArchiveProject/WeChatDataAnalysis.git
synced 2026-02-20 06:40:49 +08:00
- 左侧新增朋友圈联系人列表(按发圈数),支持搜索与“全部/单人”筛选 - 新增“导出全部/导出此人”,展示导出状态并支持下载 ZIP(SSE 优先,轮询兜底) - Live Photo/实况:悬停播放、静音切换与预览弹窗 - 媒体请求统一透传 use_cache;关闭缓存时追加时间戳避免浏览器缓存
30 lines
761 B
Vue
30 lines
761 B
Vue
<template>
|
|
<svg
|
|
:width="size"
|
|
:height="size"
|
|
viewBox="0 0 24 24"
|
|
version="1.1"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
aria-hidden="true"
|
|
>
|
|
<!-- Keep the SVG identical to WeFlow/src/components/LivePhotoIcon.tsx for visual consistency -->
|
|
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" stroke-linecap="round" stroke-linejoin="round">
|
|
<g stroke="currentColor" stroke-width="2">
|
|
<circle fill="currentColor" stroke="none" cx="12" cy="12" r="2.5" />
|
|
<circle cx="12" cy="12" r="5.5" />
|
|
<circle cx="12" cy="12" r="9" stroke-dasharray="1 3.7" />
|
|
</g>
|
|
</g>
|
|
</svg>
|
|
</template>
|
|
|
|
<script setup>
|
|
defineProps({
|
|
size: {
|
|
type: [Number, String],
|
|
default: 24
|
|
}
|
|
})
|
|
</script>
|
|
|