|
@@ -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('操作成功')
|