Commit 975e183d authored by nick zheng's avatar nick zheng

chore: 个人空间和应用广场移入应用高亮显示,支持点击跳转

parent fcee0a5a
...@@ -239,7 +239,8 @@ function handleEnterKeypress(event: KeyboardEvent) { ...@@ -239,7 +239,8 @@ function handleEnterKeypress(event: KeyboardEvent) {
> >
<div v-for="agentApplicationItem in agentApplicationList" :key="agentApplicationItem.id"> <div v-for="agentApplicationItem in agentApplicationList" :key="agentApplicationItem.id">
<div <div
class="rounded-[10px]! max-w-[392px] bg-[#fff] px-[24px] pb-[20px] pt-[20px] shadow-[0_4px_10px_0px_rgba(103,103,103,.1)]" class="rounded-[10px]! hover:border-theme-color max-w-[392px] cursor-pointer border border-transparent bg-[#fff] px-[24px] pb-[20px] pt-[20px] shadow-[0_4px_10px_0px_rgba(103,103,103,.1)]"
@click="handleToUseAgentApplication(agentApplicationItem.baseInfo.agentId)"
> >
<div class="flex justify-between"> <div class="flex justify-between">
<div class="popover-trigger mr-[22px] text-[14px]"> <div class="popover-trigger mr-[22px] text-[14px]">
...@@ -284,7 +285,7 @@ function handleEnterKeypress(event: KeyboardEvent) { ...@@ -284,7 +285,7 @@ function handleEnterKeypress(event: KeyboardEvent) {
:fill="agentApplicationItem.isCollect === 'Y' ? ['#ffc06d', '#ffc06d'] : ['#333', '#fff']" :fill="agentApplicationItem.isCollect === 'Y' ? ['#ffc06d', '#ffc06d'] : ['#333', '#fff']"
:stroke-width="3" :stroke-width="3"
class="cursor-pointer transition-all delay-150 duration-300 ease-in-out" class="cursor-pointer transition-all delay-150 duration-300 ease-in-out"
@click="handleCollectOrCancelAgentApplication(agentApplicationItem)" @click.stop="handleCollectOrCancelAgentApplication(agentApplicationItem)"
/> />
<span class="ml-[6px] text-[12px] text-[#333]">{{ agentApplicationItem.collectNumber }}</span> <span class="ml-[6px] text-[12px] text-[#333]">{{ agentApplicationItem.collectNumber }}</span>
</div> </div>
......
...@@ -262,7 +262,7 @@ const handleCardContentScrollDebounce = debounce( ...@@ -262,7 +262,7 @@ const handleCardContentScrollDebounce = debounce(
@click="handleEditPersonalApp(agentAppItem.baseInfo.agentId)" @click="handleEditPersonalApp(agentAppItem.baseInfo.agentId)"
> >
<div <div
class="rounded-[10px]! ml-[5px] max-w-[380px] pb-[19px] pl-[24px] pr-[27px] pt-[20px] shadow-[0_4px_10px_0px_rgba(103,103,103,.1)]" class="rounded-[10px]! hover:border-theme-color ml-[5px] max-w-[380px] border border-transparent pb-[19px] pl-[24px] pr-[27px] pt-[20px] shadow-[0_4px_10px_0px_rgba(103,103,103,.1)]"
> >
<div class="flex cursor-pointer justify-between"> <div class="flex cursor-pointer justify-between">
<div class="popover-trigger mb-[19px] mr-[15px] text-[14px]"> <div class="popover-trigger mb-[19px] mr-[15px] text-[14px]">
......
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