作者 lihongjuan

提交

... ... @@ -38,7 +38,7 @@
<div>
<div v-for="(item, index) in recordlist" :key="index">
<div class="messageitem flex" v-if="item.user_id != user_id">
<div class="messageitem flex" v-if="item.user_id != user_id" :id="item.idkk">
<div class="messageitemleft">
<img :src="item.avatar" alt />
</div>
... ... @@ -500,6 +500,8 @@ export default {
that.page = newpage;
console.log(that.page);
that.getzhibolist();
}else{
Toast("没有更多了~")
}
}, 1000);
... ... @@ -554,7 +556,7 @@ export default {
var that = this;
// 处理验证失败的信息
wx.error(function (res) {
logUtil.printLog("验证失败返回的信息:", res);
// logUtil.printLog("验证失败返回的信息:", res);
});
// 处理验证成功的信息
wx.ready(function () {
... ... @@ -593,13 +595,13 @@ export default {
success: function (res) {
// 用户确认分享后执行的回调函数
console.log("suss");
logUtil.printLog("分享到朋友圈成功返回的信息为:", res);
that.showMsg("分享成功!");
// logUtil.printLog("分享到朋友圈成功返回的信息为:", res);
// that.showMsg("分享成功!");
},
cancel: function (res) {
// 用户取消分享后执行的回调函数
console.log("err");
logUtil.printLog("取消分享到朋友圈返回的信息为:", res);
// logUtil.printLog("取消分享到朋友圈返回的信息为:", res);
}
}),
// 分享给朋友
... ... @@ -620,11 +622,11 @@ export default {
dataUrl: "", // 如果type是music或video,则要提供数据链接,默认为空
success: function (res) {
// 用户确认分享后执行的回调函数
logUtil.printLog("分享给朋友成功返回的信息为:", res);
// logUtil.printLog("分享给朋友成功返回的信息为:", res);
},
cancel: function (res) {
// 用户取消分享后执行的回调函数
logUtil.printLog("取消分享给朋友返回的信息为:", res);
// logUtil.printLog("取消分享给朋友返回的信息为:", res);
}
});
});
... ... @@ -1010,21 +1012,27 @@ export default {
// 页面滚动到某一个位置
let len = res.data.record.length;
len = len - 1
console.log(len)
res.data.record.forEach(function (value, index, array) {
if (index == len) {
value.idkk = 'targetboxk'
value.idkk = 'targetboxk';
console.log(value)
that.$nextTick(() => {
setTimeout(() => {
let targetbox = document.getElementById('targetboxk');
console.log(targetbox,'元素元素')
that.target = targetbox.offsetTop;
document.body.scrollTop = that.target;
document.getElementById('targetbox').scrollTop = that.target
})
document.getElementById("targetboxk").scrollIntoView();
},100)
})
}
})
}
// 拼接数组倒叙
var arr = [...res.data.record, ...that.recordlist];
... ... @@ -1163,9 +1171,6 @@ export default {
</script>
<style scoped>
/* 34348989 */
/* 45548548 */
.container {
overflow: auto;
}
... ...
... ... @@ -554,6 +554,8 @@ export default {
that.page = newpage;
console.log(that.page);
that.getzhibolist();
}else{
Toast("没有更多了~")
}
}, 1000);
},
... ... @@ -695,7 +697,6 @@ export default {
sourceType: ["album", "camera"], // 可以指定来源是相册还是相机,默认二者都有
success: function (res) {
var localIds = res.localIds; // 返回选定照片的本地ID列表,localId可以作为img标签的src属性显示图片
wx.uploadImage({
localId: localIds[0], // 需要上传的图片的本地ID,由chooseImage接口获得
isShowProgressTips: 1, // 默认为1,显示进度提示
... ...
... ... @@ -544,6 +544,8 @@ export default {
that.page = newpage;
console.log(that.page);
that.getzhibolist();
}else{
Toast("没有更多了~")
}
}, 1000);
},
... ...