|
@@ -38,7 +38,7 @@ |
|
@@ -38,7 +38,7 @@ |
38
|
|
38
|
|
39
|
<div>
|
39
|
<div>
|
40
|
<div v-for="(item, index) in recordlist" :key="index">
|
40
|
<div v-for="(item, index) in recordlist" :key="index">
|
41
|
- <div class="messageitem flex" v-if="item.user_id != user_id">
|
41
|
+ <div class="messageitem flex" v-if="item.user_id != user_id" :id="item.idkk">
|
42
|
<div class="messageitemleft">
|
42
|
<div class="messageitemleft">
|
43
|
<img :src="item.avatar" alt />
|
43
|
<img :src="item.avatar" alt />
|
44
|
</div>
|
44
|
</div>
|
|
@@ -500,6 +500,8 @@ export default { |
|
@@ -500,6 +500,8 @@ export default { |
500
|
that.page = newpage;
|
500
|
that.page = newpage;
|
501
|
console.log(that.page);
|
501
|
console.log(that.page);
|
502
|
that.getzhibolist();
|
502
|
that.getzhibolist();
|
|
|
503
|
+ }else{
|
|
|
504
|
+ Toast("没有更多了~")
|
503
|
}
|
505
|
}
|
504
|
|
506
|
|
505
|
}, 1000);
|
507
|
}, 1000);
|
|
@@ -554,7 +556,7 @@ export default { |
|
@@ -554,7 +556,7 @@ export default { |
554
|
var that = this;
|
556
|
var that = this;
|
555
|
// 处理验证失败的信息
|
557
|
// 处理验证失败的信息
|
556
|
wx.error(function (res) {
|
558
|
wx.error(function (res) {
|
557
|
- logUtil.printLog("验证失败返回的信息:", res);
|
559
|
+ // logUtil.printLog("验证失败返回的信息:", res);
|
558
|
});
|
560
|
});
|
559
|
// 处理验证成功的信息
|
561
|
// 处理验证成功的信息
|
560
|
wx.ready(function () {
|
562
|
wx.ready(function () {
|
|
@@ -593,13 +595,13 @@ export default { |
|
@@ -593,13 +595,13 @@ export default { |
593
|
success: function (res) {
|
595
|
success: function (res) {
|
594
|
// 用户确认分享后执行的回调函数
|
596
|
// 用户确认分享后执行的回调函数
|
595
|
console.log("suss");
|
597
|
console.log("suss");
|
596
|
- logUtil.printLog("分享到朋友圈成功返回的信息为:", res);
|
|
|
597
|
- that.showMsg("分享成功!");
|
598
|
+ // logUtil.printLog("分享到朋友圈成功返回的信息为:", res);
|
|
|
599
|
+ // that.showMsg("分享成功!");
|
598
|
},
|
600
|
},
|
599
|
cancel: function (res) {
|
601
|
cancel: function (res) {
|
600
|
// 用户取消分享后执行的回调函数
|
602
|
// 用户取消分享后执行的回调函数
|
601
|
console.log("err");
|
603
|
console.log("err");
|
602
|
- logUtil.printLog("取消分享到朋友圈返回的信息为:", res);
|
604
|
+ // logUtil.printLog("取消分享到朋友圈返回的信息为:", res);
|
603
|
}
|
605
|
}
|
604
|
}),
|
606
|
}),
|
605
|
// 分享给朋友
|
607
|
// 分享给朋友
|
|
@@ -620,11 +622,11 @@ export default { |
|
@@ -620,11 +622,11 @@ export default { |
620
|
dataUrl: "", // 如果type是music或video,则要提供数据链接,默认为空
|
622
|
dataUrl: "", // 如果type是music或video,则要提供数据链接,默认为空
|
621
|
success: function (res) {
|
623
|
success: function (res) {
|
622
|
// 用户确认分享后执行的回调函数
|
624
|
// 用户确认分享后执行的回调函数
|
623
|
- logUtil.printLog("分享给朋友成功返回的信息为:", res);
|
625
|
+ // logUtil.printLog("分享给朋友成功返回的信息为:", res);
|
624
|
},
|
626
|
},
|
625
|
cancel: function (res) {
|
627
|
cancel: function (res) {
|
626
|
// 用户取消分享后执行的回调函数
|
628
|
// 用户取消分享后执行的回调函数
|
627
|
- logUtil.printLog("取消分享给朋友返回的信息为:", res);
|
629
|
+ // logUtil.printLog("取消分享给朋友返回的信息为:", res);
|
628
|
}
|
630
|
}
|
629
|
});
|
631
|
});
|
630
|
});
|
632
|
});
|
|
@@ -1010,21 +1012,27 @@ export default { |
|
@@ -1010,21 +1012,27 @@ export default { |
1010
|
// 页面滚动到某一个位置
|
1012
|
// 页面滚动到某一个位置
|
1011
|
let len = res.data.record.length;
|
1013
|
let len = res.data.record.length;
|
1012
|
len = len - 1
|
1014
|
len = len - 1
|
|
|
1015
|
+ console.log(len)
|
1013
|
res.data.record.forEach(function (value, index, array) {
|
1016
|
res.data.record.forEach(function (value, index, array) {
|
1014
|
if (index == len) {
|
1017
|
if (index == len) {
|
1015
|
- value.idkk = 'targetboxk'
|
1018
|
+
|
|
|
1019
|
+ value.idkk = 'targetboxk';
|
|
|
1020
|
+ console.log(value)
|
1016
|
that.$nextTick(() => {
|
1021
|
that.$nextTick(() => {
|
1017
|
setTimeout(() => {
|
1022
|
setTimeout(() => {
|
1018
|
let targetbox = document.getElementById('targetboxk');
|
1023
|
let targetbox = document.getElementById('targetboxk');
|
|
|
1024
|
+ console.log(targetbox,'元素元素')
|
1019
|
that.target = targetbox.offsetTop;
|
1025
|
that.target = targetbox.offsetTop;
|
1020
|
document.body.scrollTop = that.target;
|
1026
|
document.body.scrollTop = that.target;
|
1021
|
- document.getElementById('targetbox').scrollTop = that.target
|
|
|
1022
|
- })
|
1027
|
+ document.getElementById("targetboxk").scrollIntoView();
|
|
|
1028
|
+
|
|
|
1029
|
+ },100)
|
1023
|
})
|
1030
|
})
|
1024
|
}
|
1031
|
}
|
1025
|
|
1032
|
|
1026
|
})
|
1033
|
})
|
1027
|
}
|
1034
|
}
|
|
|
1035
|
+
|
1028
|
|
1036
|
|
1029
|
// 拼接数组倒叙
|
1037
|
// 拼接数组倒叙
|
1030
|
var arr = [...res.data.record, ...that.recordlist];
|
1038
|
var arr = [...res.data.record, ...that.recordlist];
|
|
@@ -1163,9 +1171,6 @@ export default { |
|
@@ -1163,9 +1171,6 @@ export default { |
1163
|
</script>
|
1171
|
</script>
|
1164
|
|
1172
|
|
1165
|
<style scoped>
|
1173
|
<style scoped>
|
1166
|
-/* 34348989 */
|
|
|
1167
|
-
|
|
|
1168
|
-/* 45548548 */
|
|
|
1169
|
.container {
|
1174
|
.container {
|
1170
|
overflow: auto;
|
1175
|
overflow: auto;
|
1171
|
}
|
1176
|
}
|