2022-11-20 10:21:02 +01:00
|
|
|
<template>
|
2022-11-23 10:27:36 +01:00
|
|
|
<div v-if="!!myrec">
|
2022-11-20 10:21:02 +01:00
|
|
|
{{label}}
|
|
|
|
|
<q-select
|
|
|
|
|
rounded
|
|
|
|
|
style="min-width: 150px"
|
|
|
|
|
outlined
|
2022-11-23 10:27:36 +01:00
|
|
|
v-model="myrec.name"
|
2022-11-20 10:21:02 +01:00
|
|
|
:options="tools.SelectListAnimation"
|
|
|
|
|
@update:model-value="updateClass"
|
|
|
|
|
dense
|
|
|
|
|
label="Tipo:"
|
|
|
|
|
emit-value
|
|
|
|
|
map-options
|
|
|
|
|
>
|
|
|
|
|
</q-select>
|
|
|
|
|
|
|
|
|
|
<q-select
|
|
|
|
|
rounded
|
|
|
|
|
style="min-width: 150px"
|
|
|
|
|
outlined
|
2022-11-23 10:27:36 +01:00
|
|
|
v-model="myrec.clduration"
|
2022-11-20 10:21:02 +01:00
|
|
|
:options="tools.SelectListSpeed"
|
|
|
|
|
@update:model-value="updateClass"
|
|
|
|
|
dense
|
|
|
|
|
label="Speed:"
|
|
|
|
|
emit-value
|
|
|
|
|
map-options
|
|
|
|
|
>
|
|
|
|
|
</q-select>
|
|
|
|
|
|
|
|
|
|
<q-select
|
|
|
|
|
rounded
|
|
|
|
|
style="min-width: 150px"
|
|
|
|
|
outlined
|
2022-11-23 10:27:36 +01:00
|
|
|
v-model="myrec.cldelay"
|
2022-11-20 10:21:02 +01:00
|
|
|
:options="tools.SelectListDelay"
|
|
|
|
|
@update:model-value="updateClass"
|
|
|
|
|
dense
|
|
|
|
|
label="Ritardo:"
|
|
|
|
|
emit-value
|
|
|
|
|
map-options
|
|
|
|
|
>
|
|
|
|
|
</q-select>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" src="./CSelectAnimation.ts">
|
|
|
|
|
</script>
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
@import './CSelectAnimation.scss';
|
|
|
|
|
</style>
|