The field returned by the vue proxy axios cross-domain request is empty, but the same field returned by the tool request is not empty

the field returned by a successful cross-domain vue proxy axios request has no value, but the same field returned by using the tool request is not empty

related codes

proxyTable: {
  "/http": {
    target: "http://dt-dev.arctron.cn",
    changeOrigin: true,
    pathRewrite: {
      "^/http": ""
    }
  }
}

var host = process.env.NODE_ENV === "development" ? "/http/api" : ""
var instance = axios.create({
  baseURL: host
})
Vue.prototype.$ajax = instance

this.$ajax.post("/statistic/getdata", {
    register_id: 104408387592139285,
    from:1536540793,
    to:1536548044,
    split:300
  }).then((res) => {
    console.log(res)
  }).catch((error) => {
    console.log(error)
  })

Jun.10,2021
MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b37181-2b5b3.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b37181-2b5b3.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?