|
@@ -248,7 +248,7 @@
|
|
|
<!-- 成员 -->
|
|
|
<el-dialog
|
|
|
:close-on-click-modal="false"
|
|
|
- title="成员信息"
|
|
|
+ :title="'成员信息' + ' ('+totalLength+')'"
|
|
|
:visible.sync="persioninfo"
|
|
|
width="500px"
|
|
|
:before-close="persioninfoClose"
|
|
@@ -347,6 +347,7 @@ export default {
|
|
|
//成员
|
|
|
persioninfo: false,
|
|
|
persionList: [],
|
|
|
+ totalLength:"",//总人数
|
|
|
//账单
|
|
|
billList: [],
|
|
|
billShow: false,
|
|
@@ -400,10 +401,12 @@ export default {
|
|
|
carCaptainCommonId: val.commonId,
|
|
|
currentPage: 1,
|
|
|
pageSize: 100,
|
|
|
+ houtaiSearch:1,
|
|
|
})
|
|
|
.then((response) => {
|
|
|
if (response.code == 200) {
|
|
|
this.persionList = response.data.records;
|
|
|
+ this.totalLength = response.data.total
|
|
|
if (this.persionList.length > 0) {
|
|
|
this.persioninfo = true;
|
|
|
} else {
|