Compare commits
4 Commits
955512d344
...
7599599910
| Author | SHA1 | Date | |
|---|---|---|---|
| 7599599910 | |||
| 846058fa0f | |||
| 08c2d5bd75 | |||
| 7030dd107c |
@@ -119,7 +119,7 @@ async function submit() {
|
||||
position: fixed;
|
||||
inset: 0;
|
||||
background: rgba(0, 0, 0, 0.35);
|
||||
z-index: 5000;
|
||||
z-index: 6000;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
|
||||
@@ -36,6 +36,17 @@
|
||||
>English</button>
|
||||
</div>
|
||||
|
||||
<!-- Volume selector -->
|
||||
<div class="volume-controls card-volume-controls">
|
||||
<button
|
||||
v-for="(drops, ml) in VOLUME_DROPS"
|
||||
:key="ml"
|
||||
class="volume-btn"
|
||||
:class="{ active: selectedCardVolume === ml }"
|
||||
@click="onCardVolumeChange(ml)"
|
||||
>{{ ml === '单次' ? '单次' : ml + 'ml' }}</button>
|
||||
</div>
|
||||
|
||||
<!-- QR / brand upload hint -->
|
||||
<div v-if="showBrandHint" class="brand-upload-hint">
|
||||
<span class="hint-icon">✨</span>
|
||||
@@ -382,6 +393,7 @@ const viewMode = ref('card')
|
||||
const cardRef = ref(null)
|
||||
const cardImageUrl = ref(null)
|
||||
const cardLang = ref('zh')
|
||||
const selectedCardVolume = ref('单次')
|
||||
const showTranslationEditor = ref(false)
|
||||
const customRecipeNameEn = ref('')
|
||||
const customOilNameEn = ref({})
|
||||
|
||||
Reference in New Issue
Block a user