init
This commit is contained in:
@@ -56,41 +56,41 @@
|
||||
</div>
|
||||
|
||||
<!-- Multicolor -->
|
||||
<div>
|
||||
<label class="flex items-center gap-3 cursor-pointer rounded-lg border-2 p-3 transition-all"
|
||||
:class="store.multicolor ? 'border-primary-500 bg-primary-50' : 'border-gray-200 hover:border-gray-300'"
|
||||
>
|
||||
<input
|
||||
type="checkbox"
|
||||
:checked="store.multicolor"
|
||||
@change="toggleMulticolor"
|
||||
class="h-4 w-4 rounded border-gray-300 text-primary-600 focus:ring-primary-500"
|
||||
/>
|
||||
<div>
|
||||
<span class="text-sm font-medium text-gray-900">Многоцветная печать</span>
|
||||
<span class="ml-2 text-xs text-gray-400">(AMS, +30% к стоимости)</span>
|
||||
<p class="text-xs text-gray-500 mt-0.5">Печать несколькими цветами на Bambu Lab AMS</p>
|
||||
</div>
|
||||
</label>
|
||||
</div>
|
||||
<!-- <div>-->
|
||||
<!-- <label class="flex items-center gap-3 cursor-pointer rounded-lg border-2 p-3 transition-all"-->
|
||||
<!-- :class="store.multicolor ? 'border-primary-500 bg-primary-50' : 'border-gray-200 hover:border-gray-300'"-->
|
||||
<!-- >-->
|
||||
<!-- <input-->
|
||||
<!-- type="checkbox"-->
|
||||
<!-- :checked="store.multicolor"-->
|
||||
<!-- @change="toggleMulticolor"-->
|
||||
<!-- class="h-4 w-4 rounded border-gray-300 text-primary-600 focus:ring-primary-500"-->
|
||||
<!-- />-->
|
||||
<!-- <div>-->
|
||||
<!-- <span class="text-sm font-medium text-gray-900">Многоцветная печать</span>-->
|
||||
<!-- <span class="ml-2 text-xs text-gray-400">(AMS, +30% к стоимости)</span>-->
|
||||
<!-- <p class="text-xs text-gray-500 mt-0.5">Печать несколькими цветами на Bambu Lab AMS</p>-->
|
||||
<!-- </div>-->
|
||||
<!-- </label>-->
|
||||
<!-- </div>-->
|
||||
|
||||
<!-- Post-processing -->
|
||||
<div>
|
||||
<label class="mb-2.5 block text-sm font-medium text-gray-700">Постобработка</label>
|
||||
<div class="space-y-2">
|
||||
<label v-for="pp in postProcessingOptions" :key="pp.value" class="flex items-center gap-2.5 cursor-pointer">
|
||||
<input
|
||||
type="checkbox"
|
||||
:value="pp.value"
|
||||
:checked="store.settings.post_processing.includes(pp.value)"
|
||||
@change="togglePP(pp.value)"
|
||||
class="h-4 w-4 rounded border-gray-300 text-primary-600 focus:ring-primary-500"
|
||||
/>
|
||||
<span class="text-sm text-gray-700">{{ pp.label }}</span>
|
||||
<span class="text-xs text-gray-400">{{ pp.price }}</span>
|
||||
</label>
|
||||
</div>
|
||||
</div>
|
||||
<!-- <!– Post-processing –>-->
|
||||
<!-- <div>-->
|
||||
<!-- <label class="mb-2.5 block text-sm font-medium text-gray-700">Постобработка</label>-->
|
||||
<!-- <div class="space-y-2">-->
|
||||
<!-- <label v-for="pp in postProcessingOptions" :key="pp.value" class="flex items-center gap-2.5 cursor-pointer">-->
|
||||
<!-- <input-->
|
||||
<!-- type="checkbox"-->
|
||||
<!-- :value="pp.value"-->
|
||||
<!-- :checked="store.settings.post_processing.includes(pp.value)"-->
|
||||
<!-- @change="togglePP(pp.value)"-->
|
||||
<!-- class="h-4 w-4 rounded border-gray-300 text-primary-600 focus:ring-primary-500"-->
|
||||
<!-- />-->
|
||||
<!-- <span class="text-sm text-gray-700">{{ pp.label }}</span>-->
|
||||
<!-- <span class="text-xs text-gray-400">{{ pp.price }}</span>-->
|
||||
<!-- </label>-->
|
||||
<!-- </div>-->
|
||||
<!-- </div>-->
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user