import { FieldProps, OptionProps } from '../../../components/form-item/field-props' import { AccountUserInfo } from '../../../entity/account/account-user' const fields: Array> = [ { name: 'email', label: '职务', type: 'input', rules: [ { required: true, message: '请输入正确的邮箱' } ] }, { name: 'wechat', label: '微信号', type: 'input' }, { name: 'qq', label: 'qq号', type: 'input' }, { name: 'phone', label: '手机号', type: 'input' }, { name: 'idCard', label: '身份证', type: 'input' }, { name: 'sex', label: '性别', type: 'radio-group', typeValue: { options: >[ { value: 0, label: '保密' }, { value: 1, label: '男' }, { value: 2, label: '女' } ] } } ] export default fields