AutoDateFixing
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
soraefir
2023-07-15 13:06:51 +02:00
parent 5860a6b101
commit 8d4ea6618f
6 changed files with 52 additions and 14 deletions

View File

@ -2,7 +2,7 @@ doctype html
include module/head.pug
main#app
main#app(v-cloak)
include module/nav.pug
include module/journey_sec.pug
include module/journey_step.pug

View File

@ -18,9 +18,9 @@ div(v-for='(e, idx) in journey_data.main' :key='idx')
.col-3.col-ssm-12
.row.text-center
div
label Date Range
label Date Range ({{step_len(idx)}})
.input.text-dark
date-picker(:lang='lang' v-model=map_section+'.dateRange' range='' format='ddd D MMM' placeholder='Date Range')
date-picker(:lang='lang' v-model=map_section+'.dateRange' range='' format='ddd D MMM' placeholder='Date Range' v-on:change='update_date(idx)')
.row.text-center
div
label Hotel

View File

@ -1,5 +1,5 @@
- var map_section = 'journey_data.main[journey_step_data.section]'
.bg-dark.text-white(v-cloak='')
.bg-dark.text-white
.container.section
.aligner.text-center.text-white.text-huge(style='margin-bottom:5px')
.aligner--itemTop.fleft

View File

@ -1,6 +1,6 @@
doctype html
include module/head.pug
main#app
main#app(v-cloak)
include module/nav_pub.pug
div(v-for='(item,idx) in journey_data.main' :class="idx%2===0 ? 'bg-dark text-white' : ''")
include module/short_sec.pug

View File

@ -1,6 +1,6 @@
doctype html
include module/head.pug
main#app
div(v-if='journey_data.main[journey_step_data.section] != undefined' v-cloak='')
main#app(v-cloak)
div(v-if='journey_data.main[journey_step_data.section] != undefined')
include module/view_step.pug
include module/foot.pug