|
@@ -687,16 +687,22 @@ export default {
|
|
|
},
|
|
|
// 确定退款
|
|
|
sureRefund() {
|
|
|
- let Mname = "/ShopServer/Manager/FinanceManager/AuditOrderRefundApply";
|
|
|
- let data = {
|
|
|
- id: this.refundId,
|
|
|
- is_pass: "true",
|
|
|
- refund_amount: this.ktje,
|
|
|
- };
|
|
|
- getLogin(Mname, data).then((res) => {
|
|
|
- this.$message.success("操作成功");
|
|
|
- this.getList();
|
|
|
- this.dialogVisible = false;
|
|
|
+ this.$confirm("确定要退款吗?", "提示", {
|
|
|
+ confirmButtonText: "确定",
|
|
|
+ cancelButtonText: "取消",
|
|
|
+ type: "warning",
|
|
|
+ }).then(() => {
|
|
|
+ let Mname = "/ShopServer/Manager/FinanceManager/AuditOrderRefundApply";
|
|
|
+ let data = {
|
|
|
+ id: this.refundId,
|
|
|
+ is_pass: "true",
|
|
|
+ refund_amount: this.ktje,
|
|
|
+ };
|
|
|
+ getLogin(Mname, data).then((res) => {
|
|
|
+ this.$message.success("操作成功");
|
|
|
+ this.getList();
|
|
|
+ this.dialogVisible = false;
|
|
|
+ });
|
|
|
});
|
|
|
},
|
|
|
handleSizeChange(val) {
|