|
|
@@ -191,6 +191,11 @@ export default {
|
|
|
type: 'primary',
|
|
|
label: '记录',
|
|
|
click: (row, index) => { return this.haldRecord(row) },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: 'primary',
|
|
|
+ label: '明细',
|
|
|
+ click: (row, index) => { return this.haldRecordDetail(row) },
|
|
|
}
|
|
|
]
|
|
|
|
|
|
@@ -215,8 +220,7 @@ export default {
|
|
|
},
|
|
|
haldRecordDetail(row) {
|
|
|
this.dialogVisiblerecordDetail = true
|
|
|
- this.getListrecorddetail()
|
|
|
- this.recorddetailids = row.ids
|
|
|
+ this.getListrecorddetail(row)
|
|
|
},
|
|
|
getListrecorddetail(data) {
|
|
|
this.findPageDetailrecorddatail(data)
|
|
|
@@ -224,11 +228,22 @@ export default {
|
|
|
findPageDetailrecorddatail(data) {
|
|
|
this.tableConfigDetailrecorddetail.loading = true;
|
|
|
this.$api.task
|
|
|
- .fncplyFeeQuery({ ...data,ids:this.recorddetailids })
|
|
|
+ .fncplyFeeQuery({
|
|
|
+ partnerCompaniesId: data.partnerCompaniesId,
|
|
|
+ agreementType: '2',
|
|
|
+ handlingFeesStatus: '1',
|
|
|
+ isNotCar:'1',
|
|
|
+ ...this.pageDatarecorddetail
|
|
|
+ })
|
|
|
.then(res => {
|
|
|
if (res.code == 200) {
|
|
|
+ this.recordDetailData = res.data.content;
|
|
|
+ this.pageDatarecorddetail = {
|
|
|
+ pageNum: res.data.pageNum,
|
|
|
+ pageSize: res.data.pageSize,
|
|
|
+ totalSize: res.data.totalSize,
|
|
|
+ }
|
|
|
this.tableConfigDetailrecorddetail.loading = false;
|
|
|
- this.recordDetailData = res.data.content ? res.data.content : []
|
|
|
}
|
|
|
else {
|
|
|
this.tableConfigDetailrecorddetail.loading = false;
|