Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
liyeyun
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cfld-frontend
liyeyun
Commits
87b68d29
Commit
87b68d29
authored
Dec 14, 2023
by
王玉鑫
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat: 星级开发区样式修改
parent
da049175
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
20 additions
and
11 deletions
+20
-11
DetailInfoCell.vue
src/components/detail/DetailInfoCell.vue
+4
-3
MiniListItem.vue
src/components/detail/MiniListItem.vue
+1
-1
MapView.vue
src/components/map/MapView.vue
+2
-1
CarrierDetail.vue
src/views/carrier/CarrierDetail.vue
+1
-1
DevelopZoneDetail.vue
src/views/develop/DevelopZoneDetail.vue
+9
-3
IndustrialParkDetail.vue
src/views/industrial-park/IndustrialParkDetail.vue
+2
-1
LandDetail.vue
src/views/land/LandDetail.vue
+1
-1
No files found.
src/components/detail/DetailInfoCell.vue
View file @
87b68d29
...
...
@@ -14,7 +14,7 @@
></div>
<div
class=
"ml-[13px] font-yahei text-xl font-bold leading-8 tracking-[2px] text-[#1A1A1A]"
:class=
"
{ 'text-2xl': titleCenter }"
:class=
"
{ '
!
text-2xl': titleCenter }"
>
{{
title
}}
</div>
...
...
@@ -27,10 +27,11 @@
<div
v-if=
"titleCenter"
class=
"title-bottom-bg h-1 w-[102px] rounded-[30px]"
></div>
<div
v-if=
"toListText"
class=
"absolute right-0 flex cursor-pointer
justify-end text-xs
"
class=
"absolute right-0 flex cursor-pointer
items-center justify-end text-xs text-[#4D4D4D]
"
@
click=
"handleToList"
>
更多
{{
toListText
}}
<img
class=
"h-3 w-3"
src=
"@/assets/images/icon-arrow_right.png"
/>
</div>
</div>
<div
class=
"mt-5"
:class=
"
{ 'content-show': isContentExpand }">
...
...
src/components/detail/MiniListItem.vue
View file @
87b68d29
<!-- 产业园、开发区内的载体、土地项 -->
<
template
>
<div
v-if=
"detail"
class=
"w-[27
2
px]"
>
<div
v-if=
"detail"
class=
"w-[27
4
px]"
>
<div
@
click=
"handleDetail"
>
<CommonImage
class=
"h-[204px] w-full cursor-pointer rounded-sm"
:src=
"detail.imgUrl"
/>
</div>
...
...
src/components/map/MapView.vue
View file @
87b68d29
...
...
@@ -9,7 +9,7 @@
</div>
</div>
-->
<div
id=
"mmap"
>
<div
id=
"container"
></div>
<div
id=
"container"
:class=
"containerClass"
></div>
<div
id=
"panel"
></div>
<div
class=
"map-table"
>
<div
class=
"table-search"
>
...
...
@@ -103,6 +103,7 @@ const activeTab = ref<string>('高速公路');
const
props
=
defineProps
<
{
lng
:
string
|
number
;
lat
:
string
|
number
;
containerClass
?:
string
;
}
>
();
const
infoList
=
ref
<
any
[]
>
([]);
(
window
as
any
).
_AMapSecurityConfig
=
{
...
...
src/views/carrier/CarrierDetail.vue
View file @
87b68d29
...
...
@@ -35,7 +35,7 @@
:lng=
"detail.carrierParkVo.longitude"
></MapView>
</DetailInfoCell>
<DetailInfoCell
title-center
title=
"所属产业园"
>
<DetailInfoCell
class=
"!mt-10"
title-center
title=
"所属产业园"
>
<ParkItem
:type=
"ParkItemType.industrial"
:item=
"
{
...
...
src/views/develop/DevelopZoneDetail.vue
View file @
87b68d29
...
...
@@ -56,16 +56,21 @@
<DetailInfo
:infos=
"joinRequired"
></DetailInfo>
</DetailInfoCell>
<DetailInfoCell
title=
"周边配套"
title-center
>
<MapView
:lat=
"detail.latitude"
:lng=
"detail.longitude"
></MapView>
<MapView
:lat=
"detail.latitude"
:lng=
"detail.longitude"
:container-class=
"isStar ? '!h-[400px]' : undefined"
></MapView>
</DetailInfoCell>
<DetailInfoCell
v-if=
"industrials.length"
class=
"!mt-10"
title-center
title=
"开发区内产业园"
:to-list-text=
"industrials.length > 4 ? '查看更多' : ''"
@
to-list=
"toIndustrialList"
>
<div
class=
"flex space-x-[
23
px]"
>
<div
class=
"flex space-x-[
37
px]"
>
<MiniListItem
v-for=
"item of industrials.slice(0, 4)"
:key=
"item.name"
...
...
@@ -76,12 +81,13 @@
</DetailInfoCell>
<DetailInfoCell
v-if=
"lands.length"
class=
"!mt-10"
title-center
title=
"开发区内土地"
:to-list-text=
"lands.length > 4 ? '查看更多' : ''"
@
to-list=
"toLandList"
>
<div
class=
"flex space-x-[
23
px]"
>
<div
class=
"flex space-x-[
37
px]"
>
<MiniListItem
v-for=
"item of lands.slice(0, 4)"
:key=
"item.name"
...
...
src/views/industrial-park/IndustrialParkDetail.vue
View file @
87b68d29
...
...
@@ -91,12 +91,13 @@
</DetailInfoCell>
<DetailInfoCell
v-if=
"carriers.length"
class=
"!mt-10"
title-center
title=
"产业园内载体"
:to-list-text=
"carriers.length > 4 ? '查看更多' : ''"
@
to-list=
"toCarrierList"
>
<div
class=
"flex space-x-[
23
px]"
>
<div
class=
"flex space-x-[
37
px]"
>
<MiniListItem
v-for=
"item of carriers.slice(0, 4)"
:key=
"item.name"
...
...
src/views/land/LandDetail.vue
View file @
87b68d29
...
...
@@ -33,7 +33,7 @@
<DetailInfoCell
title=
"周边配套"
title-center
>
<MapView
:lat=
"detail.development.latitude"
:lng=
"detail.development.longitude"
></MapView>
</DetailInfoCell>
<DetailInfoCell
title-center
title=
"所属开发区"
>
<DetailInfoCell
class=
"!mt-10"
title-center
title=
"所属开发区"
>
<ParkItem
:type=
"ParkItemType.develop"
:item=
"
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment