yukangzhe 4 anos atrás
pai
commit
6ced4abfaf

+ 2 - 1
app.json

@@ -1,8 +1,9 @@
 {
   "plugins": {},
   "pages": [
-    "pages/login/login",
     "pages/piano/piano",
+    "pages/login/login",
+    "pages/makePiano/makePiano",
     "pages/index/index",
     "pages/myself/myself"
   ],

+ 88 - 0
pages/makePiano/makePiano.js

@@ -0,0 +1,88 @@
+// pages/makePiano/makePiano.js
+const app = getApp()
+const util = require("../../utils/util")
+Page({
+
+  /**
+   * 页面的初始数据
+   */
+  data: {
+    weekList:[],
+    curIndex:0
+  },
+
+  getWeek:function(e){
+    this.setData({
+      curIndex : e.currentTarget.dataset.index
+    })
+  },
+  
+
+  /**
+   * 生命周期函数--监听页面加载
+   */
+  onLoad: function (options) {
+    var list = []
+    for(var i = 0; i < 7; i++){
+      var date = util.fun_date(i)
+      var week = util.fun_week(date)
+      var json = {
+        date: date.substring(5,date.length),
+        week: week
+      }
+      list.push(json)
+    }
+    this.setData({
+      weekList: list
+    })
+  },
+
+  /**
+   * 生命周期函数--监听页面初次渲染完成
+   */
+  onReady: function () {
+
+  },
+
+  /**
+   * 生命周期函数--监听页面显示
+   */
+  onShow: function () {
+
+  },
+
+  /**
+   * 生命周期函数--监听页面隐藏
+   */
+  onHide: function () {
+
+  },
+
+  /**
+   * 生命周期函数--监听页面卸载
+   */
+  onUnload: function () {
+
+  },
+
+  /**
+   * 页面相关事件处理函数--监听用户下拉动作
+   */
+  onPullDownRefresh: function () {
+
+  },
+
+  /**
+   * 页面上拉触底事件的处理函数
+   */
+  onReachBottom: function () {
+
+  },
+
+  /**
+   * 用户点击右上角分享
+   */
+  onShareAppMessage: function () {
+
+  }
+})

+ 3 - 0
pages/makePiano/makePiano.json

@@ -0,0 +1,3 @@
+{
+  "usingComponents": {}
+}

+ 10 - 0
pages/makePiano/makePiano.wxml

@@ -0,0 +1,10 @@
+<view class="container">
+  <view class="week-view">
+    <view class="week-list">
+      <view class="week-box {{curIndex == index ? 'cur-week' : ''}}" wx:for="{{weekList}}" wx:key="index" data-index="{{index}}" bindtap="getWeek">
+        <view class="weekDay">{{item.week}}</view>
+        <view class="weekDate">{{item.date}}</view>
+      </view>
+    </view>
+  </view>
+</view>

+ 27 - 0
pages/makePiano/makePiano.wxss

@@ -0,0 +1,27 @@
+.container{
+  padding: 0;
+  margin: 0;
+}
+.week-view{
+   width: 700rpx;
+   margin: 25rpx;
+}
+.week-list{
+  width: 700rpx;
+  display: flex;
+}
+.week-box{
+  height: 90rpx;
+  width: 90rpx;
+  border-radius: 100rpx;
+  font-size:24rpx;
+  text-align: center;
+  margin: 0 auto;
+}
+.weekDay{
+  margin-top: 10rpx;
+}
+.cur-week{
+  background: #cc6031;
+  color:#FFF;
+}

+ 1 - 1
pages/piano/piano.wxml

@@ -21,7 +21,7 @@
     </view>
     <view class="search-btn">确定</view>
   </view>
-  <!-- <view class="select-box-bg" bindtap="showSelect" animation="{{animationBg}}"></view> -->
+  <view class="select-box-bg" bindtap="showSelect" animation="{{animationBg}}" wx:if="{{yFlag == true}}"></view>
   <view class="height-view"></view>
   <view class="piano-list">
     <view class="piano-box" wx:for="{{list}}" wx:key="index">

+ 3 - 1
project.config.json

@@ -21,8 +21,9 @@
     "checkSiteMap": true,
     "uploadWithSourceMap": true,
     "compileHotReLoad": false,
-    "useMultiFrameRuntime": false,
+    "useMultiFrameRuntime": true,
     "useApiHook": true,
+    "useApiHostProcess": false,
     "babelSetting": {
       "ignore": [],
       "disablePlugins": [],
@@ -33,6 +34,7 @@
     "useIsolateContext": true,
     "useCompilerModule": true,
     "userConfirmedUseCompilerModuleSwitch": false,
+    "userConfirmedBundleSwitch": false,
     "packNpmManually": false,
     "packNpmRelationList": [],
     "minifyWXSS": true

+ 30 - 0
utils/util.js

@@ -8,6 +8,33 @@ const accessHeader = {
 const notWxApiPath = urlsDef.urls.baseUrl + '/schoolbaby/api/';
 const apiPath = urlsDef.urls.baseUrl + '/schoolbaby/api/wx/';
 
+
+function fun_date(num) { 
+  var date1 = new Date();
+  //今天时间
+  var time1 = date1.getFullYear() + "-" + (date1.getMonth() + 1) + "-" + date1.getDate()
+  var date2 = new Date(date1);
+   date2.setDate(date1.getDate() + num);
+   //num是正数表示之后的时间,num负数表示之前的时间,0表示今天
+   var month = date2.getMonth() + 1
+    if(month < 10) {
+      month = "0" + month
+    }
+    var date = date2.getDate()
+    if(date < 10) {
+      date = "0" + date
+    }
+   var time2 = date2.getFullYear() + "-" + (month) + "-" + date; 
+  return time2;
+  }
+
+  function fun_week(datestr){
+    var weekArray = new Array("周日", "周一", "周二", "周三", "周四", "周五", "周六");
+    var week = weekArray[new Date(datestr).getDay()];
+    return week;
+}
+
+
 //经纬度算距离
 function distance(la1, lo1, la2, lo2) {
   var La1 = la1 * Math.PI / 180.0;
@@ -262,4 +289,7 @@ module.exports = {
   setAccessHeader: setAccessHeader,
   distance: distance,
   apiPost: apiPost,
+  fun_date:fun_date,
+  fun_week: fun_week
+
 }