|
|
@ -30,10 +30,10 @@ |
|
|
|
<div> |
|
|
|
<div class="listtop"> |
|
|
|
<div class="tit">客户账单汇总列表</div> |
|
|
|
<pageye v-show="list.length > 0" :total="listQuery.total" :page.sync="listQuery.current" :limit.sync="listQuery.size" class="pagination" @pagination="getList" show-summary :summary-method="getSummaries" /> |
|
|
|
<pageye v-show="list.length > 0" :total="listQuery.total" :page.sync="listQuery.current" :limit.sync="listQuery.size" class="pagination" @pagination="getList" /> |
|
|
|
</div> |
|
|
|
<div class=""> |
|
|
|
<el-table :key="tableKey" v-loading="listLoading" :data="list" border style="width: 100%"> |
|
|
|
<el-table :key="tableKey" v-loading="listLoading" :data="list" border style="width: 100%" show-summary :summary-method="getSummaries"> |
|
|
|
<el-table-column width="80" label="序号" type="index" :index="indexMethod" align="center"/> |
|
|
|
<el-table-column label="操作" align="center" width="100"> |
|
|
|
<template slot-scope="scope"> |
|
|
@ -56,8 +56,8 @@ |
|
|
|
</div> |
|
|
|
<el-dialog :visible.sync="outerVisible" width="80%"> |
|
|
|
<div> |
|
|
|
<el-table :key="outerKey" :data="outerList" :index="index" border style="width: 100%"> |
|
|
|
<el-table-column fixed width="60" label="序号" type="index" :index="index + 1" align="center" show-summary :summary-method="getSummaries" /> |
|
|
|
<el-table :key="outerKey" :data="outerList" :index="index" border style="width: 100%" show-summary :summary-method="getSummaries"> |
|
|
|
<el-table-column fixed width="60" label="序号" type="index" :index="index + 1" align="center" /> |
|
|
|
<el-table-column label="操作" align="center" width="100"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-button type="primary" size="small" @click="lookInfo(scope.row)">查看</el-button> |
|
|
|