|
@@ -68,6 +68,11 @@ Page({
|
|
|
this.setData({
|
|
|
questionsdian: util.replyNo(res.data.data.list)
|
|
|
})
|
|
|
+ if(5*this.data.num1 > res.data.data.totalSize) {
|
|
|
+ this.setData({
|
|
|
+ questionsMore: ''
|
|
|
+ })
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
});
|
|
@@ -83,7 +88,12 @@ Page({
|
|
|
console.log(res.data.data)
|
|
|
this.setData({
|
|
|
productionData: res.data.data,
|
|
|
- })
|
|
|
+ })
|
|
|
+ if(5*this.data.num2 > res.data.data.totalSize) {
|
|
|
+ this.setData({
|
|
|
+ productionMore: ''
|
|
|
+ })
|
|
|
+ }
|
|
|
}
|
|
|
});
|
|
|
}
|
|
@@ -101,13 +111,6 @@ Page({
|
|
|
|
|
|
|
|
|
onLoad: function (options) {
|
|
|
- //分享按钮
|
|
|
- wx.showShareMenu({
|
|
|
- withShareTicket: true
|
|
|
- })
|
|
|
- },
|
|
|
-
|
|
|
- onShow: function () {
|
|
|
const columnId = util.column('6').columnId;
|
|
|
/* 分享 */
|
|
|
this.distinction(2, columnId, 1, 2, res => {
|
|
@@ -184,6 +187,14 @@ Page({
|
|
|
}
|
|
|
})
|
|
|
});
|
|
|
+ //分享按钮
|
|
|
+ wx.showShareMenu({
|
|
|
+ withShareTicket: true
|
|
|
+ })
|
|
|
+ },
|
|
|
+
|
|
|
+ onShow: function () {
|
|
|
+
|
|
|
},
|
|
|
/* 转发*/
|
|
|
onShareAppMessage: function (ops) {
|