|
@@ -41,6 +41,9 @@
|
|
<template #file>
|
|
<template #file>
|
|
<custom-upload model="file" :list="form.file" :limit="3" listType="picture-card" url="/files/web/cxyy_support/upload" @change="onUpload"></custom-upload>
|
|
<custom-upload model="file" :list="form.file" :limit="3" listType="picture-card" url="/files/web/cxyy_support/upload" @change="onUpload"></custom-upload>
|
|
</template>
|
|
</template>
|
|
|
|
+ <template #field>
|
|
|
|
+ <el-option v-for="i in fieldList" :key="i.id" :label="i.label" :value="i.label"></el-option>
|
|
|
|
+ </template>
|
|
<template #is_use>
|
|
<template #is_use>
|
|
<el-radio v-for="i in isUseList" :key="i.id" :label="i.value">{{ i.label }}</el-radio>
|
|
<el-radio v-for="i in isUseList" :key="i.id" :label="i.value">{{ i.label }}</el-radio>
|
|
</template>
|
|
</template>
|
|
@@ -96,6 +99,7 @@ const statusList = ref([])
|
|
const cityList = ref([])
|
|
const cityList = ref([])
|
|
const tagsList = ref([])
|
|
const tagsList = ref([])
|
|
const sectorList = ref([])
|
|
const sectorList = ref([])
|
|
|
|
+const fieldList = ref([])
|
|
|
|
|
|
const form = ref({ file: [] })
|
|
const form = ref({ file: [] })
|
|
const dialog = ref({ type: '1', show: false, title: '发布服务' })
|
|
const dialog = ref({ type: '1', show: false, title: '发布服务' })
|
|
@@ -104,7 +108,7 @@ const formFields = ref([
|
|
{ label: '名称', model: 'name' },
|
|
{ label: '名称', model: 'name' },
|
|
{ label: '标签', model: 'tags', custom: true },
|
|
{ label: '标签', model: 'tags', custom: true },
|
|
{ label: '行业', model: 'industry', type: 'select' },
|
|
{ label: '行业', model: 'industry', type: 'select' },
|
|
- { label: '服务领域', model: 'field' },
|
|
|
|
|
|
+ { label: '服务领域', model: 'field', type: 'selectMany' },
|
|
{ label: '登记时间', model: 'time', type: 'date' },
|
|
{ label: '登记时间', model: 'time', type: 'date' },
|
|
{ label: '所在地区', model: 'area', custom: true },
|
|
{ label: '所在地区', model: 'area', custom: true },
|
|
{ label: '地址', model: 'address', type: 'textarea' },
|
|
{ label: '地址', model: 'address', type: 'textarea' },
|
|
@@ -153,6 +157,9 @@ const searchOther = async () => {
|
|
// 城市
|
|
// 城市
|
|
result = await regionStore.area({ level: 'province', code: 22 })
|
|
result = await regionStore.area({ level: 'province', code: 22 })
|
|
if ($checkRes(result)) cityList.value = result.data
|
|
if ($checkRes(result)) cityList.value = result.data
|
|
|
|
+ // 服务领域
|
|
|
|
+ result = await dictDataStore.query({ code: 'service', is_use: '0' })
|
|
|
|
+ if (result.errcode == '0') fieldList.value = result.data
|
|
}
|
|
}
|
|
// 字典数据转换
|
|
// 字典数据转换
|
|
const getDict = (data, model) => {
|
|
const getDict = (data, model) => {
|