|
@@ -39,7 +39,9 @@ Page({
|
|
|
materialData: [],
|
|
|
loginType: 1,
|
|
|
timeList: [],
|
|
|
- teacher: ''
|
|
|
+ teacher: '',
|
|
|
+ messageNum: '',
|
|
|
+ uploadNum: ''
|
|
|
},
|
|
|
|
|
|
/* 区分答疑和分享 */
|
|
@@ -65,8 +67,10 @@ Page({
|
|
|
if(type == 1) {
|
|
|
this.data.num1++
|
|
|
this.setData({
|
|
|
- num1: this.data.num1
|
|
|
+ num1: this.data.num1,
|
|
|
+ messageNum: 5*this.data.num1
|
|
|
})
|
|
|
+ // wx.setStorageSync('messageNum', 5*this.data.num1);
|
|
|
this.distinction(type, columnId, 1, 5*this.data.num1, res => {
|
|
|
if(res.data.success) {
|
|
|
console.log(res.data.data)
|
|
@@ -94,8 +98,10 @@ Page({
|
|
|
if(type == 2) {
|
|
|
this.data.num2++
|
|
|
this.setData({
|
|
|
- num: this.data.num2
|
|
|
+ num: this.data.num2,
|
|
|
+ uploadNum: 5*this.data.num2
|
|
|
})
|
|
|
+ // wx.setStorageSync('uploadNum', 5*this.data.num2);
|
|
|
this.distinction(type, columnId, 1, 5*this.data.num2, res => {
|
|
|
if(res.data.success) {
|
|
|
console.log(res.data.data)
|
|
@@ -158,12 +164,12 @@ Page({
|
|
|
console.log(res)
|
|
|
if(lessonListLength > 4) {
|
|
|
this.setData({
|
|
|
- lessonListHeight: 144
|
|
|
+ lessonListHeight: 72
|
|
|
})
|
|
|
}
|
|
|
if(previewLength > 4){
|
|
|
this.setData({
|
|
|
- previewHeight: 144
|
|
|
+ previewHeight: 72
|
|
|
})
|
|
|
}
|
|
|
this.setData({
|
|
@@ -183,8 +189,10 @@ Page({
|
|
|
|
|
|
onShow: function () {
|
|
|
const columnId = util.column('6').columnId;
|
|
|
+ const uploadNum = this.data.uploadNum ? this.data.uploadNum : '2';
|
|
|
+ const messageNum = this.data.messageNum ? this.data.messageNum : '2';
|
|
|
/* 分享 */
|
|
|
- this.distinction(2, columnId, 1, 2, res => {
|
|
|
+ this.distinction(2, columnId, 1, uploadNum, res => {
|
|
|
if(res.data.success) {
|
|
|
console.log(res.data.data)
|
|
|
this.setData({
|
|
@@ -206,7 +214,7 @@ Page({
|
|
|
}
|
|
|
});
|
|
|
/* 答疑 */
|
|
|
- this.distinction(1, columnId, 1, 2, res => {
|
|
|
+ this.distinction(1, columnId, 1, messageNum, res => {
|
|
|
if(res.data.success) {
|
|
|
console.log(res.data.data)
|
|
|
this.setData({
|