微信小程序
小小少年eason
这个作者很懒,什么都没留下…
展开
-
微信小程序 点击按钮跳转页面
wxml<button bindtap="goToNotice" ></image></button>jsPage({ data: { }, goToNotice: function(parm){ wx.navigateTo({ url: '/pages/notice/notice',//要跳转到的页面路径 }) } })原创 2021-03-20 19:46:56 · 757 阅读 · 0 评论 -
微信小程序 用图片作为按钮
wxml<button ><image src="/images/宿舍订水.png"></image></button>wxssbutton{ padding: 0; background-color: transparent; /*按钮透明*/ border:none; /*设置按钮边框*/ width: 100rpx; height: 100rpx;}button image{ width: 100.原创 2021-03-20 19:45:14 · 4301 阅读 · 2 评论 -
微信小程序 中使用三元运算符
wxml<van-cell-group> <van-cell title="昵称" value="{{userInfo.nickName}}" /> <van-cell title="性别" value="{{userInfo.gender==1?'男':'女'}}" /> </van-cell-group>这里的userInfo是从用户的登录信息, 用三元运算符判断性别...原创 2021-03-11 13:35:17 · 3604 阅读 · 0 评论 -
微信小程序获取登录信息并保存到缓存中
wxml<van-button open-type="getUserInfo" bindgetuserinfo="getInfo"> 登录</van-button>js //获取用户信息 getInfo(e){ let user = e.detail.userInfo // 本地缓存 wx.setStorageSync('user', user) },原创 2021-03-11 13:33:28 · 2852 阅读 · 1 评论