|
|
@@ -2369,12 +2369,20 @@ export default {
|
|
|
teamId: this.assemblyForm.teamId,
|
|
|
teamName: this.assemblyForm.teamName
|
|
|
}
|
|
|
+ const loading = this.$loading({
|
|
|
+ lock: true,
|
|
|
+ text: '加载中',
|
|
|
+ spinner: 'el-icon-loading',
|
|
|
+ background: 'rgba(255,255,255,0.7)'
|
|
|
+ });
|
|
|
finaccbillsGenerateBill(obj).then(res => {
|
|
|
this.$message({
|
|
|
type: "success",
|
|
|
message: "操作成功!"
|
|
|
});
|
|
|
this.$emit('billsDetailfun')
|
|
|
+ }).finally(() => {
|
|
|
+ loading.close()
|
|
|
})
|
|
|
},
|
|
|
// 撤销账单接口
|
|
|
@@ -2382,12 +2390,20 @@ export default {
|
|
|
const obj = {
|
|
|
feeCenterList: list,
|
|
|
}
|
|
|
+ const loading = this.$loading({
|
|
|
+ lock: true,
|
|
|
+ text: '加载中',
|
|
|
+ spinner: 'el-icon-loading',
|
|
|
+ background: 'rgba(255,255,255,0.7)'
|
|
|
+ });
|
|
|
finaccbillsRevokeBill(obj).then(res => {
|
|
|
this.$message({
|
|
|
type: "success",
|
|
|
message: "操作成功!"
|
|
|
});
|
|
|
this.$emit('billsDetailfun')
|
|
|
+ }).finally(() => {
|
|
|
+ loading.close()
|
|
|
})
|
|
|
},
|
|
|
// 一键编辑
|