config.js 1.2 KB
Newer Older
徐立's avatar
徐立 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42

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