- 小程序支持类似echarts之类的第三方可视化图表库么?
或者说今后是否会考虑自己做一套可视化图表组件出来?自己实现各种饼图、柱状图还是代价太大了
2017-08-18 - 小程序支持flash吗?
如题
2017-08-17 - 如何前置判断登录状态
想在进入首页之前就判断好登录状态,若已登录就进首页,未登录就进login页 现在的做法是把判断登录的逻辑在首页这个落地页里做,但是这样未登录的情况就会先进了一下首页然后跳到login页 如何坐到前置判断登录状态然后进入相应的落地页呢?
2017-07-03 - input组件在失去焦点时,内部文字位置发生改变
[图片] [图片] 如图所示,在输入的时候一切正常,但是当失去焦点的时候input框的文字就移位了 部分代码如下: wxml: <view class="main"> <text>退货商品物流单号</text> <text>(限{{startTime_txt}}~{{endTime_txt}}的物流单号)</text> <view class="ipt_group"> <input type="text" bindinput="bindIptInput" maxlength="30" focus="true" value="{{expressNo}}" /> <view class="icon_clear" style="display: {{expressNo.length>0 ? 'block':'none'}}" bindtap="bindClearTap"> <icon type="clear" size="23" /> </view> </view> </view> js: bindIptInput: function (event) { let expressNo = event.detail.value; this.setData({ expressNo: expressNo }); }, /** * 清除物流单号输入框内容 */ bindClearTap: function () { this.setData({ expressNo: '' }) }, wxss: .express .top .main { display: flex; flex-direction: column; } .express .top .main text { text-align: center; } .express .top .main text:nth-child(2) { color: #ff9110; } .express .top .main .ipt_group { position: relative; height: 84rpx; width: 570rpx; margin: 20rpx auto 0; padding: 10rpx 0; border: 1rpx solid #eee; border-radius: 10rpx; } .express .top .main .ipt_group input { height: 100%; width: 100%; padding: 0 70rpx 0 30rpx; color: #646464; font-weight: 700; font-size: 45rpx; text-indent: 40rpx; outline: 0; } .express .top .main .ipt_group .icon_clear { position: absolute; top: 17rpx; right: 10rpx; z-index: 10; }
2017-06-29 - input组件光标有问题
给input的value设置了变量,然后在bindinput的方法中更新这个变量,此时如果想在输入框中已有字符的中间输入,光标都会自动移到字符的最后,这是bug吗?
2017-06-29 - 为什么小程序不做table组件
没有table组件很不方便啊,用了display:table自己来做出table效果可以做简单的table,但是遇到要合并单元格的就麻烦了呀,建议小程序早日支持table
2017-06-24