管灌系统农户端微信小程序(嘉峪关应用)
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
// 项目配置,包含各项目的专有设置
const PROJECT_CONFIG = {
    JYG: {
        tag: 'ym',
        displayName: '嘉峪关项目',
        needLogin: true // 需要登录
    },
    MQ: {
        tag: 'mq',
        displayName: '民勤项目',
        operatorId: '2025033115305200006', // 统一ID用于operator和clientId
        needLogin: false // 不需要登录
    },
    TEST: {
        tag: 'ym',
        displayName: '测试项目',
        operatorId: '2024122617295800009', // 统一ID用于operator和clientId
        vcId: '2024122617295800009',
        needLogin: false // 不需要登录
    },
    SCHOOL: {
        tag: 'XX',
        displayName: '学校项目',
        operatorId: '2025040215305200006', // 统一ID用于operator和clientId
        needLogin: true // 不需要登录
    }
};
 
module.exports = {
    PROJECT_CONFIG
};