constant.js 833 Bytes
/*
 * @Author: hookehuyr hookehuyr@gmail.com
 * @Date: 2022-05-25 18:34:17
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2022-06-08 21:07:19
 * @FilePath: /tswj/src/constant.js
 * @Description: 
 */
// 金数据表单 - 家长端
export const JSJ_FORM_C = 'https://jsjs.onwall.cn/f/NAGn1D';

// 金数据表单 - 老师端
export const JSJ_FORM_B = 'https://jsj.onwall.cn/f/g7D0MT';

// 颜色变量
export const styleColor = {
  baseColor: '#11D2B1',
  baseFontColor: '#FFFFFF'
}

/**
 * 客户端类型
 * @param CLIENT 家长端
 * @param BUSINESS 老师端
 */
export const USER_ROLE = {
  CLIENT: 'C',
  BUSINESS: 'B',
}

/**
 * 用户身份
 * @param CHILDREN 儿童
 * @param VISIT 访客
 * @param KINDERGARTEN 幼儿园
 */
export const USER_TYPE = {
  CHILDREN: 'C',
  VISIT: 'V',
  KINDERGARTEN: 'K',
}