石广澎
2024-04-15 c60a53e6c8829429066eb1af94c48685d02ea5d8
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
/* 各种请求url配置 */
 
// 开发
const dev = {
    webURL: 'https://jmy.jinmingyuan.com/pay',
    baseURL: 'http://1.14.252.104:7101',
    sftpURL: 'https://echftp.jinmingyuan.com',
    imgUrl: 'https://echftp.jinmingyuan.com/platform/app/',
    wx_appid: 'wxad8cc511da676bd4',
    ali_appid:'2021003199690698'
}
// 支付测试
const payTest = {
    webURL: 'https://jmy.jinmingyuan.com/payTest',
    baseURL: 'http://1.14.252.104:7101',
    sftpURL: 'https://echftp.jinmingyuan.com',
    imgUrl: 'https://echftp.jinmingyuan.com/platform/app/',
    wx_appid: 'wxad8cc511da676bd4',
    ali_appid:'2021003199690698'
}
// 生态圈
const stq = {
    webURL: 'https://jmy.jinmingyuan.com/scanPay',
    baseURL: 'https://yqzx.jinmingyuan.com',
    sftpURL: 'https://yqzx.jinmingyuan.com/file',
    imgUrl: 'https://yqzx.jinmingyuan.com/file/platform/app/',
    wx_appid: 'wxad8cc511da676bd4',
    ali_appid:'2021003199690698'
}
 
 
const cardType = {
    '00': '储蓄卡',
    '02': '信用卡'
}
module.exports = {
    config: stq,
    ACCESSTOKEN: "SCAN-WECHAT-TOKEN-HEADER",
    /* 是否打印请求日志 */
    DEBUG: false,
    cardType: cardType
}