bugfix 240110qun

This commit is contained in:
lb
2024-01-10 11:27:04 +08:00
parent e544b91861
commit 593c9f7d60
5 changed files with 326 additions and 18 deletions

View File

@@ -62,7 +62,7 @@ export default {
url,
method,
params: (method === 'get' || method === 'delete') ? payload : null,
data: method !== 'get' ? payload : null,
data: (method === 'get' || method === 'delete') ? null : payload
})
},
put(payload) {