12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <template>
- <el-scrollbar v-if="currTab == 0" :height="height">
- 升压站 1
- </el-scrollbar>
- <el-scrollbar v-if="currTab == 1" :height="height">
- 2
- </el-scrollbar>
- <el-scrollbar v-if="currTab == 2" :height="height">
- 3
- </el-scrollbar>
- <el-scrollbar v-if="currTab == 3" :height="height">
- 4
- </el-scrollbar>
- <el-scrollbar v-if="currTab == 4" :height="height">
- 5
- </el-scrollbar>
- </template>
- <script>
- export default {
- components: {
-
- },
- data() {
- return {
-
- };
- },
- props:{
- currTab:{
- type: Number
- },
- height: {
- type: String
- },
- },
- methods:{
-
- },
- created() {
- },
- mounted() {},
- };
- </script>
- <style lang="less" scoped>
- </style>
|