12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- // 搜索用的下拉数据列表
- // 课程类型
- const courseType = [
- { label: '单技课', value: 'SINGLE' },
- { label: '合奏课', value: 'MIX' },
- { label: '基础技能班', value: 'HIGH' },
- { label: 'VIP课', value: 'VIP' },
- { label: '试听课', value: 'DEMO' },
- { label: '综合课', value: 'COMPREHENSIVE' },
- { label: '练习课', value: 'PRACTICE' },
- { label: '启蒙课', value: 'ENLIGHTENMENT' },
- { label: '集训课', value: 'TRAINING' },
- { label: '课堂课', value: 'CLASSROOM' }
- ]
- // 考勤状态
- const attendance = [
- { label: '正常签到', value: 1 },
- { label: '异常签到', value: 0 },
- ]
- // 工作类型
- const jobNature = [
- { label: '兼职', value: 'PART_TIME' },
- { label: '全职', value: 'FULL_TIME' },
- { label: '临时工', value: 'TEMPORARY' }
- ]
- // 老师状态
- const teacherStatus = [
- { label: '正常', value: '0' },
- { label: '冻结', value: '1' },
- { label: '锁定', value: '9' }
- ]
- // 考勤状态
- const attendanceStatus = [
- { value: "NORMAL", label: "正常" },
- { value: "TRUANT", label: "旷课" },
- { value: "LEAVE", label: "请假" },
- { value: "QUIT_SCHOOL", label: "退学" },
- // { value: "DROP_OUT", label: "休学" }
- ]
- // 交易状态
- const orderStatus = [
- { value: "APPLY", label: "报名" },
- { value: "RENEW", label: "续费" },
- { value: "OTHER", label: "其他" },
- { value: "SMALL_CLASS_TO_BUY", label: "VIP购买" }
- ]
- // 交易状态
- const dealStatus = [
- { value: "ING", label: "交易中" },
- { value: "SUCCESS", label: "成功交易" },
- { value: "FAILED", label: "交易失败" },
- { value: "CLOSE", label: "交易关闭" }
- ]
- const musicGroupStatus = [
- { value: 'APPLY', text: '报名中' },
- { value: 'PAY', text: '缴费中' },
- { value: 'PREPARE', text: '筹备中' },
- { value: 'PROGRESS', text: '进行中' },
- { value: 'PAUSE', text: '暂停' },
- { value: 'DRAFT', text: '编辑中' },
- { value: 'AUDIT', text: '审核中' },
- { value: 'AUDIT_FAILED', text: '审核失败' },
- { value: 'CANCELED', text: '取消' },
- ]
- export {
- courseType,
- attendance,
- jobNature,
- teacherStatus,
- attendanceStatus,
- orderStatus,
- dealStatus,
- musicGroupStatus
- }
|