|
@@ -59,7 +59,7 @@
|
|
|
<el-radio v-for="i in isUseList" :key="i.id" :label="i.value">{{ i.label }}</el-radio>
|
|
|
</template>
|
|
|
<template #industry>
|
|
|
- <el-option v-for="i in sectorList" :key="i.id" :label="i.title" :value="i.title"></el-option>
|
|
|
+ <el-option v-for="i in industryList" :key="i.id" :label="i.label" :value="i.value"></el-option>
|
|
|
</template>
|
|
|
<template #scale>
|
|
|
<el-radio v-for="i in scaleList" :key="i.id" :label="i.value">{{ i.label }}</el-radio>
|
|
@@ -193,11 +193,9 @@ import { MatchStore } from '@/store/api/platform/match'
|
|
|
import { ProcessStore } from '@/store/api/platform/process'
|
|
|
import { DictDataStore } from '@/store/api/system/dictData'
|
|
|
import { TagsStore } from '@/store/api/system/tags'
|
|
|
-import { SectorStore } from '@/store/api/platform/sector'
|
|
|
const store = MatchStore()
|
|
|
const dictDataStore = DictDataStore()
|
|
|
const tagsStore = TagsStore()
|
|
|
-const sectorStore = SectorStore()
|
|
|
const processStore = ProcessStore()
|
|
|
// 加载中
|
|
|
const loading = ref(false)
|
|
@@ -216,7 +214,7 @@ const typeList = ref([])
|
|
|
const matchList = ref([])
|
|
|
const formList = ref([])
|
|
|
const tagsList = ref([])
|
|
|
-const sectorList = ref([])
|
|
|
+const industryList = ref([])
|
|
|
const matchTypeList = ref([])
|
|
|
const scaleList = ref([])
|
|
|
// 流程列表
|
|
@@ -233,7 +231,7 @@ const formFields = ref([
|
|
|
{ label: '赛事类型', model: 'match_type', type: 'radio' },
|
|
|
{ label: '路由', model: 'href', display: () => form.value.match_type == '1' },
|
|
|
{ label: '组织单位', model: 'work' },
|
|
|
- { label: '所属产业', model: 'industry', type: 'select' },
|
|
|
+ { label: '行业', model: 'industry', type: 'select' },
|
|
|
{ label: '类别', model: 'form', type: 'select' },
|
|
|
{ label: '奖金(万元)', model: 'money' },
|
|
|
{ label: '有效期', model: 'time', type: 'daterange' },
|
|
@@ -316,8 +314,8 @@ const searchOther = async () => {
|
|
|
result = await tagsStore.query({ is_use: '0' })
|
|
|
if ($checkRes(result)) tagsList.value = result.data
|
|
|
// 行业
|
|
|
- result = await sectorStore.query({ is_use: '0' })
|
|
|
- if ($checkRes(result)) sectorList.value = result.data
|
|
|
+ result = await dictDataStore.query({ code: 'matchIndustry', is_use: '0' })
|
|
|
+ if ($checkRes(result)) industryList.value = result.data
|
|
|
}
|
|
|
const searchProcess = async () => {
|
|
|
const info = { match: form.value.id }
|