Browse Source

数据对接

zhangshuling 4 years ago
parent
commit
c8aa1b29f4
5 changed files with 115 additions and 119 deletions
  1. 1 1
      app.json
  2. 100 25
      pages/index/index.js
  3. 8 5
      pages/index/index.wxml
  4. 3 1
      utils/urls.js
  5. 3 87
      utils/util.js

+ 1 - 1
app.json

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

+ 100 - 25
pages/index/index.js

@@ -1,7 +1,7 @@
 // pages/index/index.js
 const app = getApp()
 const util = require("../../utils/util")
-const urls = require("../../utils/urls")
+const urlDef = require("../../utils/urls")
 Page({
 
   /**
@@ -28,37 +28,44 @@ Page({
       }
     ],
     index: 0,
-    stuList:[
-      {id: 0},
-      {id: 1}
+    stuList: [
+      { id: 0 },
+      { id: 1 }
     ],
     curStu: 0,
-    classList:[
-      {img: '/images/kc.png',title: '今日课程', num:'1'},
-      {img: '/images/jtzy.png',title: '今日作业', num:'6'},
-      {img: '/images/cq.png',title: '出勤率', num:'100%'},
+    classList: [
+      { img: '/images/kc.png', title: '今日课程', num: '1' },
+      { img: '/images/jtzy.png', title: '今日作业', num: '6' },
+      { img: '/images/cq.png', title: '出勤率', num: '100%' },
     ],
-    appList:[
-      {img: '/images/kb.png',title: '我的课表'},
-      {img: '/images/zy.png',title: '提交作业'},
-      {img: '/images/dp.png',title: '课堂点评'},
-      {img: '/images/zj.png',title: '成长足迹'},
-      {img: '/images/qj.png',title: '请假'},
-      {img: '/images/bk.png',title: '补课'},
-      {img: '/images/jk.png',title: '加课'},
-      {img: '/images/dk.png',title: '调课'},
-    ]
+    appList: [
+      { img: '/images/kb.png', title: '我的课表' },
+      { img: '/images/zy.png', title: '提交作业' },
+      { img: '/images/dp.png', title: '课堂点评' },
+      { img: '/images/zj.png', title: '成长足迹' },
+      { img: '/images/qj.png', title: '请假' },
+      { img: '/images/bk.png', title: '补课' },
+      { img: '/images/jk.png', title: '加课' },
+      { img: '/images/dk.png', title: '调课' },
+    ],
+    bannerList: [],
+    userList: []
   },
 
   //切换身份
-  changeStu:function(e){
+  changeStu: function (e) {
+    let sid = e.currentTarget.dataset.id;
+    console.log('切换用户 : ' + sid);
+    if (this.data.curStu == sid) {
+      return;
+    }
     this.setData({
-      curStu: e.currentTarget.dataset.id
+      curStu: sid
     })
   },
 
   //切换校区
-  bindPickerChange: function(e) {
+  bindPickerChange: function (e) {
     this.setData({
       index: e.detail.value
     })
@@ -68,10 +75,7 @@ Page({
    * 生命周期函数--监听页面加载
    */
   onLoad: function (options) {
-    //测试 获取登录用户数据
-    util.apiPost(urls.urls.get_cur_user,{}).then(rs => {
-      console.log(JSON.stringify(rs));
-    });
+    this.loadIndexData();
   },
 
   /**
@@ -121,5 +125,76 @@ Page({
    */
   onShareAppMessage: function () {
 
+  },
+
+  loadIndexData: function () {
+    const urls = urlDef.urls;
+    //获取登录用户数据, 并加载首页数据
+    util.apiPost(urls.get_cur_user, {}).then(rs => {
+      console.log(JSON.stringify(rs));
+
+      let curUser = rs.attr;
+      curUser.studentId = curUser.personId; // 新增studentId属性
+      let otherUsers = rs.attr.others.filter(o => { return o.studentId != curUser.studentId });
+      curUser.others = [];// 清除 others 属性
+      console.log('其他用户 : ' + JSON.stringify(otherUsers));
+
+
+      this.setData({ 'curStu': curUser.studentId });
+      let userList = [curUser].concat(otherUsers);
+      userList.map(o => {
+        if (o.imageUrl && o.imageUrl.length > 0) {
+          o.imageUrl = urls.oss_file + 'image/'+ o.imageUrl;
+        } else {
+          o.imageUrl = '/images/head.png';
+        }
+      })
+      this.setData({ 'userList': userList });
+
+
+      console.log('userList ' + JSON.stringify(this.data.userList));
+      let personId = rs.attr.personId;
+      let orgId = rs.attr.orgId;
+      let today = util.curTime().substring(0, 10).replace(/\//g, '-');
+
+      // banner 图片
+      util.apiPost(urls.get_advert, { '&q.use': 1, 'q.orgId': orgId, 'q.exceptStatus': 2 }).then(r => {
+        // console.log('banner : ' + JSON.stringify(r));
+        this.setData({ 'bannerList': r });
+      });
+
+      // 今日课程
+      util.apiPost(urls.leave_get_classes_date, { 'q.studentId': personId, 'q.attenceDate': today }).then(r => {
+        // console.log('今日课程 : ' + JSON.stringify(r));
+        this.setData({ 'classList[0].num': (r ? r.length : 0) });
+      })
+
+      // 作业未提交
+      util.apiPost(urls.my_homework, { 'q.studentId': personId, 'q.status': 0 }).then(r => {
+        // console.log('作业未提交 : ' + JSON.stringify(r));
+        this.setData({ 'classList[1].num': (r ? r.length : 0) });
+      });
+
+      // 出勤率
+      util.apiPost(urls.get_attendance_rate, { 'q.studentId': personId }).then(r => {
+        console.log('出勤率 : ' + JSON.stringify(r));
+        let attendRate = 0, alreadyCount = 0, shouldCount = 0;
+        if (r != null) {
+          r.forEach(it => {
+            if (it.isAttend === '1') {
+              alreadyCount = it.num;
+            } else if (it.isAttend === '0') {
+              shouldCount = it.num;
+            }
+          });
+        }
+        let t = (alreadyCount + shouldCount);
+        if (t > 0) {
+          attendRate = alreadyCount * 100 / t;
+        }
+        console.log(attendRate)
+        this.setData({ 'classList[2].num': attendRate.toFixed(2) + '%' });
+      })
+    });
   }
 })

+ 8 - 5
pages/index/index.wxml

@@ -2,9 +2,12 @@
   <!-- 顶部学生信息 -->
   <view class="head-view">
     <view class="head-left">
-      <view class="head-img-view" wx:for="{{stuList}}" wx:key="index" data-id="{{item.id}}" bindtap="changeStu">
-        <image class="{{curStu == item.id ? 'curStu' : 'stuHead'}}" wx:if="{{index == 0}}" src="/images/head.png"></image>
-        <image class="{{curStu == item.id ? 'curStu' : 'stuHead'}}" wx:if="{{index != 0}}" src="/images/head2.png"></image>
+      <view class="head-img-view" wx:for="{{userList}}" wx:key="index" data-id="{{item.studentId}}" bindtap="changeStu">
+      <!--
+        <image class="{{curStu == item.studentId ? 'curStu' : 'stuHead'}}" wx:if="{{index == 0}}" src="/images/head.png"></image>
+        <image class="{{curStu == item.studentId ? 'curStu' : 'stuHead'}}" wx:if="{{index != 0}}" src="/images/head2.png"></image>
+        -->
+        <image class="{{curStu == item.studentId ? 'curStu' : 'stuHead'}}" src="{{item.imageUrl}}"></image>
       </view>
     </view>
     <view class="head-right">
@@ -22,9 +25,9 @@
   <!-- 轮播图 -->
   <view class="swiper">
 			<swiper class="banner" autoplay circular interval="3000">
-				<block wx:for="{{1}}" wx:key="index">
+				<block wx:for="{{bannerList}}" wx:key="index">
 					<swiper-item class="banner-box" >
-						<image lazy-load mode="aspectFill" class="bb-image" src="https://file.schoolwisdoms.com/image/f398463b-3357-4dae-a6d0-4384a9c9d173.jpg"></image>
+						<image lazy-load mode="aspectFill" class="bb-image" src="{{item.imageUrl}}"></image>
 					</swiper-item>
 				</block>
 			</swiper>

+ 3 - 1
utils/urls.js

@@ -1,6 +1,8 @@
-const baseUrl = 'https://demo.schoolwisdoms.com';
+// const baseUrl = 'https://demo.schoolwisdoms.com';
 // const baseUrl = 'https://app.schoolwisdoms.com';
 
+const baseUrl = 'http://192.168.2.104';
+
 const ssoBase = baseUrl + '/sso';
 const platformBase = baseUrl + '/admin';
 const schoolBase = baseUrl + '/schoolbaby';

+ 3 - 87
utils/util.js

@@ -1,17 +1,12 @@
 const md5 = require('./md5.js');
+const urlsDef = require('./urls.js');
 const accessHeader = {
   accessKey: '',
   appId: ''
 };
-// const notWxApiPath = 'https://app.schoolwisdoms.com/schoolbaby/api/';
-// const apiPath = 'https://app.schoolwisdoms.com/schoolbaby/api/wx/';
-
-const notWxApiPath = 'https://demo.schoolwisdoms.com/schoolbaby/api/';
-const apiPath = 'https://demo.schoolwisdoms.com/schoolbaby/api/wx/';
-
-// const notWxApiPathDemo = 'http://192.168.2.104/schoolbaby/api/';
-// const apiPathDemo = 'http://192.168.2.104/schoolbaby/api/wx/';
 
+const notWxApiPath = urlsDef.urls.baseUrl + '/schoolbaby/api/';
+const apiPath = urlsDef.urls.baseUrl + '/schoolbaby/api/wx/';
 
 //经纬度算距离
 function distance(la1, lo1, la2, lo2) {
@@ -254,90 +249,11 @@ function notWxPost(url, params) {
   })
 }
 
