import { FormSchema } from '/@/components/Form' import { followTypeList } from '/@/enums/customerEnum' export const modalFormSchema: FormSchema[] = [ // { // field: 'datingClueFollowType', // label: '线索跟进方式', // component: 'Select', // required: true, // componentProps: { // options: followTypeList, // }, // }, { field: 'datingClueFollowStage', label: '线索跟进阶段', required: true, component: 'Select', componentProps: { options: [ { label: '联系不上', value: -2, color: 'green' }, { label: '放弃线索', value: -1, color: 'red' }, { label: '未接通,待跟进', value: 1, color: 'red' }, { label: '已接通,未详细沟通', value: 2, color: 'green' }, { label: '已接通,已详细沟通', value: 3, color: 'gray' }, ], }, }, // { // label: '下次跟进时间', // component: 'DatePicker', // field: 'nextFollowTime', // componentProps: { // ...dateComProps, // }, // }, { field: 'remark', label: '备注', required: true, component: 'InputTextArea', componentProps: { autosize: { minRows: 4, }, }, }, ]