x
This commit is contained in:
+30
-1
@@ -535,7 +535,7 @@ body {
|
||||
}
|
||||
|
||||
.btn-lg {
|
||||
padding: var(--space-4) var(--space-8);
|
||||
padding: var(--space-4) var(--space-6);
|
||||
font-size: var(--text-base);
|
||||
}
|
||||
|
||||
@@ -544,6 +544,35 @@ body {
|
||||
font-size: var(--text-xs);
|
||||
}
|
||||
|
||||
/* 返回按钮 */
|
||||
.btn-back {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
padding: 6px 14px;
|
||||
margin-bottom: var(--space-3);
|
||||
font-size: 13px;
|
||||
font-weight: var(--font-medium);
|
||||
color: var(--text-secondary);
|
||||
background: var(--bg-secondary);
|
||||
border: 1px solid var(--border-light);
|
||||
border-radius: var(--radius-md);
|
||||
cursor: pointer;
|
||||
transition: all 0.2s ease;
|
||||
text-decoration: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.btn-back:hover {
|
||||
color: var(--primary-700);
|
||||
background: var(--primary-50);
|
||||
border-color: var(--primary-200);
|
||||
}
|
||||
|
||||
.btn-back:active {
|
||||
transform: scale(0.96);
|
||||
}
|
||||
|
||||
.btn:disabled,
|
||||
.btn-disabled {
|
||||
opacity: 0.5;
|
||||
|
||||
+4
-1
@@ -1962,7 +1962,10 @@ const ResultView = {
|
||||
template: `
|
||||
<div class="page-container">
|
||||
<div class="page-header">
|
||||
<button class="btn-back" @click="$router.back()">← 返回</button>
|
||||
<button class="btn-back" @click="$router.back()">
|
||||
<svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round"><path d="M19 12H5M12 19l-7-7 7-7"/></svg>
|
||||
返回
|
||||
</button>
|
||||
<h1>分析结果</h1>
|
||||
</div>
|
||||
<div v-if="state.loading" class="loading-state">
|
||||
|
||||
Reference in New Issue
Block a user