|
@@ -116,7 +116,7 @@ const items = ref({
|
|
|
{
|
|
|
slotName: 'industryIdList',
|
|
|
key: 'industryIdList',
|
|
|
- value: '不限',
|
|
|
+ value: '',
|
|
|
outlined: true,
|
|
|
label: '期望行业 *',
|
|
|
col: 6,
|
|
@@ -195,7 +195,7 @@ const handleJobClickItem = (list, name) => {
|
|
|
// 行业类型
|
|
|
let currentSelect = reactive([])
|
|
|
const handleIndustry = (list, arr) => {
|
|
|
- if (!list.length) return setValue('industryIdList', '不限')
|
|
|
+ if (!list.length) return setValue('industryIdList', '')
|
|
|
query.industryIdList = list
|
|
|
currentSelect = arr
|
|
|
const str = arr.map(e => e.nameCn).join('、')
|
|
@@ -211,7 +211,7 @@ const handleArea = (list, name) => {
|
|
|
|
|
|
const resetForm = () => {
|
|
|
items.value.options.forEach(e => {
|
|
|
- if (e.key === 'industryIdList') e.value = '不限'
|
|
|
+ if (e.key === 'industryIdList') e.value = ''
|
|
|
else e.value = null
|
|
|
})
|
|
|
editId.value = null
|