绘图相关调整_(延时解锁-未完)
This commit is contained in:
parent
60b4d6a060
commit
ce0a4f4528
29
src/views/mapsystem/plugin/delayBox.vue
Normal file
29
src/views/mapsystem/plugin/delayBox.vue
Normal 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>
|
19
src/views/mapsystem/plugin/delayInfo.vue
Normal file
19
src/views/mapsystem/plugin/delayInfo.vue
Normal 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>
|
Loading…
Reference in New Issue
Block a user