From 6b4e897cdb41dfbbcb45b0d4667c8ad7c6d630b4 Mon Sep 17 00:00:00 2001
From: zhaoxiaoqiang
Date: Mon, 17 May 2021 09:09:08 +0800
Subject: [PATCH] 删除文件
---
src/views/product/wxScore-detail.vue | 14 +++++++++-----
1 files changed, 9 insertions(+), 5 deletions(-)
diff --git a/src/views/product/wxScore-detail.vue b/src/views/product/wxScore-detail.vue
index f612e1b..09c01ad 100644
--- a/src/views/product/wxScore-detail.vue
+++ b/src/views/product/wxScore-detail.vue
@@ -59,13 +59,16 @@
},
created() {
- this.$api.wxScoreDetail({
- id:this.$route.query.orderId
- }).then(res => {
- this.form = res.body || {};
- }, err => err);
+ this.getDetail();
},
methods: {
+ getDetail() {
+ this.$api.wxScoreDetail({
+ id:this.$route.query.orderId
+ }).then(res => {
+ this.form = res.body || {};
+ }, err => err);
+ },
//退款
refund() {
this.$dialog.confirm({
@@ -90,6 +93,7 @@
this.$api.wxScoreSendOrder({
id:this.form.id
}).then(res => {
+ this.getDetail();
this.$tool.toast('推送完成');
}, err => err);
}).catch(() => {
--
Gitblit v1.8.0