You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
244 B
14 lines
244 B
module.exports.UpgradeStatus = {
|
|
OFFLINE: 0,
|
|
PENDING: 1,
|
|
SEND_MSG_SUCC: 2,
|
|
DOWNLOADING: 3,
|
|
BURNING: 4,
|
|
FAIL: 5,
|
|
SUCCESS: 6,
|
|
ASYNC_PROCESSED: 7,
|
|
USER_CONFIRM: 8,
|
|
DOWNLOAD_DONE: 20,
|
|
};
|
|
|
|
module.exports.dangerColor = '#ff584c';
|
|
|