liyongli 3 years ago
parent
commit
25b60b132c
1 changed files with 0 additions and 1 deletions
  1. 0 1
      src/utils/request.js

+ 0 - 1
src/utils/request.js

@@ -24,7 +24,6 @@ export default function (ori) {
     if (method === "GET") url +=  getdata(ori.data || {});
     xhttp.open(method, url, true);
     xhttp.setRequestHeader("Content-type", "application/json");
-    console.log(ori.data)
     method === "GET" ? xhttp.send() : xhttp.send(JSON.stringify(ori.data));
     xhttp.onreadystatechange = function () {
       if (this.readyState != 4) return;