123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- import MxConst from "@/common/MxConst";
- export default [
- {
- enumRuleCategory: MxConst.enum.ai.ruleCategory.enroll.value,
- fieldName: 'scoreUnion',
- enumInputType: MxConst.enum.ai.inputType.text,
- required: undefined,
- min: undefined,
- max: undefined,
- regex: undefined,
- dictOptions: '',
- options: null,
- label: '文本输入',
- description: '简短描述1',
- placeholder: null,
- tips: '此处呈现特殊说明1'
- },
- {
- enumRuleCategory: MxConst.enum.ai.ruleCategory.enroll.value,
- fieldName: 'scoreBase',
- enumInputType: MxConst.enum.ai.inputType.number,
- required: undefined,
- min: undefined,
- max: undefined,
- regex: undefined,
- dictOptions: '',
- options: null,
- label: '数值输入',
- description: null,
- placeholder: null,
- tips: null
- },
- {
- enumRuleCategory: MxConst.enum.ai.ruleCategory.enroll.value,
- fieldName: 'scoreRate',
- enumInputType: MxConst.enum.ai.inputType.number,
- required: undefined,
- min: 0,
- max: 100,
- regex: undefined,
- dictOptions: '',
- options: null,
- label: '得分率',
- description: '%',
- placeholder: null,
- tips: '得分率说明'
- },
- {
- enumRuleCategory: MxConst.enum.ai.ruleCategory.enroll.value,
- fieldName: 'scoreSkill',
- enumInputType: MxConst.enum.ai.inputType.score,
- required: undefined,
- min: undefined,
- max: undefined,
- regex: undefined,
- dictOptions: '',
- options: [300, 450],
- label: '分数输入',
- description: null,
- placeholder: null,
- tips: null
- },
- {
- enumRuleCategory: MxConst.enum.ai.ruleCategory.special.value,
- fieldName: 'pickerField',
- enumInputType: MxConst.enum.ai.inputType.picker,
- required: undefined,
- min: undefined,
- max: undefined,
- regex: undefined,
- dictOptions: '',
- options: ['选项A', '选项B', '选项C'],
- label: '单项选择',
- description: null,
- placeholder: null,
- tips: null
- },
- {
- enumRuleCategory: MxConst.enum.ai.ruleCategory.special.value,
- fieldName: 'eyesightL',
- enumInputType: MxConst.enum.ai.inputType.eyesight,
- required: undefined,
- min: undefined,
- max: undefined,
- regex: undefined,
- dictOptions: '',
- options: null,
- label: '左眼视力',
- description: null,
- placeholder: null,
- tips: null
- },
- {
- enumRuleCategory: MxConst.enum.ai.ruleCategory.special.value,
- fieldName: 'nation',
- enumInputType: MxConst.enum.ai.inputType.picker,
- required: undefined,
- min: undefined,
- max: undefined,
- regex: undefined,
- dictOptions: 'multiple_way_nation',
- options: null,
- label: '词典选择',
- description: null,
- placeholder: null,
- tips: null
- },
- {
- enumRuleCategory: MxConst.enum.ai.ruleCategory.special.value,
- fieldName: 'gender',
- enumInputType: MxConst.enum.ai.inputType.radio,
- required: undefined,
- min: undefined,
- max: undefined,
- regex: undefined,
- dictOptions: 'multiple_way_gender',
- options: null,
- label: '单选按钮',
- description: null,
- placeholder: null,
- tips: null
- },
- {
- enumRuleCategory: MxConst.enum.ai.ruleCategory.special.value,
- fieldName: 'disease',
- enumInputType: MxConst.enum.ai.inputType.checkbox,
- required: undefined,
- min: 2,
- max: 5,
- regex: undefined,
- dictOptions: 'multiple_way_disease',
- options: null,
- label: '复选按钮',
- description: null,
- placeholder: null,
- tips: null
- },
- ]
|