Commit 726796d1 by liangzhen

修复滚动条问题

1 parent 5e947894
...@@ -1243,8 +1243,8 @@ h3 { ...@@ -1243,8 +1243,8 @@ h3 {
.eltable { .eltable {
box-sizing: border-box; box-sizing: border-box;
text-align: center; text-align: center;
// width: 150%; width: 150%;
// min-width: 150%; min-width: 150%;
} }
/deep/.el-table--scrollable-x .el-table__body-wrapper { /deep/.el-table--scrollable-x .el-table__body-wrapper {
overflow-x: hidden !important; overflow-x: hidden !important;
......
...@@ -101,7 +101,8 @@ ...@@ -101,7 +101,8 @@
> >
<el-table-column label="序号" width="55" type="index"> </el-table-column> <el-table-column label="序号" width="55" type="index"> </el-table-column>
<el-table-column type="selection"> </el-table-column> <el-table-column type="selection"> </el-table-column>
<el-table-column prop="projectYear" label="项目年度" width="auto"> <el-table-column prop="projectYear" label="项目年度" width="120">
<template slot-scope="scope"> {{ scope.row.projectYear }}</template>
</el-table-column> </el-table-column>
<el-table-column prop="dwmc" label="单位名称" width="auto"> <el-table-column prop="dwmc" label="单位名称" width="auto">
</el-table-column> </el-table-column>
......
...@@ -97,7 +97,8 @@ ...@@ -97,7 +97,8 @@
> >
<el-table-column label="序号" width="55" type="index"> </el-table-column> <el-table-column label="序号" width="55" type="index"> </el-table-column>
<el-table-column type="selection"> </el-table-column> <el-table-column type="selection"> </el-table-column>
<el-table-column label="项目年度" width="auto" prop="projectYear"> <el-table-column prop="projectYear" label="项目年度" width="120">
<template slot-scope="scope"> {{ scope.row.projectYear }}</template>
</el-table-column> </el-table-column>
<el-table-column prop="projectId" label="项目编码" width="auto"> <el-table-column prop="projectId" label="项目编码" width="auto">
</el-table-column> </el-table-column>
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!