ah_sz_gqj_app/service/constant.js

19 lines
543 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

const CONSTANT = {
APP_CODE: 'com.bonus.zhly', // 待定
// System
CODE_SUCCESS: '200', // 接口成功状态码
CODE_FAIL: '400', // 接口错误状态码
// RESP_CODE_ERR: '8888',
RESP_CODE_AE401: 401, // 未登录或Token过期
// // token失效时长23小时后端24小时)
// TOKEN_INVALID_DURATION: 23,
// 版本号版本更新时候不光需要改manifest也需要更新此处因为H5不能使用 plus.runtime.getProperty
VERSIONNAME: '1.0.0',
VERSIONCODE: 100,
};
export default CONSTANT