Commit 5be15baf authored by shilei's avatar shilei

fix: 登录取消点击蒙层小时,解锁文案修改

parent 5567ad10
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
<span class="mx-1 cursor-pointer font-semibold text-[#C0322B]" @click="handleUnlock"> <span class="mx-1 cursor-pointer font-semibold text-[#C0322B]" @click="handleUnlock">
解锁 解锁
</span> </span>
可查看数据详情,还剩余 可查看数据详情,还剩余
<span class="mx-1 font-semibold text-[#C0322B]">{{ limitNum }}</span> <span class="mx-1 font-semibold text-[#C0322B]">{{ limitNum }}</span>
次解锁额度 次解锁额度
</div> </div>
......
...@@ -19,6 +19,7 @@ export function useLoginModal() { ...@@ -19,6 +19,7 @@ export function useLoginModal() {
showClose: true, showClose: true,
showCancelButton: false, showCancelButton: false,
showConfirmButton: false, showConfirmButton: false,
closeOnClickModal: false,
center: true, center: true,
customClass: 'login-message-box', customClass: 'login-message-box',
}); });
......
...@@ -122,21 +122,21 @@ ...@@ -122,21 +122,21 @@
开发区 开发区
</div> </div>
<div <div
class="mr-2 cursor-pointer px-6 py-2" class="mr-2 cursor-pointer px-[22px] py-[11px]"
:class="{ 'active-tab': activeTab === 'industrial' }" :class="{ 'active-tab': activeTab === 'industrial' }"
@click="changeTab('industrial', homePageData?.parkList)" @click="changeTab('industrial', homePageData?.parkList)"
> >
产业园 产业园
</div> </div>
<div <div
class="mr-2 cursor-pointer px-6 py-2" class="mr-2 cursor-pointer px-[22px] py-[11px]"
:class="{ 'active-tab': activeTab === 'land' }" :class="{ 'active-tab': activeTab === 'land' }"
@click="changeTab('land', homePageData?.landList)" @click="changeTab('land', homePageData?.landList)"
> >
土地 土地
</div> </div>
<div <div
class="mr-2 cursor-pointer px-6 py-2" class="mr-2 cursor-pointer px-[22px] py-[11px]"
:class="{ 'active-tab': activeTab === 'carrier' }" :class="{ 'active-tab': activeTab === 'carrier' }"
@click="changeTab('carrier', homePageData?.carrierList)" @click="changeTab('carrier', homePageData?.carrierList)"
> >
...@@ -186,7 +186,7 @@ ...@@ -186,7 +186,7 @@
</div> </div>
<template v-if="activeTab === 'develop' || activeTab === 'industrial'"> <template v-if="activeTab === 'develop' || activeTab === 'industrial'">
<div class="mt-[14px]"> <div class="mt-[14px]">
<ListInfo :infos="getInfos(item)"></ListInfo> <ListInfo :infos="getInfos(item)" class="media-tag"></ListInfo>
</div> </div>
<div class="mt-[14px] flex h-[22px] flex-wrap gap-[13px] overflow-hidden"> <div class="mt-[14px] flex h-[22px] flex-wrap gap-[13px] overflow-hidden">
<div <div
...@@ -674,4 +674,7 @@ watchEffect(async () => { ...@@ -674,4 +674,7 @@ watchEffect(async () => {
height: 48px; height: 48px;
margin-bottom: 12px; margin-bottom: 12px;
} }
.media-tag ::v-deep .text-sm {
font-size: 12px;
}
</style> </style>
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