123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- <template>
- <view class="container">
- <uni-list>
- <uni-list-item v-for="(item, index) in list" :key="index">
- <!-- 自定义 header -->
- <template v-slot:header>
- <view class="slot-box" @click="btn(item)">
- <image class="slot-image" :src=" item.image"></image>
- <text class="status">{{ item.statusText }}</text>
- </view>
- </template>
- <!-- 自定义 body -->
- <template v-slot:body>
- <view class="slot-body" @click="btn(item)">
- <view class="slot-box slot-title">{{ item.topic }}</view>
- <!-- <view class="slot-box slot-text">人数限制: {{ item.regMaxCount }}人</view> -->
- </view>
- </template>
- <!-- 自定义 footer-->
- <template v-slot:footer>
- <view class="slot-footer" @click="btn(item)">
- <uni-icons class="footerIcon" type="forward" size="25"></uni-icons>
- </view>
- </template>
- </uni-list-item>
- </uni-list>
- <uni-load-more :status="more" />
- </view>
- </template>
- <script>
- import request from '../../api/activity.js';
- import { BASE_URL } from '../../env.js';
- export default {
- data() {
- return {
- list: [],
- more: 'more',
- page: 0,
- size: 12,
- type: null
- }
- },
- mounted() {
- this.query();
- },
- onLoad(option) {
- this.type = option.type;
- },
- methods: {
- async query() {
- this.page += 1;
- this.more = 'loading';
- const res = await request.getActivity({ pageNum: this.page, pageSize: this.size, types: this.type });
- const isDateTime = new Date().getTime();
- res.rows?.map(e => {
- const endTime = Date.parse(e.endTime);
- const startTime = Date.parse(e.regStartTime);
- if (e.status == 0 || isDateTime < startTime) e.statusText = '未开始';
- if (e.status !== 3 && isDateTime > startTime) e.statusText = '进行中';
- // if (isDateTime > endTime && e.status !== 3) e.statusText = '积分发放中';
- if (e.status == 3) e.statusText = '已结束';
- e.image = BASE_URL.fileUrl + e.image;
- return e;
- })
- this.list.push(...res.rows)
- // 根据总数 算页数 如果当前页 = 总页数就是没有数据 否则就是上拉加载
- this.more = this.page >= Math.ceil(res.total / this.size) ? 'noMore' : 'more';
- },
- btn(e) {
- uni.navigateTo({ url: `/pages/activity/details?activityId=${e.activityId}` })
- }
- },
- // 页面生命周期中onReachBottom(页面滚动到底部的事件)
- onReachBottom() {
- if(this.more != 'noMore') {
- this.more = 'more';
- this.query();
- }
- }
- }
- </script>
- <style>
- .slot-box {
- position: relative;
- }
- .slot-image {
- width: 80px;
- height: 80px;
- }
- .status {
- position: absolute;
- left: 0;
- top: 0;
- font-size: 12px;
- color: #fff;
- background: #999;
- }
- .slot-body {
- width: 70%;
- margin-left: 10px;
- }
- .slot-title {
- font-size: 1.2em;
- font-weight: 600;
- color: #000;
- line-height: 2em;
- }
- .slot-text {
- font-size: 14px;
- color: #999;
- line-height: 3em;
- }
- .footerIcon {
- line-height: 3em;
- }
- </style>
|