浏览代码

all activity

邹能昇 2 月之前
父节点
当前提交
27f3cd07ea

+ 24 - 1
nova-werun/pages/activity/index.js

@@ -1,4 +1,6 @@
 // nova-werun/pages/activity/index.js
+const Parse = getApp().Parse;
+const company = getApp().globalData.company;
 Page({
 
     /**
@@ -12,6 +14,8 @@ Page({
         contentHeight: 0, // 可用内容高度
         contentHeight2: 0,
         contentpadding: 0, //顶部padding高度
+
+        ActivityList:[],
     },
 
     /**
@@ -36,6 +40,8 @@ Page({
             contentpadding,
             contentHeight
         });
+
+        this.getact()
     },
 
     /**
@@ -85,5 +91,22 @@ Page({
      */
     onShareAppMessage: function () {
 
-    }
+    },
+    //活动列表
+    async getact() {
+        let Activityquery = new Parse.Query('Activity');
+        Activityquery.equalTo('company', company);
+        Activityquery.notEqualTo('isDeleted', true);
+        Activityquery.equalTo('isEnabled', true);
+        Activityquery.ascending('index'); // 按index升序排序
+    
+        let P = await Activityquery.find();
+        let ActivityList = P.map(item => item.toJSON());
+    
+        this.setData({
+            ActivityList,
+        });
+
+        console.log(ActivityList);
+    },
 })

+ 51 - 0
nova-werun/pages/activity/index.less

@@ -1,4 +1,55 @@
 /* nova-werun/pages/activity/index.wxss */
 .all{
     width: 100vw;
+    .cardbox{
+        border-radius: 15rpx;
+        margin: 20rpx;
+        padding: 30rpx;
+        box-shadow: 0rpx 0rpx 10rpx #b8b7b7;
+        position: relative;
+        .card{
+            width: 100%;
+            display: flex;
+            image{
+                width: 310rpx;
+                height: 177rpx;
+                border-radius: 20rpx;
+            }
+            .infobox{
+                margin-left: 20rpx;
+                width: 405rpx;
+                .title{
+                    width: 100%;
+                    height: 160rpx;
+                    font-size: 28rpx;
+                    overflow: hidden;
+                    text-overflow: ellipsis;
+                    display: -webkit-box;
+                    -webkit-line-clamp: 4;
+                    -webkit-box-orient: vertical;
+                }
+    
+            }
+
+        }
+
+        .time{
+            width: 100%;
+            font-size: 26rpx;
+            color: gray;
+            margin-top: 10rpx;
+        }
+        .submit{
+            position: absolute;
+            right: 0;
+            bottom: 0;
+            border-radius: 15rpx;
+            display: flex;
+            justify-content: center;
+            align-items: center;
+            background-color: aqua;
+            font-size: 25rpx;
+            padding: 10rpx 20rpx;
+        }
+    }
 }

+ 13 - 2
nova-werun/pages/activity/index.wxml

@@ -1,6 +1,17 @@
 <!--nova-werun/pages/activity/index.wxml-->
 <nav type="back" title="全部活动" background-color="{{'#4F9AF7'}}" front-color="{{'#ffffff'}}"></nav>
 <view class="all" style="height: {{contentHeight}}rpx;">
+    <block wx:for="{{ActivityList}}">
+        <view class="cardbox">
+            <view class="card">
+                <image src="{{item.cover[0]}}" mode="aspectFit"></image>
+                <view class="infobox">
+                    <view class="title">{{item.desc}}{{item.desc}}</view>
+                </view>
+            </view>
+            <view class="time">活动时间:2025-01-14T06:58:57.476Z</view>
+            <view class="submit">报名中</view>
+        </view>
+    </block>
 
-</view>
-
+</view>

+ 1 - 1
nova-werun/pages/activity/index.wxss

@@ -1 +1 @@
-.all{width:100vw}
+.all{width:100vw}.all .cardbox{border-radius:15rpx;margin:20rpx;padding:30rpx;box-shadow:0rpx 0rpx 10rpx #b8b7b7;position:relative}.all .cardbox .card{width:100%;display:flex}.all .cardbox .card image{width:310rpx;height:177rpx;border-radius:20rpx}.all .cardbox .card .infobox{margin-left:20rpx;width:405rpx}.all .cardbox .card .infobox .title{width:100%;height:160rpx;font-size:28rpx;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical}.all .cardbox .time{width:100%;font-size:26rpx;color:gray;margin-top:10rpx}.all .cardbox .submit{position:absolute;right:0;bottom:0;border-radius:15rpx;display:flex;justify-content:center;align-items:center;background-color:aqua;font-size:25rpx;padding:10rpx 20rpx}

+ 6 - 0
project.private.config.json

@@ -87,6 +87,12 @@
                     "pathName": "nova-werun/pages/home/step/index",
                     "query": "",
                     "scene": null
+                },
+                {
+                    "name": "全部活动",
+                    "pathName": "nova-werun/pages/activity/index",
+                    "query": "",
+                    "scene": null
                 }
             ]
         }