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