Browse Source

写一些注释

Limengbo 7 năm trước cách đây
mục cha
commit
e82430fb30

+ 11 - 4
compontents/chat/chat.js

@@ -6,6 +6,12 @@ const login = require('../../utils/loginSchedule.js');
 Component({
   /**
    * 组件的属性列表
+   * productionData 传过来的数据
+   * title 头部标题
+   * query 看是上传还是分享图片
+   * type 主要是判断答疑和分享
+   * columnType 主要是课程的编号 底下会用到
+   * more是否显示展开更多
    */
   properties: {
     productionData: {
@@ -36,10 +42,9 @@ Component({
 
   /**
    * 组件的初始数据
+   * animationData 主要是定义一个展开的动画 
    */
   data: {
-    text: '',
-    chatDatas: [],
     animationData: {},
   },
 
@@ -73,8 +78,9 @@ Component({
     //分享
     shareImage: function(e){
       console.log(e);
-      //分享查询单条的时候会用到这个值
+      //分享查询单条的时候会用到这个值
       const postId = e.currentTarget.dataset.postsid;
+      //分享组件弹窗调用里边方法,在底下会获取
       this.share.showPopup(postId);
 
     },
@@ -112,13 +118,14 @@ Component({
     },
     //查看更多
     examine: function () {
-      //console.log(1)
+      //组件间方法的调用
       var myEventDetail = {} // detail对象,提供给事件监听函数
       var myEventOption = {} // 触发事件的选项
       this.triggerEvent('myevent', myEventDetail, myEventOption)
     }
   },
   ready: function(){
+    //获取分享弹窗组件
     this.share = this.selectComponent("#share");
   }
 })

+ 5 - 0
compontents/curriculum/curriculum.js

@@ -5,6 +5,8 @@ Component({
   },
   /**
    * 组件的属性列表
+   * studyLog传过来的数据
+   * height判断显不显示展开按钮
    */
   properties: {
     studyLog: {
@@ -19,6 +21,9 @@ Component({
 
   /**
    * 组件的初始数据
+   * flag展开收起的判断
+   * animationData动画封装对象
+   * downUp和src传过去得值
    */
   data: {
     flag: false,

+ 1 - 0
compontents/discuss/discuss.js

@@ -5,6 +5,7 @@ const login = require('../../utils/loginSchedule.js');
 Component({
   /**
    * 组件的属性列表
+   * 暂时放弃了原本是评论框
    */
   properties: {
     discussData: {

+ 1 - 0
compontents/lesson_list/lessonList.js

@@ -2,6 +2,7 @@
 Component({
   /**
    * 组件的属性列表
+   * 和curriculum一样
    */
   properties: {
     lessonData: {

+ 1 - 0
compontents/one/one.js

@@ -3,6 +3,7 @@
 Component({
   /**
    * 组件的属性列表
+   * 也暂时放弃了 原本分享进入的组件
    */
   properties: {
     productionData: {

+ 1 - 0
compontents/preview/preview.js

@@ -2,6 +2,7 @@
 Component({
   /**
    * 组件的属性列表
+   * 跟curriculum一样
    */
   properties: {
     materialData: {

+ 2 - 0
compontents/rank-tarbar/rank-tarbar.js

@@ -3,6 +3,7 @@ const util = require('../../utils/util.js');
 Component({
   /**
    * 组件的属性列表
+   * 排名nav
    */
   properties: {
     
@@ -10,6 +11,7 @@ Component({
 
   /**
    * 组件的初始数据
+   * navBtnSelectIdx点击改变的值
    */
   data: {
     motto: ['好友数','勋章数','等级','答题量','准确率'],

+ 7 - 0
compontents/ranking/ranking.js

@@ -2,6 +2,12 @@
 Component({
   /**
    * 组件的属性列表
+   * friendsData除了前三名的数据
+   * friendsThreeData前三名的数据
+   * myData总的数据
+   * str 传过来的排名
+   * title 头部标题
+   * height是否显示展开
    */
   properties: {
     friendsData: {
@@ -41,6 +47,7 @@ Component({
    * 组件的方法列表
    */
   methods: {
+    /*展开更多/
     more (e) {
      let height = this.properties.friendsData.length * 80;
      this.util(height+'rpx')

+ 1 - 0
compontents/share/share.js

@@ -2,6 +2,7 @@
 Component({
   /**
    * 组件的属性列表
+   * 分享弹窗 没怎么用
    */
   properties: {
 

+ 1 - 0
compontents/tarbar/tarbar.js

@@ -3,6 +3,7 @@ const util = require('../../utils/util.js');
 Component({
   /**
    * 组件的属性列表
+   * 第一次进入课程的nav
    */
   properties: {
     

+ 1 - 0
compontents/target/target.js

@@ -2,6 +2,7 @@
 Component({
   /**
    * 组件的属性列表
+   * 学习目标 这个组件没啥说的
    */
   properties: {
     wxObjectives: {

+ 15 - 1
pages/art/art.js

@@ -3,10 +3,24 @@ const app = getApp()
 const util = require('../../utils/util.js');
 const APIClient = require('../../utils/APIClient.js');
 const login = require('../../utils/loginSchedule.js');
+/**
+ * productionData 分项data
+ * questionsData 疑问data
+ * courseData 科目信息
+ * num1 分享得值
+ * num2 科目得值
+ * position 定位id值
+ * questionsdian 点的显示
+ * list 更改后时间的至
+ * lessonListHeight 定义高度
+ * previewHeight 定义高度
+ * productionMore和questionsMore展开是否显示
+ * strategy 更改<br>
+ * 其他的页面组件就看这个就行了 基本上都是都是一样的
+ */
 
 Page({
   data: {
-    flag: false,
     productionData: {},
     questionsData: {},
     courseData: {},