var delBtnWidth = _this.data.delBtnWidth var txtStyle = '' if (disX == 0 || disX < 0){ // 如果移动距离小于等于0,文本层位置不变 txtStyle = 'left:0' } else if (disX > 0 ){ // 移动距离大于0,文本层left值等于手指移动距离 txtStyle = 'left:-' + disX + 'rpx' if(disX...
<buttonwx:if="{{!hasUserInfo && canIUse}}"open-type="getUserInfo"bindgetuserinfo="getUserInfo">获取头像昵称</button> <blockwx:else> <imagestyle="width:240rpx;height:240rpx"src="https://img-blog.csdnimg.cn/20200926230056268.jpg?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shad...
小程序宿主环境会管理不同小程序的数据缓存,不同小程序的本地缓存空间是分开的,每个小程序的缓存空间上限为10MB,如果当前缓存已经达到10MB,再通过wx.setStorage写入缓存会触发fail回调。 小程序的本地缓存不仅仅通过小程序这个维度来隔离空间,考虑到同一个设备可以登录不同微信用户,宿主环境还对不同用户的缓存进行了隔...
第三步——实现划掉数据 <checkbox value="{{index}}" checked="{{item.checked}}"></checkbox> <view wx:if="{{item.checked == true}}" style="text-decoration:line-through;color:blue;float:left">{{item.value}}</view> <view wx:else>{{item.value}}</view> 这里的话,当点击打勾的时候...
=null}}"><viewstyle="width:20%"class="text-center">{{class.schoolTerm}}</view><viewstyle="width:30%"class="text-center">{{class.className}}</view><viewstyle="width:30%"class="text-center">{{class.classTeacher}}</view><viewstyle="width:20%"class="text-center"><wux-icontype="...
styleItems, }); }this.data.offset = offset;this.data.visibleRange.start = start;this.data.visibleRange.stop = stop; },复制代码 在调用的时候,通过render事件回调出来的startIndex, stopIndex,styleItems,截取长列表「可视区域」的数据,在把列表项目的itemSize和offset通过绝对定位的方式应用在列表上 ...
<text style="color: #333333; font-size: 32px;"> {{ $item.user.username }} </text> <text style="color: #666666; font-size: 30px;"> {{ $item.date }} </text> </div> <rating numstars="5" rating="{{ $item.star }}" indicator="true"></rating> ...
复制dist/style/weui.wxss文件到项目src/wxss/目录下 在全局引入weui基础样式库 打开app.wxss文件 添加代码到开头 @import './src/wxss/weui.wxss'; 创建todo页面 打开app.json 在pages数组第一行中添加pages/todo/todo,保存文件 添加tasks数据 打开pages/todo/todo.js ...
https://developers.weixin.qq.com/doc/offiaccount/Message_Management/Template_Message_Interface.html#...
wxss 将app.json中默认"style": "v2"删除 .log-list { display: flex; flex-direction: column; padding: 40rpx; } .log-item { margin: 10rpx; } .top{ width:100%; display: flex; } .top>input{ border: 1px solid #ccc; width:60%; ...