|
@@ -18,7 +18,10 @@
|
|
|
placeholder="教学点名称"></el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item>
|
|
|
- <el-select v-model="searchForm.organId" clearable placeholder="请选择分部">
|
|
|
+ <el-select v-model="searchForm.organId"
|
|
|
+ clearable
|
|
|
+ filterable
|
|
|
+ placeholder="请选择分部">
|
|
|
<el-option v-for="item in branchList"
|
|
|
:key="item.value"
|
|
|
:label="item.label"
|
|
@@ -127,6 +130,8 @@
|
|
|
:label-width="formLabelWidth">
|
|
|
<template v-if="formActionTitle == 'update'">
|
|
|
<el-select v-model="form.source"
|
|
|
+ filterable
|
|
|
+ clearable
|
|
|
disabled>
|
|
|
<el-option label="合作单位"
|
|
|
value="1"></el-option>
|
|
@@ -135,7 +140,9 @@
|
|
|
</el-select>
|
|
|
</template>
|
|
|
<template v-else>
|
|
|
- <el-select v-model="form.source">
|
|
|
+ <el-select v-model="form.source"
|
|
|
+ filterable
|
|
|
+ clearable>
|
|
|
<el-option label="合作单位"
|
|
|
value="1"></el-option>
|
|
|
<el-option label="租赁"
|
|
@@ -148,6 +155,8 @@
|
|
|
label="合作单位"
|
|
|
:label-width="formLabelWidth">
|
|
|
<el-select v-model="form.cooperationOrganId"
|
|
|
+ filterable
|
|
|
+ clearable
|
|
|
@change="onCooperationChange">
|
|
|
<el-option v-for="item in cooperationList"
|
|
|
:key="item.value"
|
|
@@ -166,7 +175,9 @@
|
|
|
prop="organId"
|
|
|
label="所属分部"
|
|
|
:label-width="formLabelWidth">
|
|
|
- <el-select v-model="form.organId">
|
|
|
+ <el-select v-model="form.organId"
|
|
|
+ clearable
|
|
|
+ filterable>
|
|
|
<el-option v-for="item in branchList"
|
|
|
:key="item.value"
|
|
|
:label="item.label"
|
|
@@ -570,7 +581,7 @@ export default {
|
|
|
})
|
|
|
})
|
|
|
},
|
|
|
- search() {
|
|
|
+ search () {
|
|
|
this.pageInfo.page = 1
|
|
|
this.getList()
|
|
|
}
|