|
@@ -100,14 +100,15 @@ onMounted(() => {
|
|
|
class="absolute bottom-0 left-0 right-0 px-3.5 py-7 flex flex-col items-center"
|
|
|
v-show="imgDisplayed"
|
|
|
>
|
|
|
- <wd-icon
|
|
|
- custom-class="relative bottom-6"
|
|
|
- :name="data?.length > 2 ? 'arrow-up' : 'arrow-down'"
|
|
|
- size="22px"
|
|
|
- color="#4f4f4f"
|
|
|
- @click="data?.length > 2 ? push() : pull()"
|
|
|
- ></wd-icon>
|
|
|
- <view class="w-full duration-800">
|
|
|
+ <div class="p-4 relative" @click="data?.length > 2 ? push() : pull()">
|
|
|
+ <wd-icon
|
|
|
+ custom-class=""
|
|
|
+ :name="data?.length > 2 ? 'arrow-up' : 'arrow-down'"
|
|
|
+ size="22px"
|
|
|
+ color="#4f4f4f"
|
|
|
+ ></wd-icon>
|
|
|
+ </div>
|
|
|
+ <view class="w-full">
|
|
|
<wd-button block size="large" custom-class="rd!" @click="handleClick">
|
|
|
查看全部行程
|
|
|
</wd-button>
|