Commit 492df837 authored by 王玉鑫's avatar 王玉鑫

feat: 我的园区,开发区详情

parent dd9986bd
import type { Enterprise, ListInfo } from '../common';
/**
* 我的园区-开发区详情
*/
......@@ -21,7 +23,7 @@ export interface MyParkDevelopDetailResp {
/** 开发区简介 */
description: string;
/** 重点企业详情 */
enterpriseList: string[];
enterprise: ListInfo<Enterprise>[];
/** 环评要求 */
environmentalEquirements: string;
/** 产业基金 */
......
This diff is collapsed.
......@@ -30,7 +30,21 @@
<DetailInfoCell title="基本信息" :show-title-icon="false">
<DetailInfo :infos="handleInfos(baseInfo)"></DetailInfo>
</DetailInfoCell>
<DetailInfoCell title="联系方式" :show-title-icon="false">
<DetailInfoCell
v-if="detail.imgUrlList?.length"
title="产业园图片"
:show-title-icon="false"
>
<div class="flex flex-wrap gap-4 px-[18px]">
<CommonImage
v-for="img of detail.imgUrlList"
:key="img"
class="h-[124px] w-[124px]"
:src="img"
></CommonImage>
</div>
</DetailInfoCell>
<DetailInfoCell title="联系人" :show-title-icon="false">
<DetailInfo :infos="handleInfos(contactInfo)"></DetailInfo>
</DetailInfoCell>
<DetailInfoCell title="产业基础" :show-title-icon="false">
......@@ -93,6 +107,7 @@
import { useDetail } from '@/composable/useDetail.ts';
import { RequestUrl } from '@/types/api.ts';
import type { MyParkIndustrialDetailResp } from '@/types/api/myParkIndustrialDetail.ts';
import CommonImage from '@/components/common/CommonImage.vue';
import { DetailType } from '@/types/enum.ts';
import { computed, ref } from 'vue';
import DetailInfoCell from '@/components/detail/DetailInfoCell.vue';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment