|
@@ -679,6 +679,25 @@ export default {
|
|
|
this.getList();
|
|
|
this.closeVisible = false;
|
|
|
}
|
|
|
+ if (res.code == 206) {
|
|
|
+ this.$confirm(res.msg, "提示", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ }).then(() => {
|
|
|
+ cancelGroup({
|
|
|
+ groupId: this.activeRow.id,
|
|
|
+ groupType: "PRACTICE",
|
|
|
+ refundAmount: this.closeForm.money,
|
|
|
+ confirmReturnActivityGive: true,
|
|
|
+ }).then((res) => {
|
|
|
+ if (res.code == 200) {
|
|
|
+ this.$message.success("关闭成功");
|
|
|
+ this.getList();
|
|
|
+ this.closeVisible = false;
|
|
|
+ }
|
|
|
+ });
|
|
|
+ });
|
|
|
+ }
|
|
|
});
|
|
|
},
|
|
|
resetMemo(row) {
|