src/utils/request.js
@@ -141,6 +141,7 @@ */ postJ: function(url, data={}, config={}) { return new Promise((resolve, reject) => { console.log(qsStringify(data)) axios({ method: 'post', url: url, @@ -204,7 +205,7 @@ axios({ method: 'delete', url: url, data: data, params: data, ...config }).then((response) => { resolve(response.data);