|
@@ -3,7 +3,11 @@
|
|
|
<el-row>
|
|
|
<el-col :span="24" class="main animate__animated animate__backInRight" v-loading="loading">
|
|
|
<el-col :span="24" class="one">
|
|
|
- <cSearch :is_title="false" :is_back="true" @toBack="toBack" :is_search="true" :fields="fields" @search="toSearch"></cSearch>
|
|
|
+ <cSearch :is_title="false" :is_back="true" @toBack="toBack" :is_search="true" :fields="fields" @search="toSearch">
|
|
|
+ <template #is_use>
|
|
|
+ <el-option v-for="i in isuseList" :key="i.value" :label="i.label" :value="i.value"></el-option>
|
|
|
+ </template>
|
|
|
+ </cSearch>
|
|
|
</el-col>
|
|
|
<el-col :span="24" class="two">
|
|
|
<cButton @toAdd="toAdd"></cButton>
|
|
@@ -67,10 +71,10 @@ let limit: number = proxy.$limit;
|
|
|
let fields: Ref<any[]> = ref([
|
|
|
{ label: '展会', model: 'dock_id', format: (i) => getDict(i, 'dock_id') },
|
|
|
{ label: '姓名', model: 'name', isSearch: true },
|
|
|
- { label: '最高学历', model: 'education', isSearch: true },
|
|
|
+ { label: '最高学历', model: 'education' },
|
|
|
{ label: '所在院校', model: 'school', isSearch: true },
|
|
|
{ label: '头像', model: 'icon', custom: true },
|
|
|
- { label: '是否使用', model: 'is_use', format: (i) => getDict(i, 'is_use') }
|
|
|
+ { label: '是否使用', model: 'is_use', format: (i) => getDict(i, 'is_use'), isSearch: true, type: 'select' }
|
|
|
]);
|
|
|
// 操作
|
|
|
let opera: Ref<any[]> = ref([
|