|
@@ -2,15 +2,14 @@
|
|
|
<el-row class="main animate__animated animate__backInLeft">
|
|
|
<el-col :span="24" class="info">
|
|
|
<el-col :span="24" class="tabs">
|
|
|
- <el-col
|
|
|
- :span="3"
|
|
|
+ <div
|
|
|
:class="['tabList', item.id == tabActive ? 'tabActiveList' : '']"
|
|
|
v-for="(item, index) in tabList"
|
|
|
:key="index"
|
|
|
@click="tabChange(item)"
|
|
|
>
|
|
|
{{ item.title }}
|
|
|
- </el-col>
|
|
|
+ </div>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="infoList">
|
|
|
<span v-html="viewData.txt"></span>
|
|
@@ -170,9 +169,11 @@ onMounted(() => {
|
|
|
.info {
|
|
|
.tabs {
|
|
|
display: flex;
|
|
|
+ justify-content: space-between;
|
|
|
margin: 0 0 50px 0;
|
|
|
|
|
|
.tabList {
|
|
|
+ padding: 0 0 10px 0;
|
|
|
text-align: center;
|
|
|
color: rgb(102, 102, 102);
|
|
|
font-family: '黑体';
|