微信小程序
菜鸟也能逆袭
这个作者很懒,什么都没留下…
展开
-
微信小程序分享朋友圈
【代码】微信小程序分享朋友圈。原创 2022-09-20 09:44:37 · 156 阅读 · 0 评论 -
微信小程序,发放优惠券,领取卡券添加到卡包
1.使用微信提供的 send-coupon 发券插件,样式可自定义<send-coupon @customevent="getcoupon" :send_coupon_params="send_coupon_params" // 发券参数 :sign="sign" //签名 :send_coupon_merchant="send_coupon_merch...原创 2021-09-09 09:26:43 · 4538 阅读 · 0 评论 -
uniapp uni.openLocation 打开地图没反应
1.注意经纬度的数据类型原创 2020-07-14 11:13:05 · 10815 阅读 · 1 评论 -
微信小程序修改指轮播图指示点样式
.swiper-box .wx-swiper-dots.wx-swiper-dots-horizontal{margin-bottom: 2rpx;}.swiper-box .wx-swiper-dot{width:40rpx;display: inline-flex;height: 4rpx;margin-left: 10rpx;justify-content:s...原创 2019-04-17 15:19:55 · 4967 阅读 · 0 评论 -
微信小程序地图移动选点
1.效果图2.页面内容<view class="page-body"><view class="page-section page-section-gap"><map id="qqMap" style="width: 100%; height: 300px;" latitude="{{latitude}}" longit原创 2018-12-26 17:53:06 · 4934 阅读 · 1 评论 -
微信小程序商品评价,五星评价,多图上传
一.效果图二. 五星评价以服务态度评价为例1.页面效果<view class='startbox'><text>服务态度</text><block wx:for="{{stars}}" wx:key='this'><image class="star-image" style="left: {{item*1原创 2018-12-26 17:44:00 · 5183 阅读 · 2 评论 -
微信小程序wx.setTabBarBadge使用
官方apiwx.setTabBarBadge({index: 1,text: '2’});微信官方api要求text属性应该为number类型,但是使用过程中发现必须为string类型,并且为数字字符串、字母字符串、和汉字字符串时最多都显示4个字符,多于四个时显示为省略.....,汉字时竖直显示。...原创 2018-12-26 15:41:24 · 7324 阅读 · 3 评论 -
微信小程序 removeTabBarBadge 使用
示例:wx.removeTabBarBadge({index: 1,});原创 2018-12-26 15:37:16 · 7204 阅读 · 0 评论 -
小程序拨打电话
1.页面内容<view class='list' bindtap='call' data-id="{{phone}}"><text class='tti'>客服电话</text></view>2.js处理call:function(e){var id = e.currentTarget.dataset.id;wx.make...原创 2018-12-26 15:25:31 · 1001 阅读 · 0 评论 -
微信小程序客服功能,并在聊天页面获取用户头像昵称
1.页面内容利用定位设置button为透明按钮触发客服功能<view class='list'><button type='default' open-type="contact" session-from='{"nickName":"{{userData.username}}","avatarUrl":"{{userData.img}}"}'&原创 2018-12-26 15:09:09 · 3201 阅读 · 0 评论 -
微信小程序视频层级过高问题与淘宝商品详情相册展示效果
1.效果图2.html<view class="banner" ><view class='current_num'>{{current}}/{{imgNum}}</view><swiper circular duration="1000" bindchange="swiperChange"><swi原创 2018-12-26 14:59:58 · 1963 阅读 · 1 评论 -
小程序页面内转发到群并获取微信群标识
1.在页面内定义buton<button open-type='share' ></button>2.需要在分享方法里面设置wx.showShareMenu({withShareTicket: true});3.在分享成功返回后调用微信获取群信息方法来获取必要的参数if (res.from === 'button') {//页面内转发retu...原创 2018-12-26 11:39:46 · 3625 阅读 · 0 评论 -
微信小程序头像上传
一、html部分<view class='head_img' bindtap='upShopLogo'><text>头像</text><view class='img'><image src='{{userimg}}'></image></view></view>二、原创 2018-12-26 14:05:16 · 12297 阅读 · 7 评论