|
|
@@ -409,7 +409,7 @@ export default {
|
|
|
label: "模板上传",
|
|
|
prop: "excelFile",
|
|
|
type: "upload",
|
|
|
- showFileList:false,
|
|
|
+ showFileList: false,
|
|
|
drag: true,
|
|
|
loadText: "模板上传中,请稍等",
|
|
|
span: 24,
|
|
|
@@ -1087,6 +1087,7 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
searchChange(params, done) {
|
|
|
+ done();
|
|
|
this.page2 = {
|
|
|
currentPage: 1,
|
|
|
total: 0,
|
|
|
@@ -1096,7 +1097,6 @@ export default {
|
|
|
this.pageData2 = [];
|
|
|
this.tableData = [];
|
|
|
this.finAccBillsVOList = [];
|
|
|
- done();
|
|
|
if (!this.form.id) {
|
|
|
return this.$message.error("请保存数据");
|
|
|
}
|
|
|
@@ -1113,8 +1113,8 @@ export default {
|
|
|
...this.form
|
|
|
};
|
|
|
finstlbillsAdd(obj).then(res => {
|
|
|
- this.form.version = res.data.data.version;
|
|
|
- });
|
|
|
+ this.form.version = res.data.data.version;
|
|
|
+ });
|
|
|
this.finstlbillslistAccBillV1fun();
|
|
|
}
|
|
|
},
|
|
|
@@ -1472,7 +1472,7 @@ export default {
|
|
|
obj.businessDateStart = this.search.businessDateStart;
|
|
|
obj.businessDateEnd = this.search.businessDateEnd;
|
|
|
obj.operatorName = this.search.operatorName;
|
|
|
- obj.trackingNumber = this.search.trackingNumber;
|
|
|
+ obj.trackingNumber = this.search.trackingNumber;
|
|
|
finstlbillslistAccBillByCorp(obj).then(res => {
|
|
|
this.retrievePopupsType = true;
|
|
|
this.retrievePopupsData = res.data.data;
|
|
|
@@ -1482,6 +1482,7 @@ export default {
|
|
|
finstlbillslistAccBillV1fun() {
|
|
|
let obj = {};
|
|
|
obj.type = "2";
|
|
|
+ obj.operationType="付费申请";
|
|
|
obj.branchId = this.form.branchId;
|
|
|
obj.branchName = this.form.branchName;
|
|
|
obj.corpCnName = this.form.corpId; // 付费对象
|
|
|
@@ -1498,7 +1499,7 @@ export default {
|
|
|
obj.businessDateStart = this.search.businessDateStart;
|
|
|
obj.businessDateEnd = this.search.businessDateEnd;
|
|
|
obj.operatorName = this.search.operatorName;
|
|
|
- obj.trackingNumber = this.search.trackingNumber;
|
|
|
+ obj.trackingNumber = this.search.trackingNumber;
|
|
|
const loading = this.$loading({
|
|
|
lock: true,
|
|
|
text: "加载中",
|
|
|
@@ -1592,7 +1593,11 @@ export default {
|
|
|
feeItemsDelete(obj)
|
|
|
.then(res => {
|
|
|
this.$message.success("删除成功");
|
|
|
- this.getDetail(this.form.id);
|
|
|
+ if (this.tableData.length) {
|
|
|
+ this.getDetail(this.form.id, "search2");
|
|
|
+ } else {
|
|
|
+ this.getDetail(this.form.id);
|
|
|
+ }
|
|
|
})
|
|
|
.finally(() => {
|
|
|
loading.close();
|
|
|
@@ -1622,7 +1627,11 @@ export default {
|
|
|
feeItemsDelete(obj)
|
|
|
.then(res => {
|
|
|
this.$message.success("删除成功");
|
|
|
- this.getDetail(this.form.id);
|
|
|
+ if (this.tableData.length) {
|
|
|
+ this.getDetail(this.form.id, "search2");
|
|
|
+ } else {
|
|
|
+ this.getDetail(this.form.id);
|
|
|
+ }
|
|
|
})
|
|
|
.finally(() => {
|
|
|
loading.close();
|