12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- // test 测试环境
- const test = {
- BASE_URL: "http://192.168.1.222:5055",
- BASE_IMG_URL: "https://file-dev.xyyxt.net/",
- domain: "h.xyyxt.net",
- tenantId: "867735392558919680", //详粤云学堂
- appid: "wxd3c8ae80cf43a305",
- };
- const index = 0; // 测试环境
- // const index = 1; // 祥粤云学堂
- // const index = 2 // 祥粤学堂
- // const index = 3 // 勘设云学堂
- // const index = 4 // 中正云学堂
- // const index = 5 // 山西云学堂
- const set = [
- test,
- // 祥粤云学堂
- {
- BASE_URL: "https://api.xyyxt.net",
- BASE_IMG_URL: "https://file.xyyxt.net/",
- tenantId: "867735392558919680",
- appid: "wxd3c8ae80cf43a305",
- tenantName: "祥粤云学堂",
- },
- // 祥粤学堂
- {
- BASE_URL: "https://api.xyyxt.net",
- BASE_IMG_URL: "https://file.xyyxt.net/",
- tenantId: "667735392758919630",
- appid: "wx871153afc95f55f4",
- tenantName: "祥粤学堂",
- },
- // 勘设云学堂
- {
- BASE_URL: "https://api.xyyxt.net",
- BASE_IMG_URL: "https://file.xyyxt.net/",
- tenantId: "567735392758918520",
- appid: "wx29d0ad81e625ad81",
- tenantName: "勘设云学堂",
- },
- // 中正云学堂
- {
- BASE_URL: "https://api.xyyxt.net",
- BASE_IMG_URL: "https://file.xyyxt.net/",
- tenantId: "141250585240548145",
- appid: "wx5872ef563d13dabf",
- tenantName: "中正云学堂",
- },
- // 山西云学堂
- {
- BASE_URL: "https://api.xyyxt.net",
- BASE_IMG_URL: "https://file.xyyxt.net/",
- tenantId: "471722209971055962",
- appid: "wx5872ef563d13dabf",
- tenantName: "山西云学堂",
- },
- ];
- export default set[index];
- // #ifdef H5
- import vconsole from "vconsole";
- if (index == 0) {
- new vconsole();
- }
- // #endif
|