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.

17 lines
378 B

4 years ago
const ROLE_LIST = "ROLE_LIST"
const SYS_TOKEN = "SYS_TOKEN"
const USER_INFO = "USER_INFO"
const REPORT_INFO = "REPORT_INFO"
const RecordType : {[key:string]:String}={
"SUBMIT":"院级待审",
"DEPT_PASS":"校级待审",
"SCHOOL_PASS":"审核通过",
"VALIDATED":"核验完成",
"DENY":"退回"
}
4 years ago
export default {
SYS_TOKEN,
USER_INFO,
REPORT_INFO,
RecordType
4 years ago
}