|
@@ -337,7 +337,7 @@
|
|
|
<el-col :span="6">
|
|
|
<el-form-item label="提问人" prop="questioner">
|
|
|
<!-- <el-input v-model="form.questioner" clearable></el-input>-->
|
|
|
- <el-select v-model="form.questioner" placeholder="请选择" clearable @change="changeBtn3">
|
|
|
+ <el-select v-model="form.questioner" filterable placeholder="请选择" clearable @change="changeBtn3">
|
|
|
<el-option
|
|
|
v-for="item in QuestionerOptions"
|
|
|
:key="item.id"
|
|
@@ -630,9 +630,16 @@ export default {
|
|
|
this.processorOptions=res.data
|
|
|
}
|
|
|
})
|
|
|
+ getQuestionerOptions(param).then(res =>{
|
|
|
+ if(res.code == 200){
|
|
|
+ this.QuestionerOptions=res.data
|
|
|
+ }
|
|
|
+ })
|
|
|
}else {
|
|
|
this.processorOptions=[]
|
|
|
+ this.QuestionerOptions=[]
|
|
|
}
|
|
|
+
|
|
|
},
|
|
|
handleUpdateProblem(){
|
|
|
this.$confirm("是否确认修改选中的数据项?", "警告", {
|