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.
48 lines
1.2 KiB
48 lines
1.2 KiB
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,
|
|
},
|
|
},
|
|
},
|
|
]
|