import req from '../utils/request'; // import dictMap from './dictMap'; import {queryApiActionPath} from "../utils/queryConfig"; var localMockHostPath = "http://rap2api.taobao.org/app/mock/230899"; var localhostPath = queryApiActionPath(); // 测试对接接口用地址不用时删除 let csPath = "http://192.168.3.133:8080/expense"; const prefix = "http://scjoyedu.eicp.net:7180/onestop/#" async function request(data) { return req(`${data.url}`, { method: 'POST', body: data.params, }); } //var localhostPath = "http://zyd.cdzhiyong.com:51335" const config = { // dictMap:dictMap, httpServer:localhostPath, httpMockServer:localMockHostPath, prefixServer:localhostPath+prefix, rapFlag: true, onlinePath: '/transacApi/', onlineImagePath: "", cs:csPath, img: csPath+"/upload", rapImagePath: localhostPath, uploadUrl:localhostPath+"/upload", websocketUrl:localhostPath.replace("http","ws")+"/websocket", payUrl:localhostPath+"/createWixinPayCode", checkPath:false, //mobileHost:"http://localhost:51335", //mobileHost:"http://zyd.cdzhiyong.com:51335", mobileUrl:prefix+"/mobile/GHHome", mobileHost:"http://localhost:33333", request:request } export default config