绘图相关调整_(延时解锁-未完)

This commit is contained in:
fan 2019-12-04 18:41:45 +08:00
parent 60b4d6a060
commit ce0a4f4528
4 changed files with 288 additions and 240 deletions

View File

@ -0,0 +1,29 @@
<template>
<div v-if="delayShow">
<div v-for="item in delayInfoList" />
</div>
</template>
<script>
import DelayInfo from './delayInfo';
export default {
name: 'DelayBox',
data() {
return {
delayShow: false,
delayInfoList: []
};
},
methods: {
doShow() {
}
}
};
</script>
<style scoped>
</style>

View File

@ -0,0 +1,19 @@
<template>
<div><span>人解</span><span>信号机名</span><span>时间</span></div>
</template>
<script>
export default {
name: 'DelayInfo',
props: {
delayInformation: {
type: Object,
required: true
}
}
};
</script>
<style scoped>
</style>