|
@@ -5,11 +5,13 @@
|
5
|
5
|
</div>
|
6
|
6
|
<div class="app-container">
|
7
|
7
|
<el-tabs v-model="activeName" >
|
8
|
|
- <el-tab-pane v-for="item in tabMapOptions" :label="item.label" :key='item.key' :name="item.key" style="display:flex;">
|
|
8
|
+ <el-tab-pane v-for="item in tabMapOptions" :label="item.label" :key='item.key' :name="item.key" >
|
9
|
9
|
<keep-alive>
|
10
|
|
- <div style="display:flex;width:100%;">
|
11
|
|
- <tab-pane v-if='activeName==item.key' :type='item.key' style="flex:1;"></tab-pane>
|
12
|
|
- <tableson v-if='activeName==item.key' :type='item.key' style="flex:1;"></tableson>
|
|
10
|
+ <div >
|
|
11
|
+ <el-row :gutter="24">
|
|
12
|
+ <el-col :span="12"><tab-pane v-if='activeName==item.key' :type='item.key' ></tab-pane></el-col>
|
|
13
|
+ <el-col :span="12"><tableson v-if='activeName==item.key' :type='item.key' ></tableson></el-col>
|
|
14
|
+ </el-row>
|
13
|
15
|
</div>
|
14
|
16
|
</keep-alive>
|
15
|
17
|
</el-tab-pane>
|