Commit 963782c6 by 赵雅纹

Merge branch 'dev_7.1.0' into fixbug-ZYW

parents 428b3a7d d3261de9
...@@ -209,7 +209,7 @@ wxService.page({ ...@@ -209,7 +209,7 @@ wxService.page({
mask: true mask: true
}) })
const params = { id } const params = { id }
wxService.post(`/sale/refund/buyer/cancel`, params).then(res => { wxService.post(`/sale/refund/buyer/cancel?id=${id}`).then(res => {
if (res) { if (res) {
const { result, data } = res.data const { result, data } = res.data
if (result == 0) { if (result == 0) {
......
...@@ -42,8 +42,8 @@ wxService.page({ ...@@ -42,8 +42,8 @@ wxService.page({
title: '加载中', title: '加载中',
mask: true mask: true
}) })
const params = {id} // const params = {id}
wxService.post(`/sale/refund/buyer/cancel`,params).then(res => { wxService.post(`/sale/refund/buyer/cancel?id=${id}`).then(res => {
if (res) { if (res) {
const { result, data } = res.data const { result, data } = res.data
if (result == 0) { if (result == 0) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment