|
@@ -51,7 +51,6 @@ export default {
|
|
|
},
|
|
},
|
|
|
dialogVisiblerecordDetail: false,
|
|
dialogVisiblerecordDetail: false,
|
|
|
dialogVisiblerecord: false,
|
|
dialogVisiblerecord: false,
|
|
|
- recorddetailids:'',
|
|
|
|
|
tableConfigDetailrecorddetail: {
|
|
tableConfigDetailrecorddetail: {
|
|
|
columns: [
|
|
columns: [
|
|
|
{
|
|
{
|
|
@@ -239,8 +238,7 @@ export default {
|
|
|
},
|
|
},
|
|
|
haldRecordDetail(row) {
|
|
haldRecordDetail(row) {
|
|
|
this.dialogVisiblerecordDetail = true
|
|
this.dialogVisiblerecordDetail = true
|
|
|
- this.getListrecorddetail()
|
|
|
|
|
- this.recorddetailids = row.ids
|
|
|
|
|
|
|
+ this.getListrecorddetail(row)
|
|
|
},
|
|
},
|
|
|
getListrecorddetail(data) {
|
|
getListrecorddetail(data) {
|
|
|
this.findPageDetailrecorddatail(data)
|
|
this.findPageDetailrecorddatail(data)
|
|
@@ -248,11 +246,22 @@ export default {
|
|
|
findPageDetailrecorddatail(data) {
|
|
findPageDetailrecorddatail(data) {
|
|
|
this.tableConfigDetailrecorddetail.loading = true;
|
|
this.tableConfigDetailrecorddetail.loading = true;
|
|
|
this.$api.task
|
|
this.$api.task
|
|
|
- .fncplyFeeQuery({ ...data,ids:this.recorddetailids })
|
|
|
|
|
|
|
+ .fncplyFeeQuery({
|
|
|
|
|
+ partnerCompaniesId: data.partnerCompaniesId,
|
|
|
|
|
+ agreementType: '2',
|
|
|
|
|
+ handlingFeesStatus: '1',
|
|
|
|
|
+ isNotCar:'1',
|
|
|
|
|
+ ...this.pageDatarecorddetail
|
|
|
|
|
+ })
|
|
|
.then(res => {
|
|
.then(res => {
|
|
|
if (res.code == 200) {
|
|
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.tableConfigDetailrecorddetail.loading = false;
|
|
|
- this.recordDetailData = res.data.content ? res.data.content : []
|
|
|
|
|
}
|
|
}
|
|
|
else {
|
|
else {
|
|
|
this.tableConfigDetailrecorddetail.loading = false;
|
|
this.tableConfigDetailrecorddetail.loading = false;
|