fix: Issues #198 done.

This commit is contained in:
chiayin
2023-11-22 11:40:28 +08:00
parent 8949476e60
commit c3d9a3d9e4
3 changed files with 7 additions and 1 deletions

View File

@@ -40,6 +40,7 @@
:isSubmitCfmCtEteEnd="isSubmitCfmCtEteEnd"
:isSubmitCfmCtEteSE="isSubmitCfmCtEteSE"
></ConformanceSelectResult>
<!-- Time Range -->
<ConformanceTimeRange
@min-total-seconds="minTotalSeconds"
@max-total-seconds="maxTotalSeconds"

View File

@@ -2,7 +2,7 @@
<div class="flex justify-between items-center">
<Durationjs :max="minVuemax" :min="minVuemin" :size="'min'" :updateMax="updateMax" @total-seconds="minTotalSeconds"></Durationjs>
<span>~</span>
<Durationjs :max="maxVuemax" :min="maxVuemin" :size="'max'" @total-seconds="maxTotalSeconds"></Durationjs>
<Durationjs :max="maxVuemax" :min="maxVuemin" :size="'max'" @total-seconds="maxTotalSeconds"></Durationjs>
</div>
</template>
<script>

View File

@@ -327,6 +327,11 @@ export default {
}
},
},
created() {
this.$emitter.on('reset', (data) => {
this.createData();
});
},
mounted() {
this.inputTypes = this.display.split('');
},