|
@@ -4,11 +4,17 @@
|
|
|
<template #field>
|
|
|
<el-option v-for="i in fieldList" :key="i._id" :label="i.label" :value="i.value"></el-option>
|
|
|
</template>
|
|
|
- <template #mature>
|
|
|
- <el-option v-for="i in matureList" :key="i._id" :label="i.label" :value="i.value"></el-option>
|
|
|
+ <template #type>
|
|
|
+ <el-option v-for="i in typeList" :key="i._id" :label="i.label" :value="i.value"></el-option>
|
|
|
</template>
|
|
|
- <template #sell>
|
|
|
- <el-option v-for="i in sellList" :key="i._id" :label="i.label" :value="i.value"></el-option>
|
|
|
+ <template #maturity>
|
|
|
+ <el-option v-for="i in maturityList" :key="i._id" :label="i.label" :value="i.value"></el-option>
|
|
|
+ </template>
|
|
|
+ <template #skill>
|
|
|
+ <el-option v-for="i in skillList" :key="i._id" :label="i.label" :value="i.value"></el-option>
|
|
|
+ </template>
|
|
|
+ <template #cooperate>
|
|
|
+ <el-option v-for="i in cooperateList" :key="i._id" :label="i.label" :value="i.value"></el-option>
|
|
|
</template>
|
|
|
</custom-search-bar>
|
|
|
<custom-button-bar :fields="buttonFields" @add="toAdd"></custom-button-bar>
|
|
@@ -56,7 +62,6 @@
|
|
|
|
|
|
<script setup>
|
|
|
// API 引用
|
|
|
-import { getCity } from '@/utils/city'
|
|
|
import { cloneDeep, get } from 'lodash-es'
|
|
|
const $checkRes = inject('$checkRes')
|
|
|
const { t } = useI18n()
|