当前位置:首页 > 小程序

小程序

  • 最新
  • 浏览
  • 评论

小程序授权

tigon3年前 (2021-08-19)小程序2319
export function isAuthLocation() { return new Promise((resolve, reject) => { wx.getSetting({ success(res) { if (!res.authSetti...

主动打开手机定位功能

tigon3年前 (2021-08-19)小程序2239
```export function getLocationListener(){ return new Promise((resolve, reject) => { var that = this wx.openSetting({ success(res){...

小程序分享功能

tigon3年前 (2021-08-18)小程序2046
小程序分享功能
小程序分享功能 /** * 用户点击右上角分享 */ onShareAppMessage: function () { return { title: this.data.goodsInfo.goods_name, path: `/pages/g...

小程序接地图

tigon3年前 (2021-08-16)小程序2777
小程序接地图
longitude latitude是中心经纬度 markers 是所有打点的经纬度,微信地图也是包了高德地图 <map wx:if="{{mapShow}}" class="map" id="map" scale="{{scale}}" bindregionchange="moveM...

小程序 a到b到c ,从c直接回到a

tigon3年前 (2021-07-16)小程序2341
1A页面跳转到B wx.navigateTo({ url: `/pages/signUp/A` }) 2,B页面到C wx.navigateTo({ url: `/pages/signUp/C` }) 从c加到A页面 在c页面写 onUnload: function () {...

小程序验证插件的使用 WxValidate

自由小鸟3年前 (2021-07-12)小程序1967
整个文件可以到git下载 import WxValidate from ‘../../utils/WxValidate’;地址自己根据目录正确引入 我的需求是所有数据都是动态后台返回的以下是使用```onload:function(){ this.initValidate()//验证规则函...

小程序页面开启下拉刷新不回弹问题

tigon3年前 (2021-07-02)小程序2706
onPullDownRefresh: function () { // 停止下拉动作 wx.stopPullDownRefresh(); //添加这句就可以了 if(this.data.searchContent){ this.setSearchListDataFn(this.data.search...

小程序多层展示收起

tigon3年前 (2021-06-17)小程序2071
小程序多层展示收起
<view class='list_box' wx:for='{{list}}' wx:key='this' wx:for-item='parentItem' wx:for-index='parentIndex' > <view class='list'>...

小程序列表展开收起功能

tigon3年前 (2021-06-17)小程序2231
小程序列表展开收起功能
index.wxml <block wx:for-items="{{list}}" wx:key="{{item.id}}"> <view class="kind-list-item"> <view id="{{item.id}}" class="kin...

小程序自定义下拉刷新

tigon4年前 (2021-06-04)小程序1950
<scroll-view style='height:100%' scroll-y='{{!isindrag}}' bindscroll='scorll'> <view class='column' bindtouc...