riku
2026-01-16 1f9e43b7bbb848c7ee2aaa89ffece17002b2c915
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
// 守法自助小程序
const baseUrl = 'http://192.168.0.103:8082';
// const baseUrl = 'https://fyami.com.cn';
 
// 守法自助小程序图片
const bu = 'https://fyami.com.cn';
const basePicUrl = `${bu}/images/`;
const baseIconUrl = `${bu}/images/weixin/eplaw/`;
const baseFileUrl = `${bu}/meeting/file/`;
 
// 线上监管
const inspectUrl = 'https://fyami.com.cn:447';
// const inspectUrl = 'http://192.168.0.138:9001';
// const inspectUrl = 'http://192.168.0.138:8080';
// const inspectUrl = 'http://192.168.1.8:8080';
 
// 线上监管图片
const iu = 'https://fyami.com.cn:447';
const inspectPicUrl = `${iu}/images/`;
 
// 道路应急线索
const clueUrl = 'https://fyami.com.cn:448/';
// const clueUrl = 'http://192.168.0.110:8084/';
const cu = 'https://fyami.com.cn:448';
// const cu = 'http://192.168.0.110:8084';
const cluePicUrl = `${cu}/images/`;
 
// 运行模式,决定是否输出网络请求日志
const mode = 'debug';
// const mode = 'prod';
 
export {
  basePicUrl,
  baseUrl,
  baseFileUrl,
  baseIconUrl,
  inspectUrl,
  inspectPicUrl,
  clueUrl,
  cluePicUrl,
  mode,
};