Browse Source

feat: 充值订单管理 - 回传新增参数

zhengxy 1 year ago
parent
commit
232a5c93bd
1 changed files with 5 additions and 2 deletions
  1. 5 2
      project/src/components/orderManage/charge.vue

+ 5 - 2
project/src/components/orderManage/charge.vue

@@ -511,11 +511,14 @@ export default {
511 511
         console.log(error)
512 512
       }
513 513
     },
514
-    async handleReport({ order_id }) {
514
+    async handleReport({ order_id, id }) {
515 515
       try {
516 516
         this.loading = true
517 517
         const url = `${this.URL.BASEURL}${this.URL.charge_actionUpload}`
518
-        const params = { order_id }
518
+        const params = {
519
+          order_id,
520
+          order_data_id: id,
521
+        }
519 522
         const { data: res = {} } = await this.$axios.post(url, params)
520 523
         if (res && res.errno == 0) {
521 524
           this.$message.success('操作成功')