2019-07-29 13:45:38 +08:00
|
|
|
<template>
|
|
|
|
<div id="statusUpTrainDetail"></div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
name: 'StatusUpTrainDetail',
|
|
|
|
props: {
|
|
|
|
selected: {
|
|
|
|
type: Object
|
|
|
|
}
|
|
|
|
},
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<style>
|
|
|
|
#statusUpTrainDetail {
|
2019-09-03 17:35:23 +08:00
|
|
|
z-index: 1000;
|
2019-07-29 13:45:38 +08:00
|
|
|
position: absolute;
|
|
|
|
height: $height;
|
|
|
|
line-height: $height;
|
|
|
|
border-radius: 0px !important;
|
|
|
|
top: 0px;
|
|
|
|
left: 0px;
|
|
|
|
}
|
|
|
|
</style>
|