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
| // export const baseUrl = 'gateway_interface/'
| export const baseUrl = 'http://localhost:10010/'
| //export const baseUrl = 'https://zhcg.fnwtzx.com/gateway_interface/'
| //export const baseUrl = 'https://dmtest.ahapp.net/gateway_interface/'
|
| /** 微信公众号 AppId(OAuth 跳转用,生产环境保持真实配置) */
| export const wxAppId = 'wx15dfdae9a19177f3'
| /** OAuth 回调地址,需与公众号后台配置一致 */
| export const wxRedirectUri = 'https://zhcg.fnwtzx.com/fn_h5'
|
| /**
| * 开发环境微信 OAuth 模拟(跳过微信浏览器限制)
| * 生产构建/上线前务必设置 enabled: false
| */
| export const devWechatMock = {
| enabled: true,
| openId: 'dev_h5_openid_merchant_001',
| mockCode: 'DEV_MOCK'
| }
|
| export const uploadAvatar = `${baseUrl}visitsAdmin/cloudService/web/public/uploadFtp.do`
| export const uploadUrl = `${baseUrl}visitsAdmin/cloudService/public/uploadBatch`
|
| export const statusMap = {
| 0: '待确认',
| 1: '等待签到',
| 2: '等待叫号', // 等待叫号
| 3: '入园等待',
| 4: '月台等待', //已叫号
| 5: '作业中',
| 6: '作业完成',
| 7: '转移中',
| 8: '异常挂起',
| 9: '已授权离园',
| 10: '已离园',
| 11: '已过号',
| }
|
|