数通智联化工云平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
742 B

2 years ago
<!--
@ 作者: 鲁智强
2 years ago
@ 时间: 2023-09-19 15:01:23
2 years ago
@ 备注:
-->
2 years ago
<script lang='ts' setup>
2 years ago
import cc from './cc.vue'
2 years ago
import bb from './bb.vue'
import { addPostCont } from '@/api/opk/api'
import {ref} from 'vue'
const number = ref(0);
const chnage = (index:any) => {
number.value = index;
};
2 years ago
</script>
2 years ago
<template class="asd">
<el-tabs @tab-click>
<el-tab-pane :class="{newStyle:0===number}" @click="chnage(0)" label="1231"></el-tab-pane>
<el-tab-pane :class="{newStyle:1===number}" @click="chnage(1)" label="2133"></el-tab-pane>
2 years ago
<div v-show="0===number">
<bb></bb>
</div>
<div v-show="1===number">
<cc></cc>
</div>
</el-tabs>
2 years ago
</template>
2 years ago
<style lang='scss' scoped>
*{
2 years ago
background-color: #fff;
}
.asd{
width:100px;
2 years ago
}
</style>