- Kbone在适用wx-scrool-view 上拉加载页面被重新加载了?
<template> <div> <wx-scroll-view ref="wxscroll" :scroll-into-view="tt" style="height:300px" @scrolltolower="scrolltolower(false)" :scroll-top="scrollTop" @refresherrefresh="onRefresh" :refresher-enabled="false" :refresher-triggered="refreshing" scroll-y="true" class="scroll-Y" lower-threshold="30"> {{lists}} <div style="width:100%;height:150px;" v-for="vo in lists"> {{vo}} </div> </wx-scroll-view> </div> </template> <script> export default { data(){ return{ lists:[1,2,3,4,5,6], }; }, methods:{ onRefresh(){ }, scrolltolower(){ console.log('进来了'); this.lists.push(10); }, } } </script> 如代码所示 上拉加载的时候,滚动条又会跑到最上面,这只是一个分页的功能,但是只要给原循环数据添加数据的时候滚动条就会跑到最上面。 @社区技术运营专员-Jahozheng
2021-10-20 - KBONE 内置组件 下拉刷新 生成H5报错?
具体 使用 <wx-scroll-view refresher-enabled="true" :refresher-triggered="triggered"> <div class="ttt">465465465{{ triggered }}</div> </wx-scroll-view> refresher-triggere 一旦设置 就会报错说 this.refresher.disableRefresher is not a function 我看了base.js 也没有这个方法
2021-03-25 - 微信公众号,你提交的法定代表人信息与工商数据不一致,怎么回事?
你提交的法定代表人信息与工商数据不一致,提交的信息都是一样的 再次检查过很多次了!
2020-12-02 - 关于小程序申请长期订阅消息,请问如何申请?
本小程序号是一个政府机关单位的小程序,需要长期订阅消息的权限 ,请问可以申请长期吗订阅消息? 在线等 谢谢了
2019-12-20 - 关于微信订阅消息40037,在调用templateMessage.send,一直提示模板ID不存在?
问题;在调用 https://api.weixin.qq.com/cgi-bin/message/wxopen/template/send?access_token=ACCESS_TOKEN一直返回 环境:测试环境 真机调试 {"errcode":40037,"errmsg":"invalid template_id hint: [bmwUvA04278651]"} wx.requestSubscribeMessage({ tmplIds: [template_id], success(res) { console.log(res); }//这个接口正常 //appid 和 appscrit也是用的小程序的 对应上了的 $data=[ "touser"=>$openid, //接收用户的openid "template_id"=>$template_id, //模板id "page"=>"page/index/index",//点击模板消息跳转至小程序的页面 "form_id"=>$fomid, //可为表单提交时form_id,也可是支付产生的prepay_id "data"=>[ "name1"=>[ "value"=> "五公司", //自定义参数 "color"=> '#173177'//自定义文字颜色 ], "thing2"=>[ "value"=> "保洁服务",//自定义参数 "color"=> '#173177'//自定义文字颜色 ], "time4"=>[ "value"=> "2018年10月",//自定义参数 "color"=> '#173177'//自定义文字颜色 ], "name5"=>[ "value"=> "已发布",//自定义参数 "color"=> '#173177'//自定义文字颜色 ], "thing6"=>[ "value"=> "请至小程序订单列表进行查看",//自定义参数 "color"=> '#173177'//自定义文字颜色 ], ] ]; [图片]
2019-12-20