提交 30df3295 authored 作者: 王天霸's avatar 王天霸

滚动样式修改

上级 7e437e55
...@@ -2,10 +2,10 @@ ...@@ -2,10 +2,10 @@
ENV = 'development' ENV = 'development'
# 正式环境 # 正式环境
#VUE_APP_BASE_API = 'http://sj.jxhh.com/api/v1' VUE_APP_BASE_API = 'http://pop.jxhh.com/api/v1'
# 测试环境 # 测试环境
VUE_APP_BASE_API = 'http://192.168.26.179:6605/api/v1' #VUE_APP_BASE_API = 'http://192.168.26.179:6605/api/v1'
#VUE_APP_BASE_API = 'http://192.168.111.240:6605/api/v1' #VUE_APP_BASE_API = 'http://192.168.111.240:6605/api/v1'
# 文档模块 直接调用 sys开放接口 # 文档模块 直接调用 sys开放接口
......
...@@ -5,9 +5,9 @@ ...@@ -5,9 +5,9 @@
</template> </template>
<script> <script>
export default { export default {
name: 'App' name: 'App'
} }
</script> </script>
<style lang="scss" type="text/stylus"> <style lang="scss" type="text/stylus">
...@@ -30,10 +30,10 @@ export default { ...@@ -30,10 +30,10 @@ export default {
/* --------- 自定义class全局统一样式 ---------- */ /* --------- 自定义class全局统一样式 ---------- */
.app-container { .app-container {
height: 100%; height: 100%;
overflow: auto;
.box-card { .box-card {
height: 100%; /* height: 100%; */
overflow: hidden; /* overflow: hidden; */
} }
} }
...@@ -54,4 +54,4 @@ export default { ...@@ -54,4 +54,4 @@ export default {
} }
} }
/* --- end --- element组件样式重置 -- end ----- */ /* --- end --- element组件样式重置 -- end ----- */
</style> </style>
\ No newline at end of file
...@@ -28,7 +28,7 @@ ...@@ -28,7 +28,7 @@
</el-form> </el-form>
</div> </div>
<el-table :data="withdrawlogList" :height="tableHeight"> <el-table :data="withdrawlogList">
<el-table-column label="序号" align="center" width="55"> <el-table-column label="序号" align="center" width="55">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.$index + 1 }}</span> <span>{{ scope.$index + 1 }}</span>
......
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
</el-form> </el-form>
</div> </div>
<el-table :data="freightList" :height="tableHeight" @selection-change="handleSelectionChange"> <el-table :data="freightList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center"/> <el-table-column type="selection" width="55" align="center"/>
<el-table-column label="ID" align="center" prop="id"/> <el-table-column label="ID" align="center" prop="id"/>
<el-table-column label="模板名称" align="center" prop="name"/> <el-table-column label="模板名称" align="center" prop="name"/>
......
...@@ -48,7 +48,6 @@ ...@@ -48,7 +48,6 @@
<el-table <el-table
ref="msgTableCon" ref="msgTableCon"
:data="msgTableList" :data="msgTableList"
:height="msgConHeight"
style="width: 100%" style="width: 100%"
:header-cell-style="{ :header-cell-style="{
background: '#F9F9FA', background: '#F9F9FA',
...@@ -349,13 +348,13 @@ export default { ...@@ -349,13 +348,13 @@ export default {
<style scoped> <style scoped>
.app-container >>> .el-card { .app-container >>> .el-card {
height: 100%; /* height: 100%; */
overflow: hidden; /* overflow: hidden; */
} }
.app-container >>> .el-card .el-card__body { .app-container >>> .el-card .el-card__body {
height: 100%; /* height: 100%; */
overflow: hidden; /* overflow: hidden; */
} }
.msg-table-con { .msg-table-con {
......
...@@ -1153,20 +1153,20 @@ ...@@ -1153,20 +1153,20 @@
<style scoped> <style scoped>
.box-cardone{ .box-cardone{
height: 100%; /* height: 100%; */
} }
::v-deep .el-range-editor.el-input__inner { ::v-deep .el-range-editor.el-input__inner {
width: 100%; width: 100%;
} }
::v-deep .el-card__body { ::v-deep .el-card__body {
height: calc(100% - 50px); /* height: calc(100% - 50px); */
/* overflow: auto; */ /* overflow: auto; */
} }
.overMain { .overMain {
height: 729px; /* height: 729px; */
overflow: auto; /* overflow: auto; */
padding-top: 15px; padding-top: 15px;
} }
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
</el-form> </el-form>
</div> </div>
<el-table v-loading="loading" :data="addressList" :height="tableHeight"> <el-table v-loading="loading" :data="addressList">
<el-table-column label="序号" prop="id" align="center"></el-table-column> <el-table-column label="序号" prop="id" align="center"></el-table-column>
<el-table-column label="售后地址" prop="address" align="center"> <el-table-column label="售后地址" prop="address" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
......
...@@ -503,12 +503,12 @@ ...@@ -503,12 +503,12 @@
<style scoped> <style scoped>
.card-spe-con { .card-spe-con {
height: 100%; /* height: 100%; */
/*overflow: auto;*/ /*overflow: auto;*/
} }
.card-spe-con ::v-deep .el-card__body { .card-spe-con ::v-deep .el-card__body {
height: calc(100% - 40px); /* height: calc(100% - 40px); */
overflow: hidden; /* overflow: hidden; */
} }
/*::v-deep .el-dialog__body {*/ /*::v-deep .el-dialog__body {*/
/* height: 100%;*/ /* height: 100%;*/
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
> >
</div> </div>
<el-table :data="tableData" :height="tableHeight" style="width: 100%"> <el-table :data="tableData" style="width: 100%">
<el-table-column <el-table-column
prop="logistics_company_name" prop="logistics_company_name"
label="快递公司" label="快递公司"
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
> >
</div> </div>
<!-- 分组表格 --> <!-- 分组表格 -->
<el-table :data="tableData" :height="tableHeight" style="width: 100%"> <el-table :data="tableData" style="width: 100%">
<el-table-column prop="id" label="分组ID" width="180"> <el-table-column prop="id" label="分组ID" width="180">
</el-table-column> </el-table-column>
<el-table-column prop="name" label="分组名称" width="180"> <el-table-column prop="name" label="分组名称" width="180">
......
...@@ -45,7 +45,7 @@ ...@@ -45,7 +45,7 @@
</el-row> </el-row>
</el-form> </el-form>
</div> </div>
<el-table :data="brandList" :height="tableHeight"> <el-table :data="brandList" >
<el-table-column label="品牌名称" prop="brand_cn" align="center"></el-table-column> <el-table-column label="品牌名称" prop="brand_cn" align="center"></el-table-column>
<el-table-column label="品牌经营类型" prop="brand_type" align="center"> <el-table-column label="品牌经营类型" prop="brand_type" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
......
...@@ -15,7 +15,6 @@ ...@@ -15,7 +15,6 @@
<!-- 分组表格 --> <!-- 分组表格 -->
<el-table <el-table
:data="tableData" :data="tableData"
:height="tableHeight"
stripe stripe
style="width: 100%" style="width: 100%"
> >
...@@ -502,6 +501,7 @@ export default { ...@@ -502,6 +501,7 @@ export default {
if (res.code == 1) { if (res.code == 1) {
this.total = res.data.count; this.total = res.data.count;
this.tableData = res.data.list; this.tableData = res.data.list;
} }
}); });
}, },
......
...@@ -68,7 +68,6 @@ ...@@ -68,7 +68,6 @@
<!-- 表格 --> <!-- 表格 -->
<el-table <el-table
:data="tableData" :data="tableData"
:height="tableHeight"
stripe stripe
style="width: 100%" style="width: 100%"
> >
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论