随笔分类 - WeChat
摘要:onLoad:页面第一次加载时触发,从跳转页面返回时不能触发,可以传递参数 onShow:页面显示或从后台跳回小程序时显示此页面时触发,从跳转页面返回时触发,不能传递参数 onHide:页面隐藏,例如使用 wx.navigateTo 只是打开新页面 并不关闭原页面 onUnload:页面被卸载,例如
阅读全文
摘要:onUnload: function () { wx.reLaunch({ url: '../me/order-detail', }) },//这里url搞相对路径 wx.reLaunch跳到新页面没有返回箭头用wx.redirectTo,wx.navigateTo试试
阅读全文
摘要:<scroll-view scroll-x="true" class="flex-ard fs14" style="color:#666"> <div style="margin-left:20rpx;margin-right:20rpx" v-for="(item, index) in materials" :key="index" :class="{'active-1' : currentCl
阅读全文
摘要:wx.setClipboardData({ data: '这是要复制的文字', success: function (res) { wx.showModal({ title: '提示', content: '复制成功', showCancel: false }); } }) copy(){ wx.setClipboardData({ data: this.order.orderCode, succ
阅读全文
摘要:bind bind事件绑定不会阻止冒泡事件向上冒泡,catch事件绑定可以阻止冒泡事件向上冒泡。 bindtap 跳转页面 bindchange 。value 改变时触发 change 事件 bindblur。 编辑器失去焦点时触发 bindinput 。 编辑器内容改变时触发
阅读全文
摘要:<div class="pos-rel"> <input maxlength="300" v-model="feedback.content" bindinput="count" placeholder="请您如实反馈遇到的问题,以及对我们的意见和建议,谢谢!"> <div class="pos-abs" style="bottom:30rpx;right:30rpx;">{{num}}/300<
阅读全文
摘要:在app.wpy配置路由,设置tabar,下拉刷新,顶部标题
阅读全文