2020/12/24

微信小程序 placeholder样式

利用属性  placeholder-class 指定class然后编辑样式  <input  placeholder-class="input-gray" type="text" placeholder="请输入航班号&quo…

  • 微信小程序
  • 2020/12/24
  • helei
  • 693
  • 2020/12/23

    微信小程序加载动画

    官方文档地址 app.json中引入 "usingComponents": {     "mp-loading": "weui-miniprogram/loading/loading"   } app.wxss中添加,此处…

  • 微信小程序
  • 2020/12/23
  • helei
  • 712
  • 2020/12/22

    微信小程序返回上一页带参数

     var pages = getCurrentPages();   var prevPage = pages[pages.length - 2]; //上一个页面   //直接调用上一个页面的setData()方法,把数据存到上一个页面中去   var passengerBackList = []…

  • 微信小程序
  • 2020/12/22
  • helei
  • 643
  • 2020/12/22

    微信小程序左滑删除利用微信的movable-area/movable-view组件实现

    利用微信的movable-area/movable-view组件 wxml <movable-area wx:for="{{contactList}}" >         <movable-view direction="…

  • 微信小程序
  • 2020/12/22
  • helei
  • 714
  • 2020/12/17

    微信小程序checkbox全选与单选

    js data: {     barheight:"",     textheight:"",     textTop:"",     checkAll:fal…

  • 微信小程序
  • 2020/12/17
  • helei
  • 684
  • 2020/12/14

    微信小程序使用switchTab跳转后页面不刷新

    wx.switchTab({         url: '/pages/index/index',         success: function (e) { &n…

  • 微信小程序
  • 2020/12/14
  • helei
  • 666
  • 2020/12/14

    微信小程序view动画

    官方文档地址 var that = this;     var animation = wx.createAnimation({       duration: 1000,    …

  • 微信小程序
  • 2020/12/14
  • helei
  • 666