mock, is used in ant-design-pro. Now I"m going to call the test server interface api. 
 I banned mock in .uplohogrc.mock.js 
 modified mock according to ant-design-pro "s official documentation 
// 
const noProxy = (process.env.NO_PROXY === "true");
.
.
.
export default noProxy
  ? {"/*": "http://192.168.6.88"}
  : delay(proxy, 1000);
 but it is local after startup instead of the IP of the test server  http://192.168.6.88. 
  
 


