微信小程序
孤单的时候狗作陪
这个作者很懒,什么都没留下…
展开
-
微信小程序 支付倒计时
效果wxml<viewclass="solid-bottomtext-xxlpaddingtext-center"><textclass="text-red">支付剩余{{countdown}}</text></view>jsPage({ /** * 页面的初始数据 */ data: { }, /** ...原创 2022-02-15 15:43:04 · 528 阅读 · 0 评论 -
微信小程序 联想搜索
wxml<view style="width: 100%;height: 100rpx; background-color: green;display: flex;justify-content:center;align-items: center;"> <input type="text" placeholder=" 搜索" bindinput="search" style="width: 560rpx;height:60rpx;background-color:wh原创 2022-02-15 13:44:23 · 439 阅读 · 0 评论 -
微信小程序 map显示当前位置带标注
wxml页面<viewstyle="width:100%;height:100%;background-color:blueviolet;"><maplatitude='30.87108503391971'markers="{{markers}}"longitude="121.6955975169598"covers="{{covers}}"show-locationstyle="width:100%;height:1440rpx;...原创 2022-02-15 09:18:07 · 1054 阅读 · 0 评论 -
微信小程序 授权登陆PHP tp5框架
效果wxml页面给button绑定冒泡事件,也就是我们说的点击事件<button bindtap="getUserProfile" >授权登录</button>js页面 这里wx.getUserProfile方法可以从底部弹框提示用户授权,success是用户确认授权回调方法,可以console.log(result)查看以下数据,可以在userInfo中获取用户的一些基本信息,例如头像,昵称。通过wx.login()获取微信平台提供给我们的c...原创 2022-01-18 20:56:27 · 1080 阅读 · 0 评论 -
微信小程序 分页、下拉加载、到底提示
wxml页面 下载微信小程序页面布局组件 lin-ui 更快布局直接通过git下载Lin UI源代码,并将dist目录(Lin-UI 组件库)拷贝到自己的项目中git clone https://github.com/TaleLin/lin-ui.git打开lin-ui手册https://www.bookstack.cn/read/lin-ui/456d047c165920d4.md<!--pages/cart/cart.wxml-->...原创 2021-12-27 00:38:38 · 1021 阅读 · 0 评论