| 123456789101112131415161718192021222324252627 |
- // test 测试环境
- const dev = {
- BASE_URL: "http://120.79.166.78:19013",
- BASE_IMG_URL: "https://file-dev.xyyxt.net/",
- };
- // const index = 0; // 测试环境
- // const index = 1; // 测试环境
- const index = 2; // 正式
- const set = [
- dev,
- {
- BASE_URL: "http://120.79.166.78:19013",
- BASE_IMG_URL: "https://file-dev.xyyxt.net/",
- },
- {
- BASE_URL: "https://cloud.xyyxt.net",
- BASE_IMG_URL: "https://file.xyyxt.net/",
- },
- ];
- export default set[index];
- import vconsole from "vconsole";
- if (index == 0) {
- new vconsole();
- }
|