|
|
@@ -1152,7 +1152,6 @@ export default {
|
|
|
.then(res => {
|
|
|
this.$message.success("操作成功");
|
|
|
this.$emit(type);
|
|
|
- this.finstlbillslistAccBillV1fun()
|
|
|
})
|
|
|
.finally(() => {
|
|
|
this.pageLoading = false;
|
|
|
@@ -1163,7 +1162,6 @@ export default {
|
|
|
.then(res => {
|
|
|
this.form = res.data.data;
|
|
|
this.finstlbillsConfirmReconciliationfun();
|
|
|
- this.finstlbillslistAccBillV1fun()
|
|
|
})
|
|
|
.catch(() => {
|
|
|
this.pageLoading = false;
|
|
|
@@ -1173,8 +1171,7 @@ export default {
|
|
|
finstlbillsSubmit(this.form)
|
|
|
.then(res => {
|
|
|
this.$message.success("操作成功");
|
|
|
- this.finstlbillsDetailfun(res.data.data.id);
|
|
|
- this.finstlbillslistAccBillV1fun()
|
|
|
+ this.finstlbillsDetailfun(res.data.data.id,type);
|
|
|
})
|
|
|
.finally(() => {
|
|
|
this.pageLoading = false;
|
|
|
@@ -1214,11 +1211,14 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
// 详情接口
|
|
|
- finstlbillsDetailfun(id) {
|
|
|
+ finstlbillsDetailfun(id,type) {
|
|
|
this.pageLoading = true;
|
|
|
finstlbillsDetail(id)
|
|
|
.then(res => {
|
|
|
this.form = res.data.data;
|
|
|
+ if(type=='query'){
|
|
|
+ this.finstlbillslistAccBillV1fun();
|
|
|
+ }
|
|
|
if (
|
|
|
this.roleName.indexOf("admin") == -1
|
|
|
? this.roleName.indexOf("允许修改他人业务") == -1
|
|
|
@@ -1672,7 +1672,7 @@ export default {
|
|
|
},
|
|
|
// 确认选定行
|
|
|
allCell() {
|
|
|
- this.editCustomer();
|
|
|
+ this.editCustomer('query');
|
|
|
},
|
|
|
// 确认选定行
|
|
|
addSelectionChange(arr) {
|