1
李凌
2025-10-23 7907f9a7d414404effff61df799945c23573b25a
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
 
 
// 请求方法
export const METHODS = { POST: 'POST', GET: 'GET', PUT: 'PUT', PATCH: 'PATCH', DELETE: 'DELETE' }
 
// 请求超时时间
export const REQUEST_TIMEOUT = 30000
 
// 请求频率
export const TIME_OUT = 2000
 
// 表单类型key
export const CONTENT_TYPE = 'Content-Type'
 
// 表单类型value
export const CONTENT_TYPES = {
    URL_ENCODED: 'application/x-www-form-urlencoded'
}
 
// 是否携带凭证
export const WITH_CREDENTIALS = false
 
// API前缀
export const API_PREFIX = '/api'
 
 
// 请求频率
export const REQUEST_TIMER = 2000
 
 
/// 默认日线
export const defaultStage = '1day'
 
export const defaultSeconds = 1 * 24 * 60 * 60 * 1000
 
// const ENV_DEV = 'zhapi.coinbtcs.com' // dev
// const ENV_DEV = 'openapi.yanshiz.com' // dev
const ENV_DEV = 'cmeapi.durocaspitall.com' // dev
// const ENV_DEV = '192.168.10.12:8222' // dev
 
// const ENV_PRO = 'qheufhj.site' //  app域名
// const ENV_PRO = window.location.hostname // 接口域名跟随 H5zhapi.coinbtcs.com
const ENV_PRO = 'cmeapi.durocaspitall.com' // 接口域名跟随 H5zhapi.coinbtcs.com
// const ENV_PRO = '192.168.10.12:8222' // 接口域名跟随 H5zhapi.coinbtcs.com
 
let base_url = ''
let ws_url = ''
let host_url = ''
if (import.meta.env.MODE === 'development') {
    host_url = 'https://' + ENV_DEV
    base_url = 'https://' + ENV_DEV
    ws_url = 'wss://' + ENV_DEV + '/api/websocket'
} else {
    host_url = 'https://' + ENV_PRO
    base_url = 'https://' + ENV_PRO
    ws_url = 'wss://' + ENV_PRO + '/api/websocket'
}
 
let imgUrl = 'https://dapp.cme-coin.com' // 暂时的 单独的图片地址
 
export const BASE_URL = base_url
export const WS_URL = ws_url
// export const IMG_PATH = host_url
export const IMG_PATH = imgUrl
// export const HOST_URL = host_url
export const HOST_URL = imgUrl
 
// 公司logo
export const LOGO = new URL('@/assets/imgs/logo.png', import.meta.url)
 
export default {
    sliderOptions: {
        dotSize: 14,
        width: 'auto',
        height: 4,
        contained: false,
        direction: 'ltr',
        data: null,
        dataLabel: 'label',
        dataValue: 'value',
        min: 0,
        max: 0, // 这里默认是3,被我改了
        interval: 1,
        disabled: false,
        clickable: true,
        duration: 0.5,
        adsorb: false,
        lazy: false,
        tooltip: 'active',
        tooltipPlacement: 'top',
        tooltipFormatter: void 0,
        useKeyboard: false,
        keydownHook: null,
        dragOnClick: false,
        enableCross: true,
        fixed: false,
        minRange: void 0,
        maxRange: void 0,
        order: true,
        marks: false,
        dotOptions: void 0,
        dotAttrs: void 0,
        process: true,
        dotStyle: void 0,
        railStyle: void 0,
        processStyle: void 0,
        tooltipStyle: void 0,
        stepStyle: void 0,
        stepActiveStyle: void 0,
        labelStyle: void 0,
        labelActiveStyle: void 0,
    }
}