zs пре 6 месеци
родитељ
комит
9fbd58473b
3 измењених фајлова са 24 додато и 9 уклоњено
  1. 8 1
      src/views/center/service.vue
  2. 7 3
      src/views/detail/serviceDetail.vue
  3. 9 5
      src/views/seven/index.vue

+ 8 - 1
src/views/center/service.vue

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

+ 7 - 3
src/views/detail/serviceDetail.vue

@@ -26,7 +26,7 @@
               </div>
               <el-col :span="24" class="other_1">
                 <span>服务领域:</span>
-                {{ info.field || '暂无服务领域' }}
+                {{ getDict(info.field) || '暂无服务领域' }}
               </el-col>
               <el-col :span="24" class="other_1">
                 <span>登记时间:</span>
@@ -60,7 +60,7 @@
                     <el-col :span="24" class="other">
                       <el-col :span="12" class="other_1">
                         <span>服务领域:</span>
-                        {{ item.field || '暂无服务领域' }}
+                        {{ getDict(item.field) || '暂无服务领域' }}
                       </el-col>
                       <el-col :span="12" class="other_1">
                         <span>登记时间:</span>
@@ -127,6 +127,10 @@ const toView = (item) => {
 const getUrl = (item) => {
   if (item) return `${import.meta.env.VITE_APP_HOST}${item}`
 }
+// 数组显示
+const getDict = (data) => {
+  if (data) return data.join(',')
+}
 const toCollect = async () => {
   if (user.value.id) {
     info.value.is_collection = !info.value.is_collection
@@ -259,7 +263,7 @@ const toCollect = async () => {
               font-size: $global-font-size-20;
               font-weight: bold;
               display: inline-block;
-              margin: 0 0 50px 7px;
+              margin: 0 0 30px 7px;
             }
 
             .name:hover {

+ 9 - 5
src/views/seven/index.vue

@@ -15,11 +15,11 @@
                     {{ item.name || '暂无名称' }}
                   </el-tooltip>
                 </el-col>
-                <el-col :span="24" class="other_1">
+                <el-col :span="24" class="other_1 textOne">
                   <span>服务领域:</span>
-                  {{ item.field || '暂无服务领域' }}
+                  {{ getDict(item.field) || '暂无服务领域' }}
                 </el-col>
-                <el-col :span="24" class="other_1">
+                <el-col :span="24" class="other_1 textOne">
                   <span>登记时间:</span>
                   {{ item.time || '暂无登记时间' }}
                 </el-col>
@@ -72,8 +72,8 @@ const searchOther = async () => {
   res = await regionStore.list({ level: 'city', parent_code: 22 })
   if (res.errcode == '0') cityList.value = res.data
   cityList.value.unshift({ id: '-1', code: '-1', name: '不限', is_active: true })
-  // 技术领域
-  res = await dictDataStore.query({ code: 'field', is_use: '0' })
+  // 服务领域
+  res = await dictDataStore.query({ code: 'service', is_use: '0' })
   if (res.errcode == '0') typeList.value = res.data
   typeList.value.unshift({ id: '-1', value: '-1', label: '不限', is_active: true })
 }
@@ -109,6 +109,10 @@ const sizeChange = (limits) => {
 const getUrl = (item) => {
   if (item && item.length > 0) return `${import.meta.env.VITE_APP_HOST}${item[0].uri}`
 }
+// 数组显示
+const getDict = (data) => {
+  if (data) return data.join(',')
+}
 const scrollTop = ref(0)
 
 onActivated(() => {