forked from verdnatura/salix-front
WIP
This commit is contained in:
parent
cc0eb77228
commit
9f1dd4d74d
|
@ -1,3 +1,48 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref } from 'vue';
|
||||||
|
|
||||||
|
const stepperRef = ref(null);
|
||||||
|
const step = ref(1);
|
||||||
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<QCard>Basic Data</QCard>
|
<QStepper v-model="step" ref="stepperRef" color="primary" header-nav animated>
|
||||||
|
<QStep
|
||||||
|
:name="1"
|
||||||
|
title="Select campaign settings"
|
||||||
|
icon="settings"
|
||||||
|
:error="step < 3"
|
||||||
|
:done="step > 1"
|
||||||
|
>
|
||||||
|
For each ad campaign that you create, you can control how much you're willing
|
||||||
|
to spend on clicks and conversions, which networks and geographical locations
|
||||||
|
you want your ads to show on, and more.
|
||||||
|
</QStep>
|
||||||
|
<QStep
|
||||||
|
:name="2"
|
||||||
|
title="Create an ad group"
|
||||||
|
caption="Optional"
|
||||||
|
icon="create_new_folder"
|
||||||
|
:done="step > 2"
|
||||||
|
>
|
||||||
|
An ad group contains one or more ads which target a shared set of keywords.
|
||||||
|
</QStep>
|
||||||
|
|
||||||
|
<template #navigation>
|
||||||
|
<QStepperNavigation>
|
||||||
|
<QBtn
|
||||||
|
@click="stepperRef.next()"
|
||||||
|
color="primary"
|
||||||
|
:label="step === 3 ? 'Finish' : 'Continue'"
|
||||||
|
/>
|
||||||
|
<QBtn
|
||||||
|
v-if="step > 1"
|
||||||
|
flat
|
||||||
|
color="primary"
|
||||||
|
@click="stepperRef.previous()"
|
||||||
|
label="Back"
|
||||||
|
class="q-ml-sm"
|
||||||
|
/>
|
||||||
|
</QStepperNavigation>
|
||||||
|
</template>
|
||||||
|
</QStepper>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
basicData:
|
||||||
|
next: Next
|
||||||
|
back: Back
|
||||||
|
finalize: Finalize
|
|
@ -1,2 +1,6 @@
|
||||||
|
basicData:
|
||||||
|
next: Siguiente
|
||||||
|
back: Anterior
|
||||||
|
finalize: Finalizar
|
||||||
Search ticket: Buscar ticket
|
Search ticket: Buscar ticket
|
||||||
You can search by ticket id or alias: Puedes buscar por id o alias del ticket
|
You can search by ticket id or alias: Puedes buscar por id o alias del ticket
|
||||||
|
|
|
@ -12,7 +12,7 @@ export default {
|
||||||
redirect: { name: 'TicketMain' },
|
redirect: { name: 'TicketMain' },
|
||||||
menus: {
|
menus: {
|
||||||
main: ['TicketList'],
|
main: ['TicketList'],
|
||||||
card: ['TicketBoxing', 'TicketSms', 'TicketSale'],
|
card: ['TicketBasicData', 'TicketBoxing', 'TicketSms', 'TicketSale'],
|
||||||
},
|
},
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue