小洋粉

Results 4 issues of 小洋粉

``` export default (new WxValidate( { // 验证字段规则 content: { required: true, minlength: 5 }, images: { images: true, }, videos: { videos: true, } }, { // 验证字段提示信息 content:...

瀑布流组件图片mode为widthFix时,瀑布流两边会一边长一边短 这是因为图片还没加载出来瀑布流已经提前去获取图片尚未加载结束时的 card高度,图片加载结束以后又会再次改变card的高度,导致某一列延长,而另外一列缩短。 粗暴的解决方式可以将传进去的数组简单拆分,分批上屏即可。。 ``` 这样调用renderWaterFlow就会正常显示。 if(!this.graphics) return const t = JSON.deep([...this.graphics]) for(;;) { const a = t.splice(0,2) // 这里只能是2,其余的数字都不太正常。 if(!a.length) break; wx.lin.renderWaterFlow(a, false ,()=>{ console.log('渲染成功') }) } ``` ![image](https://user-images.githubusercontent.com/28172140/86997856-b2376a80-c1e1-11ea-9a54-77fba6f383bf.png)

Bug
WaterFlow
已计划:calendar:

in the newest version : Left berth by default how to right default? ![image](https://user-images.githubusercontent.com/28172140/58810317-497dd600-8650-11e9-84e9-5f023ddd5983.png) Default Vertical Topping how to Vertical centering?