小程序授权
export function isAuthLocation() { return new Promise((resolve, reject) => { wx.getSetting({ success(res) { if (!res.authSetti...
主动打开手机定位功能
```export function getLocationListener(){ return new Promise((resolve, reject) => { var that = this wx.openSetting({ success(res){...
小程序分享功能
小程序分享功能 /** * 用户点击右上角分享 */ onShareAppMessage: function () { return { title: this.data.goodsInfo.goods_name, path: `/pages/g...
小程序接地图
longitude latitude是中心经纬度 markers 是所有打点的经纬度,微信地图也是包了高德地图 <map wx:if="{{mapShow}}" class="map" id="map" scale="{{scale}}" bindregionchange="moveM...
小程序 a到b到c ,从c直接回到a
1A页面跳转到B wx.navigateTo({ url: `/pages/signUp/A` }) 2,B页面到C wx.navigateTo({ url: `/pages/signUp/C` }) 从c加到A页面 在c页面写 onUnload: function () {...
小程序验证插件的使用 WxValidate
整个文件可以到git下载 import WxValidate from ‘../../utils/WxValidate’;地址自己根据目录正确引入 我的需求是所有数据都是动态后台返回的以下是使用```onload:function(){ this.initValidate()//验证规则函...
小程序页面开启下拉刷新不回弹问题
onPullDownRefresh: function () { // 停止下拉动作 wx.stopPullDownRefresh(); //添加这句就可以了 if(this.data.searchContent){ this.setSearchListDataFn(this.data.search...
小程序多层展示收起
<view class='list_box' wx:for='{{list}}' wx:key='this' wx:for-item='parentItem' wx:for-index='parentIndex' > <view class='list'>...
小程序列表展开收起功能
index.wxml <block wx:for-items="{{list}}" wx:key="{{item.id}}"> <view class="kind-list-item"> <view id="{{item.id}}" class="kin...
小程序自定义下拉刷新
<scroll-view style='height:100%' scroll-y='{{!isindrag}}' bindscroll='scorll'> <view class='column' bindtouc...