|
|
@@ -521,6 +521,7 @@ export default {
|
|
|
},
|
|
|
/** 新增按钮操作 */
|
|
|
handleAdd() {
|
|
|
+ this.resetQuery();
|
|
|
Cookies.set("/creditLine/addCreditLine/", this.$route.fullPath)
|
|
|
this.$router.push("/creditLine/addCreditLine/");
|
|
|
},
|
|
|
@@ -529,6 +530,7 @@ export default {
|
|
|
const zfpcrId = row.zfpcrId || this.ids;
|
|
|
const zfiAmount = row.zfiAmount;
|
|
|
const usableAmount = row.usableAmount;
|
|
|
+ this.resetQuery();
|
|
|
Cookies.set("/creditLine/editCreditLine/" + zfpcrId + '/' + zfiAmount + '/' + usableAmount + '/', this.$route.fullPath)
|
|
|
this.$router.push("/creditLine/editCreditLine/" + zfpcrId + '/' + zfiAmount + '/' + usableAmount + '/');
|
|
|
},
|
|
|
@@ -537,6 +539,7 @@ export default {
|
|
|
const zfpcrId = row.zfpcrId || this.ids;
|
|
|
const zfiAmount = row.zfiAmount;
|
|
|
const usableAmount = row.usableAmount;
|
|
|
+ this.resetQuery();
|
|
|
Cookies.set("/creditLine/detailCreditLine/" + zfpcrId + '/' + zfiAmount + '/' + usableAmount + '/', this.$route.fullPath)
|
|
|
this.$router.push("/creditLine/detailCreditLine/" + zfpcrId + '/' + zfiAmount + '/' + usableAmount + '/',);
|
|
|
},
|
|
|
@@ -565,6 +568,7 @@ export default {
|
|
|
handleSupplier(row){
|
|
|
const zfpcrId = row.zfpcrId || this.ids;
|
|
|
const zfpcrCompanyId = row.zfpcrCompanyId;
|
|
|
+ this.resetQuery();
|
|
|
Cookies.set("/creditLine/supplierCreditLine/" + zfpcrId + '/' + zfpcrCompanyId, this.$route.fullPath)
|
|
|
this.$router.push("/creditLine/supplierCreditLine/" + zfpcrId + '/' + zfpcrCompanyId);
|
|
|
},
|