1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| /*
| * @Company: hugeInfo
| * @Author: ldh
| * @Date: 2022-02-16 11:25:57
| * @LastEditTime: 2023-12-20 11:28:03
| * @LastEditors: lwh
| * @Version: 1.0.0
| * @Description: api地址
| */
| const apiObj = {
| // 测试版
| // debug: 'http://localhost:9002',
| debug: 'https://zfw-dyh.by.gov.cn',
|
| // 正式版
| web: 'https://zfw-dyh.by.gov.cn',
|
| // 不同服务接口type
| oper: 'dyh-oper', // dyh-oper
| };
|
| export default apiObj;
|
|