|
@@ -37,7 +37,9 @@ Page({
|
|
|
canvasHeight: '',
|
|
|
flag: true,
|
|
|
materialData: [],
|
|
|
- loginType: 1
|
|
|
+ loginType: 1,
|
|
|
+ timeList: [],
|
|
|
+ teacher: ''
|
|
|
},
|
|
|
|
|
|
/* 区分答疑和分享 */
|
|
@@ -72,7 +74,11 @@ Page({
|
|
|
questionsData: res.data.data,
|
|
|
})
|
|
|
if(res.data.data) {
|
|
|
+ res.data.data.list.forEach(item => {
|
|
|
+ this.data.timeList.push(util.formatDate(item.gmtCreated,4));
|
|
|
+ });
|
|
|
this.setData({
|
|
|
+ timeList: this.data.timeList,
|
|
|
questionsdian: util.replyNo(res.data.data.list)
|
|
|
})
|
|
|
if(5*this.data.num1 > res.data.data.totalSize) {
|
|
@@ -93,8 +99,12 @@ Page({
|
|
|
this.distinction(type, columnId, 1, 5*this.data.num2, res => {
|
|
|
if(res.data.success) {
|
|
|
console.log(res.data.data)
|
|
|
+ res.data.data.list.forEach(item => {
|
|
|
+ this.data.timeList.push(util.formatDate(item.gmtCreated,4));
|
|
|
+ });
|
|
|
this.setData({
|
|
|
- productionData: res.data.data,
|
|
|
+ timeList: this.data.timeList,
|
|
|
+ productionData: res.data.data
|
|
|
})
|
|
|
if(5*this.data.num2 > res.data.data.totalSize) {
|
|
|
this.setData({
|
|
@@ -124,7 +134,6 @@ Page({
|
|
|
},
|
|
|
|
|
|
|
|
|
-
|
|
|
onLoad: function (options) {
|
|
|
//this.chat = this.selectComponent("#chat");
|
|
|
if(options.type == "noTv") {
|
|
@@ -132,6 +141,11 @@ Page({
|
|
|
loginType: ""
|
|
|
})
|
|
|
}
|
|
|
+ if(wx.getStorageSync('user')) {
|
|
|
+ this.setData({
|
|
|
+ teacher: wx.getStorageSync('user').data.data.isTeacher
|
|
|
+ })
|
|
|
+ }
|
|
|
const columnId = util.column('6').columnId;
|
|
|
/* 分享 */
|
|
|
this.distinction(2, columnId, 1, 2, res => {
|
|
@@ -141,6 +155,12 @@ Page({
|
|
|
productionData: res.data.data
|
|
|
})
|
|
|
if(res.data.data) {
|
|
|
+ res.data.data.list.forEach(item => {
|
|
|
+ this.data.timeList.push(util.formatDate(item.gmtCreated,4));
|
|
|
+ });
|
|
|
+ this.setData({
|
|
|
+ timeList: this.data.timeList,
|
|
|
+ })
|
|
|
if(res.data.data.totalSize > 2) {
|
|
|
this.setData({
|
|
|
productionMore: true
|
|
@@ -156,10 +176,14 @@ Page({
|
|
|
this.setData({
|
|
|
questionsData: res.data.data
|
|
|
})
|
|
|
- if(res.data.data) {
|
|
|
+ if(res.data.data) {
|
|
|
+ res.data.data.list.forEach(item => {
|
|
|
+ this.data.timeList.push(util.formatDate(item.gmtCreated,4));
|
|
|
+ });
|
|
|
this.setData({
|
|
|
+ timeList: this.data.timeList,
|
|
|
questionsdian: util.replyNo(res.data.data.list)
|
|
|
- })
|
|
|
+ })
|
|
|
if(res.data.data.totalSize > 2) {
|
|
|
this.setData({
|
|
|
questionsMore: true
|
|
@@ -180,12 +204,12 @@ Page({
|
|
|
console.log(res)
|
|
|
if(lessonListLength > 4) {
|
|
|
this.setData({
|
|
|
- lessonListHeight: 280
|
|
|
+ lessonListHeight: 144
|
|
|
})
|
|
|
}
|
|
|
if(previewLength > 4){
|
|
|
this.setData({
|
|
|
- previewHeight: 280
|
|
|
+ previewHeight: 144
|
|
|
})
|
|
|
}
|
|
|
this.setData({
|
|
@@ -204,7 +228,6 @@ Page({
|
|
|
},
|
|
|
|
|
|
onShow: function () {
|
|
|
-
|
|
|
},
|
|
|
keep: function () {
|
|
|
|