fix: Issues #198 done.
This commit is contained in:
@@ -40,6 +40,7 @@
|
|||||||
:isSubmitCfmCtEteEnd="isSubmitCfmCtEteEnd"
|
:isSubmitCfmCtEteEnd="isSubmitCfmCtEteEnd"
|
||||||
:isSubmitCfmCtEteSE="isSubmitCfmCtEteSE"
|
:isSubmitCfmCtEteSE="isSubmitCfmCtEteSE"
|
||||||
></ConformanceSelectResult>
|
></ConformanceSelectResult>
|
||||||
|
<!-- Time Range -->
|
||||||
<ConformanceTimeRange
|
<ConformanceTimeRange
|
||||||
@min-total-seconds="minTotalSeconds"
|
@min-total-seconds="minTotalSeconds"
|
||||||
@max-total-seconds="maxTotalSeconds"
|
@max-total-seconds="maxTotalSeconds"
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
<div class="flex justify-between items-center">
|
<div class="flex justify-between items-center">
|
||||||
<Durationjs :max="minVuemax" :min="minVuemin" :size="'min'" :updateMax="updateMax" @total-seconds="minTotalSeconds"></Durationjs>
|
<Durationjs :max="minVuemax" :min="minVuemin" :size="'min'" :updateMax="updateMax" @total-seconds="minTotalSeconds"></Durationjs>
|
||||||
<span>~</span>
|
<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>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
|
|||||||
@@ -327,6 +327,11 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
created() {
|
||||||
|
this.$emitter.on('reset', (data) => {
|
||||||
|
this.createData();
|
||||||
|
});
|
||||||
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
this.inputTypes = this.display.split('');
|
this.inputTypes = this.display.split('');
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user