|
|
|
@ -352,7 +352,15 @@ export const modalFormSchema: FormSchema[] = [ |
|
|
|
required: true, |
|
|
|
component: 'Select', |
|
|
|
componentProps: { |
|
|
|
options: followStageList, |
|
|
|
options: [ |
|
|
|
{ label: '空号', value: -3, color: 'red' }, |
|
|
|
{ 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: '已接通,沟通有效', value: 4, color: 'gray' }, |
|
|
|
], |
|
|
|
}, |
|
|
|
}, |
|
|
|
// {
|
|
|
|
|