2026-02-14 12:14:07 +08:00
|
|
|
|
<!--
|
|
|
|
|
|
ReliabilityDemo.vue
|
|
|
|
|
|
消息可靠性演示 - 三道防线
|
|
|
|
|
|
-->
|
2026-02-06 03:34:50 +08:00
|
|
|
|
<template>
|
2026-02-14 12:14:07 +08:00
|
|
|
|
<div class="reliability-demo">
|
2026-02-06 03:34:50 +08:00
|
|
|
|
<div class="demo-header">
|
2026-02-14 12:14:07 +08:00
|
|
|
|
<span class="icon">🛡️</span>
|
|
|
|
|
|
<span class="title">消息可靠性演示</span>
|
|
|
|
|
|
<span class="subtitle">三道防线保证消息不丢失</span>
|
2026-02-06 03:34:50 +08:00
|
|
|
|
</div>
|
2026-02-14 12:14:07 +08:00
|
|
|
|
|
|
|
|
|
|
<div class="defense-system">
|
|
|
|
|
|
<!-- 防线1: 生产者确认 -->
|
|
|
|
|
|
<div class="defense-line">
|
|
|
|
|
|
<div class="defense-header">
|
|
|
|
|
|
<div class="defense-badge line1">防线 1</div>
|
|
|
|
|
|
<div class="defense-title">生产者确认 (Producer ACK)</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="defense-content">
|
|
|
|
|
|
<div class="flow-diagram">
|
|
|
|
|
|
<div class="component producer">
|
|
|
|
|
|
<div class="comp-icon">📤</div>
|
|
|
|
|
|
<div class="comp-label">生产者</div>
|
|
|
|
|
|
<div class="comp-desc">发送消息</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="message-flow">
|
|
|
|
|
|
<div class="msg-item" :class="{ active: step === 1 }">
|
|
|
|
|
|
<div class="msg-icon">📨</div>
|
|
|
|
|
|
<div class="msg-label">消息</div>
|
|
|
|
|
|
<div v-if="step === 1" class="msg-status">
|
|
|
|
|
|
{{ ackStatus }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="ack-item" :class="{ active: step === 2 }">
|
|
|
|
|
|
<div class="ack-icon">✓</div>
|
|
|
|
|
|
<div class="ack-label">ACK确认</div>
|
|
|
|
|
|
<div v-if="step === 2" class="ack-status">
|
|
|
|
|
|
{{ ackMessage }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="component broker">
|
|
|
|
|
|
<div class="comp-icon">📦</div>
|
|
|
|
|
|
<div class="comp-label">Broker</div>
|
|
|
|
|
|
<div class="comp-desc">接收并存储</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="control-panel">
|
|
|
|
|
|
<div class="control-item">
|
|
|
|
|
|
<label>发送消息</label>
|
|
|
|
|
|
<button class="action-btn" @click="sendWithAck" :disabled="step > 0">
|
|
|
|
|
|
发送并等待确认
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="info-text">
|
|
|
|
|
|
<span class="info-icon">💡</span>
|
|
|
|
|
|
如果没收到ACK,生产者会重试或记录本地日志
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 防线2: Broker持久化 -->
|
|
|
|
|
|
<div class="defense-line">
|
|
|
|
|
|
<div class="defense-header">
|
|
|
|
|
|
<div class="defense-badge line2">防线 2</div>
|
|
|
|
|
|
<div class="defense-title">Broker持久化</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="defense-content">
|
|
|
|
|
|
<div class="storage-diagram">
|
|
|
|
|
|
<div class="storage-container">
|
|
|
|
|
|
<div class="storage-option" :class="{ active: storageType === 'memory' }">
|
|
|
|
|
|
<div class="option-icon">⚡</div>
|
|
|
|
|
|
<div class="option-label">内存存储</div>
|
|
|
|
|
|
<div class="option-desc">速度快,但重启丢失</div>
|
|
|
|
|
|
<div class="option-risk">❌ 高风险</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="vs-divider">vs</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="storage-option recommended" :class="{ active: storageType === 'disk' }">
|
|
|
|
|
|
<div class="option-icon">💾</div>
|
|
|
|
|
|
<div class="option-label">磁盘存储</div>
|
|
|
|
|
|
<div class="option-desc">落盘保证不丢失</div>
|
|
|
|
|
|
<div class="option-risk">✅ 推荐</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="replication-info">
|
|
|
|
|
|
<div class="replication-title">
|
|
|
|
|
|
<span class="icon">🔄</span>
|
|
|
|
|
|
多副本同步
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="replication-detail">
|
|
|
|
|
|
消息同步到3个节点,即使1个节点宕机也不丢数据
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="control-panel">
|
|
|
|
|
|
<div class="control-item">
|
|
|
|
|
|
<label>存储方式</label>
|
|
|
|
|
|
<div class="btn-group">
|
|
|
|
|
|
<button
|
|
|
|
|
|
class="toggle-btn"
|
|
|
|
|
|
:class="{ active: storageType === 'memory' }"
|
|
|
|
|
|
@click="storageType = 'memory'"
|
|
|
|
|
|
>
|
|
|
|
|
|
内存
|
|
|
|
|
|
</button>
|
|
|
|
|
|
<button
|
|
|
|
|
|
class="toggle-btn"
|
|
|
|
|
|
:class="{ active: storageType === 'disk' }"
|
|
|
|
|
|
@click="storageType = 'disk'"
|
|
|
|
|
|
>
|
|
|
|
|
|
磁盘
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="info-text" :class="{ warning: storageType === 'memory' }">
|
|
|
|
|
|
<span class="info-icon">{{ storageType === 'disk' ? '✅' : '⚠️' }}</span>
|
|
|
|
|
|
{{ storageType === 'disk' ? '消息已落盘,安全可靠' : '消息仅在内存,重启丢失' }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- 防线3: 消费者确认 -->
|
|
|
|
|
|
<div class="defense-line">
|
|
|
|
|
|
<div class="defense-header">
|
|
|
|
|
|
<div class="defense-badge line3">防线 3</div>
|
|
|
|
|
|
<div class="defense-title">消费者确认 (Consumer ACK)</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="defense-content">
|
|
|
|
|
|
<div class="consumer-flow">
|
|
|
|
|
|
<div class="flow-step" :class="{ active: consumerStep >= 1 }">
|
|
|
|
|
|
<div class="step-num">1</div>
|
|
|
|
|
|
<div class="step-content">
|
|
|
|
|
|
<div class="step-title">拉取消息</div>
|
|
|
|
|
|
<div class="step-desc">从Broker获取消息</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="flow-arrow" :class="{ active: consumerStep >= 1 }">→</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="flow-step" :class="{ active: consumerStep >= 2 }">
|
|
|
|
|
|
<div class="step-num">2</div>
|
|
|
|
|
|
<div class="step-content">
|
|
|
|
|
|
<div class="step-title">处理消息</div>
|
|
|
|
|
|
<div class="step-desc">执行业务逻辑</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="flow-arrow" :class="{ active: consumerStep >= 2 }">→</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="flow-step" :class="{ active: consumerStep >= 3 }">
|
|
|
|
|
|
<div class="step-num">3</div>
|
|
|
|
|
|
<div class="step-content">
|
|
|
|
|
|
<div class="step-title">手动ACK</div>
|
|
|
|
|
|
<div class="step-desc">确认处理完成</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="ack-comparison">
|
|
|
|
|
|
<div class="ack-option">
|
|
|
|
|
|
<div class="ack-type">自动 ACK</div>
|
|
|
|
|
|
<div class="ack-desc">高效但可能丢消息</div>
|
|
|
|
|
|
<div class="ack-risk">⚠️ 不推荐</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="ack-option recommended">
|
|
|
|
|
|
<div class="ack-type">手动 ACK</div>
|
|
|
|
|
|
<div class="ack-desc">可靠,处理完才确认</div>
|
|
|
|
|
|
<div class="ack-risk">✅ 推荐</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="control-panel">
|
|
|
|
|
|
<div class="control-item">
|
|
|
|
|
|
<label>模拟消费</label>
|
|
|
|
|
|
<button class="action-btn" @click="simulateConsume" :disabled="consumerStep > 0">
|
|
|
|
|
|
开始消费流程
|
|
|
|
|
|
</button>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="info-text">
|
|
|
|
|
|
<span class="info-icon">💡</span>
|
|
|
|
|
|
如果处理失败,不发送ACK,Broker会重新投递
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
<div class="summary-box">
|
|
|
|
|
|
<div class="summary-icon">🎯</div>
|
|
|
|
|
|
<div class="summary-content">
|
|
|
|
|
|
<strong>三道防线,缺一不可:</strong>生产者确认 → Broker持久化 → 消费者确认
|
|
|
|
|
|
</div>
|
2026-02-06 03:34:50 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script setup>
|
|
|
|
|
|
import { ref } from 'vue'
|
|
|
|
|
|
|
2026-02-14 12:14:07 +08:00
|
|
|
|
// 防线1: 生产者确认
|
|
|
|
|
|
const step = ref(0)
|
|
|
|
|
|
const ackStatus = ref('')
|
|
|
|
|
|
const ackMessage = ref('')
|
|
|
|
|
|
|
|
|
|
|
|
// 防线2: 存储方式
|
|
|
|
|
|
const storageType = ref('disk')
|
|
|
|
|
|
|
|
|
|
|
|
// 防线3: 消费者确认
|
|
|
|
|
|
const consumerStep = ref(0)
|
|
|
|
|
|
|
|
|
|
|
|
const sendWithAck = () => {
|
|
|
|
|
|
step.value = 1
|
|
|
|
|
|
ackStatus.value = '发送中...'
|
|
|
|
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
step.value = 2
|
|
|
|
|
|
ackStatus.value = '已发送'
|
|
|
|
|
|
ackMessage.value = '收到ACK,消息安全'
|
|
|
|
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
step.value = 0
|
|
|
|
|
|
ackStatus.value = ''
|
|
|
|
|
|
ackMessage.value = ''
|
|
|
|
|
|
}, 3000)
|
|
|
|
|
|
}, 1500)
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const simulateConsume = () => {
|
|
|
|
|
|
consumerStep.value = 1
|
|
|
|
|
|
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
consumerStep.value = 2
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
consumerStep.value = 3
|
|
|
|
|
|
setTimeout(() => {
|
|
|
|
|
|
consumerStep.value = 0
|
|
|
|
|
|
}, 3000)
|
|
|
|
|
|
}, 1500)
|
|
|
|
|
|
}, 1500)
|
|
|
|
|
|
}
|
2026-02-06 03:34:50 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
2026-02-14 12:14:07 +08:00
|
|
|
|
.reliability-demo {
|
2026-02-06 03:34:50 +08:00
|
|
|
|
border: 1px solid var(--vp-c-divider);
|
2026-02-14 12:14:07 +08:00
|
|
|
|
border-radius: 12px;
|
2026-02-06 03:34:50 +08:00
|
|
|
|
background: var(--vp-c-bg-soft);
|
2026-02-14 12:14:07 +08:00
|
|
|
|
padding: 20px;
|
|
|
|
|
|
margin: 20px 0;
|
|
|
|
|
|
font-family: var(--vp-font-family-base);
|
2026-02-06 03:34:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.demo-header {
|
2026-02-14 12:14:07 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 12px;
|
|
|
|
|
|
margin-bottom: 24px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.demo-header .icon {
|
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.demo-header .title {
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
|
color: var(--vp-c-text-1);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.demo-header .subtitle {
|
|
|
|
|
|
color: var(--vp-c-text-2);
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
margin-left: 8px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.defense-system {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
gap: 24px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.defense-line {
|
|
|
|
|
|
background: var(--vp-c-bg);
|
|
|
|
|
|
border: 1px solid var(--vp-c-divider);
|
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.defense-header {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 12px;
|
|
|
|
|
|
padding: 16px 20px;
|
|
|
|
|
|
background: var(--vp-c-bg-soft);
|
|
|
|
|
|
border-bottom: 1px solid var(--vp-c-divider);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.defense-badge {
|
|
|
|
|
|
padding: 6px 12px;
|
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
color: white;
|
2026-02-06 03:34:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-14 12:14:07 +08:00
|
|
|
|
.defense-badge.line1 {
|
|
|
|
|
|
background: #3b82f6
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.defense-badge.line2 {
|
|
|
|
|
|
background: #f59e0b
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.defense-badge.line3 {
|
|
|
|
|
|
background: #22c55e
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.defense-title {
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
font-size: 15px;
|
2026-02-06 03:34:50 +08:00
|
|
|
|
color: var(--vp-c-text-1);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-14 12:14:07 +08:00
|
|
|
|
.defense-content {
|
|
|
|
|
|
padding: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.flow-diagram {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
gap: 24px;
|
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
padding: 20px;
|
|
|
|
|
|
background: var(--vp-c-bg-soft);
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.component {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
padding: 16px;
|
|
|
|
|
|
background: var(--vp-c-bg);
|
|
|
|
|
|
border: 2px solid var(--vp-c-brand);
|
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
|
min-width: 120px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.comp-icon {
|
|
|
|
|
|
font-size: 32px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.comp-label {
|
|
|
|
|
|
font-weight: 600;
|
2026-02-06 03:34:50 +08:00
|
|
|
|
font-size: 14px;
|
2026-02-14 12:14:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.comp-desc {
|
|
|
|
|
|
font-size: 12px;
|
2026-02-06 03:34:50 +08:00
|
|
|
|
color: var(--vp-c-text-2);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-14 12:14:07 +08:00
|
|
|
|
.message-flow {
|
2026-02-06 03:34:50 +08:00
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
gap: 16px;
|
2026-02-14 12:14:07 +08:00
|
|
|
|
align-items: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.msg-item,
|
|
|
|
|
|
.ack-item {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 6px;
|
|
|
|
|
|
padding: 10px;
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
transition: all 0.3s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.msg-item.active {
|
|
|
|
|
|
background: rgba(59, 130, 246, 0.1);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ack-item.active {
|
|
|
|
|
|
background: rgba(34, 197, 94, 0.1);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.msg-icon,
|
|
|
|
|
|
.ack-icon {
|
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.msg-label,
|
|
|
|
|
|
.ack-label {
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.msg-status,
|
|
|
|
|
|
.ack-status {
|
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
|
color: var(--vp-c-text-2);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.storage-diagram {
|
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.storage-container {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
gap: 24px;
|
|
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.storage-option {
|
|
|
|
|
|
flex: 1;
|
|
|
|
|
|
padding: 20px;
|
|
|
|
|
|
background: var(--vp-c-bg-soft);
|
|
|
|
|
|
border: 2px solid var(--vp-c-divider);
|
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
transition: all 0.3s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.storage-option.active {
|
|
|
|
|
|
border-color: var(--vp-c-brand);
|
|
|
|
|
|
background: rgba(59, 130, 246, 0.05);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.storage-option.recommended {
|
|
|
|
|
|
border-color: var(--vp-c-success);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.storage-option.recommended.active {
|
|
|
|
|
|
background: rgba(34, 197, 94, 0.05);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.option-icon {
|
|
|
|
|
|
font-size: 36px;
|
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.option-label {
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
|
margin-bottom: 6px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.option-desc {
|
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
|
color: var(--vp-c-text-2);
|
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.option-risk {
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.vs-divider {
|
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
color: var(--vp-c-text-2);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.replication-info {
|
|
|
|
|
|
padding: 16px;
|
|
|
|
|
|
background: var(--vp-c-bg-soft);
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.replication-title {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.replication-icon {
|
|
|
|
|
|
font-size: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.replication-detail {
|
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
|
color: var(--vp-c-text-2);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.consumer-flow {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
gap: 16px;
|
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
padding: 20px;
|
|
|
|
|
|
background: var(--vp-c-bg-soft);
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.flow-step {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
padding: 12px;
|
|
|
|
|
|
background: var(--vp-c-bg);
|
|
|
|
|
|
border: 2px solid var(--vp-c-divider);
|
|
|
|
|
|
border-radius: 12px;
|
|
|
|
|
|
min-width: 100px;
|
|
|
|
|
|
transition: all 0.3s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.flow-step.active {
|
|
|
|
|
|
border-color: var(--vp-c-brand);
|
|
|
|
|
|
background: rgba(59, 130, 246, 0.05);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.step-num {
|
|
|
|
|
|
width: 32px;
|
|
|
|
|
|
height: 32px;
|
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
background: var(--vp-c-brand);
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: center;
|
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.step-title {
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.step-desc {
|
|
|
|
|
|
font-size: 11px;
|
|
|
|
|
|
color: var(--vp-c-text-2);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.flow-arrow {
|
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
|
color: var(--vp-c-divider);
|
|
|
|
|
|
transition: all 0.3s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.flow-arrow.active {
|
|
|
|
|
|
color: var(--vp-c-brand);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ack-comparison {
|
|
|
|
|
|
display: grid;
|
|
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
|
|
|
|
gap: 16px;
|
|
|
|
|
|
margin-bottom: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ack-option {
|
|
|
|
|
|
padding: 16px;
|
|
|
|
|
|
background: var(--vp-c-bg-soft);
|
|
|
|
|
|
border: 2px solid var(--vp-c-divider);
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
text-align: center;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ack-option.recommended {
|
|
|
|
|
|
border-color: var(--vp-c-success);
|
|
|
|
|
|
background: rgba(34, 197, 94, 0.05);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ack-type {
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
font-size: 15px;
|
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ack-desc {
|
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
|
color: var(--vp-c-text-2);
|
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.ack-risk {
|
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.control-panel {
|
|
|
|
|
|
padding: 16px;
|
|
|
|
|
|
background: var(--vp-c-bg-soft);
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.control-item {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
|
margin-bottom: 12px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.control-item label {
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.action-btn {
|
|
|
|
|
|
padding: 10px 20px;
|
|
|
|
|
|
background: var(--vp-c-brand);
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
border: none;
|
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
|
transition: all 0.2s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.action-btn:hover:not(:disabled) {
|
|
|
|
|
|
opacity: 0.9;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.action-btn:disabled {
|
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
|
cursor: not-allowed;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.btn-group {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.toggle-btn {
|
|
|
|
|
|
padding: 8px 16px;
|
|
|
|
|
|
background: var(--vp-c-bg);
|
|
|
|
|
|
border: 2px solid var(--vp-c-divider);
|
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
|
transition: all 0.2s;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.toggle-btn.active {
|
|
|
|
|
|
border-color: var(--vp-c-brand);
|
|
|
|
|
|
background: var(--vp-c-brand);
|
|
|
|
|
|
color: white;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.info-text {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 8px;
|
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
|
color: var(--vp-c-text-2);
|
|
|
|
|
|
padding: 10px;
|
|
|
|
|
|
background: var(--vp-c-bg);
|
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.info-text.warning {
|
|
|
|
|
|
background: rgba(245, 158, 11, 0.1);
|
|
|
|
|
|
color: #f59e0b;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.info-icon {
|
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.summary-box {
|
|
|
|
|
|
display: flex;
|
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
gap: 12px;
|
|
|
|
|
|
padding: 16px;
|
|
|
|
|
|
background: rgba(59, 130, 246, 0.1);
|
|
|
|
|
|
border: 1px solid rgba(59, 130, 246, 0.2);
|
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
color: var(--vp-c-text-1);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.summary-icon {
|
|
|
|
|
|
font-size: 24px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.summary-content {
|
|
|
|
|
|
flex: 1;
|
2026-02-06 03:34:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
</style>
|