Browse Source

新增6.5弹窗

Limengbo 6 years ago
parent
commit
7749e74c79

+ 1 - 1
README.md

@@ -6,7 +6,7 @@ AppSecret: adece358e0d933e39d87b68fbf700651
 
 [登录微信公共平台](https://mp.weixin.qq.com/);
 
-账号:sunzhilei@efunbox.cn, 密码:efunbox@3366;
+账号:sunzhilei@efunbox.cn, 密码:edu@3366;
 
 ## 关于代码
 刚开始是一个小程序,结束后提出新需求,把另一个小程序上的东西也给放这个小程序上,所以注释里说的另一个小程序就是两个小程序结合在一起的,

+ 1 - 1
compontents/tarbar/tarbar.js

@@ -79,7 +79,7 @@ Component({
   },
   ready() {
     let options = util.getUrl();
-    const ind = options.ind || util.convertObject(decodeURIComponent(options.scene)).ind;
+    const ind = options.ind || util.convertObject(decodeURIComponent(options.scene)).ind || util.convertObject(decodeURIComponent(options.scene)).a;
     if(ind) {
       this.setData({ navBtnSelectIdx: ind});
     }

BIN
pages/image/close.png


+ 26 - 3
pages/mistakes/mistakes.js

@@ -1,6 +1,7 @@
 // pages/mistakes/mistakes.js
 const APIClient = require('../../utils/APIClient.js');
 const login = require('../../utils/loginSchedule.js');
+const util = require('../../utils/util.js');
 Page({
 
   /**
@@ -13,7 +14,9 @@ Page({
     exponentData: [],
     course: ['语文', '数学'],
     courseIndex: 0,
-    flag: true
+    flag: true,
+    switchs: true,
+    errorData: {}
   },
 
   particulars: function (e) {
@@ -77,7 +80,7 @@ Page({
         })
 
         for(let item of  res.data.data.list) {
-          this.data.flag.push(false);
+          //this.data.flag.push(false);
         }
         this.setData({
           flag: this.data.flag
@@ -99,11 +102,31 @@ Page({
     });    
   },
 
+  closeDialog: function () {
+    this.setData({
+      switchs: true
+    })
+  },
+
   /**
    * 生命周期函数--监听页面加载
    */
   onLoad: function (options) {
-    
+    const qid = util.convertObject(decodeURIComponent(options.scene)).i || '';
+    console.log('qid:' + qid);
+    if(qid) {
+      APIClient.getScheduleErr(qid).success(res => {
+        console.log(res.data.data)
+        this.setData({
+          errorData: res.data.data
+        })
+        this.setData({
+          switchs: false
+        })
+      }).fail(res => {
+        console.log(res)
+      })
+    }
   },
 
   /**

+ 8 - 1
pages/mistakes/mistakes.wxml

@@ -51,5 +51,12 @@
   </view>
   <view hidden="{{flag}}">
     <dialog bindmyevent="jurisdiction"/>
-  </view>     
+  </view>
+  <view class="mistakes-dialog" hidden='{{switchs}}'>
+    <image class="error-questions" src="{{errorData.img}}"></image>
+    <scroll-view scroll-y class='mistakes-dialog-scroll'>
+      <image class="error-analysis" src="{{errorData.analysis}}"></image>
+    </scroll-view>
+    <image class="close" src="../image/close.png" bindtap='closeDialog'></image>
+  </view>   
 </view>

+ 43 - 0
pages/mistakes/mistakes.wxss

@@ -112,4 +112,47 @@
     color: #ccc;
     margin-top: 30rpx;
     text-align: center;
+}
+
+.mistakes-dialog {
+    position: fixed;
+    left: 0;
+    top: 0;
+    width: 100%;
+    height: 100%;
+    background: rgba(0, 0, 0, .4);
+    z-index:100;
+}
+
+.mistakes-dialog-scroll {
+  position: absolute;
+  left: 5%;
+  top: 478rpx;
+  height: 620rpx;
+}
+
+.error-questions {
+    width: 96%;
+    height: 405rpx;
+    border-radius: 20rpx;
+    position: absolute;
+    left: 2%;
+    top: 80rpx;
+    z-index: 2;
+}
+
+.error-analysis {
+    width: 90%;
+    height: 620rpx;
+    border-radius: 0 0 20rpx 20rpx;
+}
+
+
+.close {
+  width: 88rpx;
+  height: 88rpx;
+  position: absolute;
+  bottom: 8rpx;
+  left: 50%;
+  transform: translate(-44rpx)
 }

+ 8 - 1
utils/APIClient.js

@@ -237,5 +237,12 @@ module.exports = {
 		let url = genAPIUrlTwo(`wx/classSchedule/info/${itemId}`);
 		let data = { type, userId }
 		return request.getInstance().url(url).data(data).send();
-	},					
+	},	
+  //6.5错题
+  getScheduleErr(qid) {
+    let data = { 
+      qid
+     }
+    return request.getInstance().url('https://weixin.efunbox.cn/customer/question/getAnalysis').data(data).send();
+  },				
 }