fix:修复无法滚动
This commit is contained in:
@@ -37,6 +37,7 @@ a {
|
|||||||
width: auto;
|
width: auto;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
|
overflow-y: scroll;
|
||||||
/* overflow-y: scroll; */
|
/* overflow-y: scroll; */
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
@@ -178,7 +179,6 @@ a {
|
|||||||
|
|
||||||
.content-wrapper{
|
.content-wrapper{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
|
||||||
background: #fff;
|
background: #fff;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
padding: 21px;
|
padding: 21px;
|
||||||
|
|||||||
@@ -9,39 +9,20 @@
|
|||||||
</el-row>
|
</el-row>
|
||||||
</div>
|
</div>
|
||||||
<div class="tab-wrapper">
|
<div class="tab-wrapper">
|
||||||
|
|
||||||
<!-- <el-tabs v-model="tabs" @tab-click="pager.pageNum=1;getlist()">
|
|
||||||
<el-tab-pane label="EngineX" name="EngineX"></el-tab-pane>
|
|
||||||
<el-tab-pane label="DataX" name="DataX"></el-tab-pane>
|
|
||||||
</el-tabs> -->
|
|
||||||
|
|
||||||
<div v-loading="loading">
|
<div v-loading="loading">
|
||||||
<el-table border ref="multipleTable" :data="dataList" tooltip-effect="dark" style="width: 100%"
|
<el-table border ref="multipleTable" :data="dataList" tooltip-effect="dark" style="width: 100%"
|
||||||
@selection-change="handleSelectionChange">
|
@selection-change="handleSelectionChange">
|
||||||
<el-table-column type="selection" width="55">
|
<el-table-column type="selection" width="55" />
|
||||||
</el-table-column>
|
<el-table-column prop="code" width="200" label="资源编号" />
|
||||||
|
<el-table-column prop="name" label="名称" width="" show-overflow-tooltip />
|
||||||
<el-table-column prop="code" width="200" label="资源编号">
|
<el-table-column prop="url" label="路径" width="" show-overflow-tooltip />
|
||||||
</el-table-column>
|
<el-table-column prop="icon" label="图标" width="" show-overflow-tooltip />
|
||||||
|
<el-table-column prop="sort" label="排序" width="" show-overflow-tooltip />
|
||||||
<el-table-column prop="name" label="名称" width="" show-overflow-tooltip>
|
|
||||||
</el-table-column>
|
|
||||||
|
|
||||||
<el-table-column prop="url" label="路径" width="" show-overflow-tooltip>
|
|
||||||
</el-table-column>
|
|
||||||
|
|
||||||
<el-table-column prop="icon" label="图标" width="" show-overflow-tooltip>
|
|
||||||
</el-table-column>
|
|
||||||
|
|
||||||
<el-table-column prop="sort" label="排序" width="" show-overflow-tooltip>
|
|
||||||
</el-table-column>
|
|
||||||
|
|
||||||
<el-table-column prop="birth" label="创建时间" width="" show-overflow-tooltip>
|
<el-table-column prop="birth" label="创建时间" width="" show-overflow-tooltip>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
{{scope.row.birth|formatDate}}
|
{{scope.row.birth|formatDate}}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|
||||||
<el-table-column label="操作" align="center" size="s">
|
<el-table-column label="操作" align="center" size="s">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-tooltip content="编辑" placement="left">
|
<el-tooltip content="编辑" placement="left">
|
||||||
|
|||||||
Reference in New Issue
Block a user