Bläddra i källkod

榜单说明页面

bayi 2 år sedan
förälder
incheckning
619058f069

+ 1 - 0
app.json

@@ -2,6 +2,7 @@
   "pages": [
     "pages/index/index",
     "pages/pkPage/index",
+    "pages/rankIntro/index",
     "pages/ranking/index",
     "pages/pkResult/index",
     "pages/userWorks/index",

+ 1 - 1
pages/index/index.js

@@ -37,7 +37,6 @@ Page({
     getApp().callBack = (res) => {
       this.getLocUserInfo()
       this.resetData()
-      this.getCategoryList()
     }
     let uid = wx.getStorageSync('uid')
     /*  if (uid) {
@@ -72,6 +71,7 @@ Page({
         grade: this.data.userInfo.grade
       })
     }
+    this.getCategoryList()
   },
   jumpChildClassify({
     currentTarget

+ 65 - 0
pages/rankIntro/index.js

@@ -0,0 +1,65 @@
+// pages/rankIntro/index.js
+Page({
+
+  /**
+   * 页面的初始数据
+   */
+  data: {
+  },
+
+  /**
+   * 生命周期函数--监听页面加载
+   */
+  onLoad(options) {
+
+  },
+
+  /**
+   * 生命周期函数--监听页面初次渲染完成
+   */
+  onReady() {
+
+  },
+
+  /**
+   * 生命周期函数--监听页面显示
+   */
+  onShow() {
+
+  },
+
+  /**
+   * 生命周期函数--监听页面隐藏
+   */
+  onHide() {
+
+  },
+
+  /**
+   * 生命周期函数--监听页面卸载
+   */
+  onUnload() {
+
+  },
+
+  /**
+   * 页面相关事件处理函数--监听用户下拉动作
+   */
+  onPullDownRefresh() {
+
+  },
+
+  /**
+   * 页面上拉触底事件的处理函数
+   */
+  onReachBottom() {
+
+  },
+
+  /**
+   * 用户点击右上角分享
+   */
+  onShareAppMessage() {
+
+  }
+})

+ 4 - 0
pages/rankIntro/index.json

@@ -0,0 +1,4 @@
+{
+  "usingComponents": {},
+  "navigationBarTitleText": "榜单说明"
+}

+ 3 - 0
pages/rankIntro/index.less

@@ -0,0 +1,3 @@
+.rankInfoBox {
+  width: 100%;
+}

+ 3 - 0
pages/rankIntro/index.wxml

@@ -0,0 +1,3 @@
+<view class="rankInfoBox">
+
+</view>

+ 3 - 0
pages/rankIntro/index.wxss

@@ -0,0 +1,3 @@
+.rankInfoBox {
+  width: 100%;
+}

+ 5 - 49
pages/ranking/index.js

@@ -15,7 +15,6 @@ Page({
    * 生命周期函数--监听页面加载
    */
   onLoad(options) {
-    console.log(options);
     this.setData({
       rankingType: options.type,
       icon: options.type == '2' ? '/static/yx.png' : options.type == '3' ? '/static/play.png' : '/static/win.png',
@@ -30,53 +29,10 @@ Page({
       backgroundColor: options.type == '2' ? '#ff7f6c' : options.type == '3' ? '#6D9FFE' : '#967DFF',
     })
   },
-
-  /**
-   * 生命周期函数--监听页面初次渲染完成
-   */
-  onReady() {
-
-  },
-
-  /**
-   * 生命周期函数--监听页面显示
-   */
-  onShow() {
-
-  },
-
-  /**
-   * 生命周期函数--监听页面隐藏
-   */
-  onHide() {
-
-  },
-
-  /**
-   * 生命周期函数--监听页面卸载
-   */
-  onUnload() {
-
-  },
-
-  /**
-   * 页面相关事件处理函数--监听用户下拉动作
-   */
-  onPullDownRefresh() {
-
-  },
-
-  /**
-   * 页面上拉触底事件的处理函数
-   */
-  onReachBottom() {
-
-  },
-
-  /**
-   * 用户点击右上角分享
-   */
-  onShareAppMessage() {
-
+  jumpIntro() {
+    console.log();
+    wx.navigateTo({
+      url: `/pages/rankIntro/index?type=${this.data.rankingType}`,
+    })
   }
 })

+ 1 - 1
pages/ranking/index.wxml

@@ -1,6 +1,6 @@
 <view class="rankingBox">
   <view class="podiumBox {{podiumBoxBg}}">
-    <view class="tips">榜单说明</view>
+    <view class="tips" bindtap="jumpIntro">榜单说明</view>
     <view class="tips2">周榜</view>
     <view class="podiumContent">
       <view class="user first">

+ 7 - 0
project.private.config.json

@@ -37,6 +37,13 @@
           "query": "type=2",
           "launchMode": "default",
           "scene": null
+        },
+        {
+          "name": "",
+          "pathName": "pages/rankIntro/index",
+          "query": "type=2",
+          "launchMode": "default",
+          "scene": null
         }
       ]
     }

BIN
static/play.png