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.

133 lines
1.8 KiB

/*
* 公用变量
*
*/
const selectOptions = {
false_or_true: [{
id: 0,
value: '否'
}, {
id: 1,
value: '是'
}],
apply_status_list: [{
id: 0,
value: '待审核',
type: ''
}, {
id: 1,
value: '通过',
type: 'success'
}, {
id: 2,
value: '审核不通过',
type: 'warning'
}],
fee_status_list: [{
id: 0,
value: '待缴费',
type: ''
}, {
id: 3,
value: '待确认',
type: 'info'
}, {
id: 1,
value: '缴费成功',
type: 'success'
}, {
id: 2,
value: '缴费失败',
type: 'warning'
}],
// 课程
course_type: [{
id: 1,
value: '常规课程'
}, {
id: 2,
value: '公司团建'
}],
course_status: [{
id: 0,
value: '待发布',
type: 'info'
}, {
id: 1,
value: '已发布',
type: ''
}],
course_date: [{
value: '未开始',
type: 'info',
}, {
value: '进行中',
type: '',
}, {
value: '已结束',
type: 'success',
}],
// 学员
company_education: [{
id: 1,
value: '小学'
}, {
id: 2,
value: '初中'
}, {
id: 3,
value: '高中'
}, {
id: 4,
value: '专科'
}, {
id: 5,
value: '本科'
}, {
id: 6,
value: '硕士'
}, {
id: 7,
value: '博士'
}],
company_type_list: [{
id: 0,
value: '上市公司'
}, {
id: 1,
value: '上市公司子公司'
}],
// 预约审核
book_status: [{
id: 0,
value: '待审核',
type: ''
}, {
id: 1,
value: '通过',
type: 'success'
}, {
id: 2,
value: '驳回',
type: 'warning'
}, {
id: 3,
value: '取消',
type: 'info'
}],
// 考勤
keep_options: [{
id: '',
value: '全部'
}, {
id: 1,
value: '正常',
type: 'success'
}, {
id: 0,
value: '缺勤',
type: 'warning'
}]
}
export { selectOptions }