-function doPostDemo(url, params) {
-  return new Promise((resolve, reject) => {
-    let headers = getHeaders();
-    headers['Content-Type'] = 'application/x-www-form-urlencoded';
-    wx.request({
-      url: apiPathDemo + url,
-      header: headers,
-      data: params,
-      method: 'POST',
-      success: res => {
-        if (res.success > 1 || typeof res.version != undefined) {
-          resolve(res.data)
-        } else {
-          wx.hideLoading({
-            success: (res) => {
-              wx.showToast({
-                title: '加载失败,请重试',
-                icon: 'none'
-              })
-            },
-          })
-        }
-      },
-      faild: res => {
-        // reject(res)
-        wx.hideLoading({
-          success: (res) => {
-            wx.showToast({
-              title: res.errMsg,
-            })
-          },
-        })
-      }
-    })
-  }).catch(err => {
-    console.log(err)
-  })
-}
-
-function notWxPostDemo(url, params) {
-  return new Promise((resolve, reject) => {
-    let headers = getHeaders();
-    headers['Content-Type'] = 'application/x-www-form-urlencoded';
-    wx.request({
-      url: notWxApiPathDemo + url,
-      header: headers,
-      data: params,
-      method: 'POST',
-      success: res => {
-        if (res.success > 1 || typeof res.version != undefined) {
-          resolve(res.data)
-        } else {
-          wx.hideLoading({
-            success: (res) => {
-              wx.showToast({
-                title: '加载失败,请重试',
-                icon: 'none'
-              })
-            },
-          })
-        }
-      },
-      faild: res => {
-        // reject(res)
-        wx.hideLoading({
-          success: (res) => {
-            wx.showToast({
-              title: res.errMsg,
-            })
-          },
-        })
-      }
-    })
-  }).catch(err => {
-    console.log(err)
-  })
-}
 
 module.exports = {
   formatTime: formatTime,
   doPost: doPost,
   notWxPost: notWxPost,
-  doPostDemo: doPostDemo,
-  notWxPostDemo: notWxPostDemo,
   validDay: validDay,
   validMinutes: validMinutes,
   getDayBetween: getDayBetween,