|
|
@@ -2,8 +2,11 @@
|
|
|
<div>
|
|
|
<el-table
|
|
|
:data="tableData"
|
|
|
- style="width: 100%"
|
|
|
- height="500"
|
|
|
+ border
|
|
|
+ style="width: 100%;min-height: 700px"
|
|
|
+ :header-cell-style="{height:'50px',color:'#606266',fontWeight:'400',fontSize:'14px'}"
|
|
|
+ :cell-style="{height:'33px',color:'#666666',fontWeight:'400'}"
|
|
|
+ height="960px"
|
|
|
size="small">
|
|
|
<el-table-column
|
|
|
prop="depfullname"
|
|
|
@@ -11,7 +14,7 @@
|
|
|
width="120"
|
|
|
fixed>
|
|
|
<template slot-scope="scope">
|
|
|
- <p :style="{textIndent:scope.row.level === 0?'10px':''}">{{scope.row.level === 0?'--':scope.row.depfullname}}</p>
|
|
|
+ <p :style="{textIndent:scope.row.level === 0?'10px':''}">{{scope.row.depfullname}}</p>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
@@ -240,12 +243,11 @@
|
|
|
<div class="container normal-panel" style="text-align:right">
|
|
|
<el-pagination
|
|
|
background
|
|
|
- small
|
|
|
@size-change="handleSizeChange"
|
|
|
@current-change="handleCurrentChange"
|
|
|
:current-page="currentPage"
|
|
|
:page-sizes="[20, 50, 100, 200]"
|
|
|
- layout="total,sizes, prev, pager, next, jumper"
|
|
|
+ :page-size="100"
|
|
|
:total="total">
|
|
|
</el-pagination>
|
|
|
</div>
|
|
|
@@ -265,7 +267,7 @@ export default {
|
|
|
"content": {
|
|
|
"sa_salestargetbillid": this.$route.query.id,
|
|
|
"pageNumber": 1,
|
|
|
- "pageSize": 20,
|
|
|
+ "pageSize": 999,
|
|
|
"where":{
|
|
|
"condition":""
|
|
|
}
|