This commit is contained in:
zcx
2024-01-30 14:14:39 +08:00
parent 8813f57c9b
commit fc92668bd1
2 changed files with 3 additions and 2 deletions

View File

@@ -47,7 +47,7 @@
</el-col> </el-col>
<el-col :span="24"> <el-col :span="24">
<el-form-item label="线索来源" prop="source"> <el-form-item label="线索来源" prop="source">
<el-select style="width: 100%;" v-model="clueForm.source" placeholder="请选择" clearable> <el-select style="width: 100%;" v-model="clueForm.source" placeholder="请选择" clearable filterable>
<el-option v-for="dict in sourceOptions" :key="dict.dictValue" :label="dict.dictLabel" :value="dict.dictValue" /> <el-option v-for="dict in sourceOptions" :key="dict.dictValue" :label="dict.dictLabel" :value="dict.dictValue" />
</el-select> </el-select>
</el-form-item> </el-form-item>

View File

@@ -66,7 +66,8 @@ export default {
{ value: 5, label: '今日跟踪' }, { value: 5, label: '今日跟踪' },
{ value: 6, label: '过期线索' }, { value: 6, label: '过期线索' },
{ value: 7, label: '相关线索' }, { value: 7, label: '相关线索' },
{ value: 8, label: '撞单线索' } { value: 8, label: '撞单线索' },
{ value: 9, label: '待分配' }
], ],
intentionOptions: [], intentionOptions: [],
createDateRange: [], createDateRange: [],