| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <template>
- <cl-page back-top>
- <view class="py-2">
- <cl-waterfall ref="waterfallRef" :column="2" :gutter="16">
- <template #item="{ item, index }">
- <view class="bg-white mb-3 rounded-xl dark:!bg-gray-800 relative">
- <image
- :src="item['image']"
- mode="widthFix"
- class="w-full rounded-xl"
- ></image>
- <template v-if="item['isAd']">
- <cl-tag :pt="{ className: 'absolute left-1 top-1 scale-75' }"
- >广告</cl-tag
- >
- <cl-icon
- color="white"
- name="close-line"
- :pt="{ className: 'absolute right-2 top-2' }"
- @tap="del(item['id'] as number)"
- ></cl-icon>
- </template>
- <view class="p-3" v-else>
- <cl-text>{{ item["title"] }}</cl-text>
- <cl-row class="mt-2" :pt="{ className: 'justify-end items-center' }">
- <cl-icon name="heart-line"></cl-icon>
- <cl-text :pt="{ className: '!text-sm ml-1' }">{{
- item["likeCount"]
- }}</cl-text>
- </cl-row>
- </view>
- </view>
- </template>
- </cl-waterfall>
- <cl-loadmore :loading="true"></cl-loadmore>
- </view>
- </cl-page>
- </template>
- <script lang="ts" setup>
- import { random } from "@/cool";
- import { onMounted, ref } from "vue";
- const waterfallRef = ref<ClWaterfallComponentPublicInstance | null>(null);
- const loading = ref(false);
- let id = 0;
- function refresh() {
- const items = [
- {
- id: id++,
- likeCount: random(100, 1000),
- title: "春日樱花盛开时节,粉色花瓣如诗如画般飘洒",
- image: "https://unix.cool-js.com/images/demo/1.jpg"
- },
- {
- id: id++,
- likeCount: random(100, 1000),
- title: "夕阳西下的海滩边,金色阳光温柔地洒在波光粼粼的海面上,构成令人心旷神怡的日落美景",
- image: "https://unix.cool-js.com/images/demo/2.jpg"
- },
- {
- id: id++,
- likeCount: random(100, 1000),
- title: "寒冬腊月时分,洁白雪花纷纷扬扬地覆盖着整个世界,感受冬日的宁静与美好",
- image: "https://unix.cool-js.com/images/demo/3.jpg"
- },
- {
- id: id++,
- image: "https://unix.cool-js.com/images/demo/4.jpg",
- isAd: true
- },
- {
- id: id++,
- likeCount: random(100, 1000),
- title: "都市夜景霓虹闪烁,五彩斑斓光芒照亮城市营造梦幻般景象",
- image: "https://unix.cool-js.com/images/demo/5.jpg"
- },
- {
- id: id++,
- likeCount: random(100, 1000),
- title: "云雾缭绕的山间风光如诗如画让人心旷神怡,微风轻抚树梢带来阵阵清香,鸟儿在林间自由歌唱",
- image: "https://unix.cool-js.com/images/demo/6.jpg"
- },
- {
- id: id++,
- likeCount: random(100, 1000),
- title: "古老建筑与现代摩天大楼交相辉映,传统与现代完美融合创造独特城市景观",
- image: "https://unix.cool-js.com/images/demo/7.jpg"
- },
- {
- id: id++,
- likeCount: random(100, 1000),
- title: "广袤田野绿意盎然风光无限,金黄麦浪在微风中轻柔摇曳,农家炊烟袅袅升起",
- image: "https://unix.cool-js.com/images/demo/8.jpg"
- },
- {
- id: id++,
- likeCount: random(100, 1000),
- title: "璀璨星空下银河横跨天际,繁星闪烁神秘光芒营造浪漫夜空美景",
- image: "https://unix.cool-js.com/images/demo/9.jpg"
- },
- {
- id: id++,
- likeCount: random(100, 1000),
- title: "雄伟瀑布从高耸悬崖飞流直下激起千层浪花,彩虹在水雾中若隐若现如梦如幻",
- image: "https://unix.cool-js.com/images/demo/10.jpg"
- }
- ];
- waterfallRef.value!.append(items);
- }
- function del(id: number) {
- waterfallRef.value!.remove(id);
- }
- onReachBottom(() => {
- if (loading.value) return;
- loading.value = true;
- setTimeout(() => {
- refresh();
- loading.value = false;
- }, 1000);
- });
- onMounted(() => {
- refresh();
- });
- </script>
|