select :value不能绑定到对象属性吗?:value="activeStationGroup.irrigation_scheduler.start_time,选择后,select不变。
这样可以:
<q-select ref="start_time" dense emit-value map-options
:options="timeOptions"
:value="start_time"
@input="val => { setSelect('start_time', val) }"
:rules="[
val => getValue(val) <= getValue(activeStationGroup.irrigation_scheduler.stop_time) - 2 || $t('Start time can not later than stop time before one hour'),
val => validatecCaculate(val) || $t('Irrigate time can not later than stop time')
]">
<template v-slot:before>
<div class="edit-label"> {{$t('Start time')}}(*):</div>
</template>
</q-select>
这样就不可以:
<q-select ref="start_time" dense emit-value map-options
:options="timeOptions"
:value="activeStationGroup.irrigation_scheduler.start_time"
@input="val => { setSelect('start_time', val) }"
:rules="[
val => getValue(val) <= getValue(activeStationGroup.irrigation_scheduler.stop_time) - 2 || $t('Start time can not later than stop time before one hour'),
val => validatecCaculate(val) || $t('Irrigate time can not later than stop time')
]">
<template v-slot:before>
<div class="edit-label"> {{$t('Start time')}}(*):</div>
</template>
</q-select>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…