Commit 306cc57d by liangzhen

样式调整

1 parent 5784f94e
......@@ -48,7 +48,7 @@
margin: 0;
padding: 0;
clear: both;
overflow-x: hidden;
overflow: hidden;
}
::-webkit-scrollbar {
......@@ -59,7 +59,7 @@
}
::-webkit-scrollbar-thumb {
border-radius: 8px;
background-color: #ccc;
background-color: rgb(65, 173, 187);
}
</style>
</html>
......@@ -679,6 +679,7 @@ export default {
.el-form {
display: flex;
width: 99%;
height: 17vh;
flex-wrap: wrap;
border-top: 2px solid #23c6c8;
border-left: 1px solid #dee5e7;
......
......@@ -151,7 +151,7 @@ export default {
.mainhome {
font-size: 14px;
position: relative;
min-height: 82vh !important;
min-height: 87vh !important;
width: 100%;
box-sizing: border-box;
overflow-x: hidden;
......
......@@ -490,7 +490,7 @@
<span class="zjquery" @click="xzExperts('dj')"> 查询 </span>
</el-form-item>
</el-form>
<div class="setscrolldialog">
<div class="setscrolldialogzj">
<el-table
@selection-change="handleSelectionChangeZJ"
ref="multipleTableZJ"
......@@ -1316,7 +1316,7 @@ export default {
border-right: 1px solid #dee5e7;
border-bottom: 1px solid #dee5e7;
padding: 20px 10px;
margin-bottom: 20px;
margin: 0;
.fromItem {
min-width: 24%;
margin: 0 0.5%;
......@@ -1525,19 +1525,36 @@ export default {
}
.setscroll {
width: 100%;
height: 650px;
height: 55vh;
position: relative;
overflow: auto;
}
.setscrolldialog {
width: 100%;
height: 300px;
height: 320px;
overflow: auto;
box-sizing: border-box;
/deep/ .el-table {
width: 96% !important;
height: 300px;
height:320px;
overflow: auto;
}
}
.setscrolldialogzj {
width: 100%;
height: 420px;
overflow: auto;
box-sizing: border-box;
/deep/ .el-table {
width: 96% !important;
height:420px;
overflow: auto;
}
}
.eltable {
box-sizing: border-box;
text-align: center;
height: 100%;
overflow-y: auto;
}
</style>
\ No newline at end of file
......@@ -631,7 +631,6 @@ export default {
if (res.code == "200") {
this.tableData = res.data.records;
this.$nextTick(() => {
// myTable是表格的ref属性值
if (this.$refs.multipleTable && this.$refs.multipleTable.doLayout) {
this.$refs.multipleTable.doLayout(); // 解决表格错位
}
......@@ -1115,12 +1114,7 @@ export default {
min-height: 50vh;
}
.setscroll {
width: 100%;
height: 600px;
position: relative;
overflow: auto;
}
.bigdialog {
left: 20vw;
}
......@@ -1213,4 +1207,14 @@ export default {
height: 630px;
overflow-y: auto;
}
.setscroll {
width: 100%;
height: 55vh;
position: relative;
overflow-y: auto;
overflow-x: hidden;
}
/deep/.el-table--scrollable-x .el-table__body-wrapper{
overflow-x: hidden;
}
</style>
\ No newline at end of file
......@@ -337,11 +337,12 @@ export default {
::-webkit-scrollbar-track-piece {
background-color: #f5f5f5;
}
// .mian{
// width: 100%;
// height: 100vh;
// overflow: auto;
.mian{
// width: 100%;
// height: 100vh;
overflow: hidden;
height: 100%;
// }
}
</style>
\ No newline at end of file
......@@ -19,7 +19,7 @@ export default {
height: 100%;
width: 100%;
box-sizing: border-box;
overflow-x: hidden;
overflow: hidden;
}
.continer{
......
......@@ -201,12 +201,12 @@ export default {
.layout {
width: 100%;
// height: 100%;
height: 100vh;
// height: 100vh;
display: flex;
padding: 15px;
background-color: #fff;
position: relative;
// overflow: hidden;
overflow: hidden;
.bar {
width: 235px !important;
height: 100%;
......@@ -217,6 +217,7 @@ export default {
height: 100%;
// flex: 1;
box-sizing: border-box;
overflow: hidden;
// overflow: auto;
}
.changeqx {
......@@ -250,4 +251,14 @@ export default {
color: #fff;
font-size:17px;
}
.el-form{
height: 17vh !important;
margin: 0 !important;
}
.setscroll{
height: 55vh !important;
}
/* .el-table .cell{
height: 24px !important;
} */
</style>
\ No newline at end of file
......@@ -24,7 +24,31 @@ module.exports = defineConfig({
}
},
},
configureWebpack: {
output: {
filename: 'arch/js/[name].[contenthash].js',
chunkFilename: 'arch/js/[name].[contenthash].js'
}
},
css: {
extract: {
// 更改CSS文件的保存位置,例如保存到`/path/to/css/`目录下
filename: 'arch/css/[name].css',
chunkFilename: 'arch/css/[id].css',
},
},
chainWebpack: (config) => {
// 更改字体的输出路径
// config.module
// .rule('fonts')
// .test(/\.(woff2?|eot|ttf|otf)(\?.*)?$/i)
// .use('url-loader')
// .loader('url-loader')
// .tap(options => {
// options.name = 'custom-fonts/[name].[hash:8].[ext]';
// });
config.plugin('html').tap((args) => {
args[0].title = '数字化项目全过程管控平台'
return args
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!