19 lines
689 B
JavaScript
19 lines
689 B
JavaScript
|
|
// 后端接口
|
|
export const BASE_API_URL = "https://online.totustec.com/api";
|
|
// 静态数据
|
|
export const BASE_IMG_URL = "https://online.totustec.com/upload";
|
|
export const BASE_STOKECT_URL = "wss://online.totustec.com/webSocket/vue"
|
|
|
|
// 打印状态颜色以及对应编号
|
|
export const DEVICE_STATUS_MAP={
|
|
0: { color: '#999999', text: '空闲' },
|
|
1: { color: '#00d195', text: '打印中' },
|
|
2: { color: '#00abff', text: '准备中' },
|
|
3: { color: '#FDCB3B', text: '铲件中' },
|
|
4: { color: '#FDCB3B', text: '暂停' },
|
|
5: { color: '#4CAF50', text: '打印完成' },
|
|
6: { color: '#18a2af', text: '报警' },
|
|
'-1': { color: '#999999', text: '断开' }
|
|
}
|