xyf

Results 5 issues of xyf

``` 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?

### 相关平台 微信小程序 ### 复现仓库 [[email protected]:NervJS/taro-sample-weapp.git]([email protected]:NervJS/taro-sample-weapp.git) **小程序基础库: 3.5.1** **使用框架: React** ### 复现步骤 按照官方文档即可复现 https://docs.taro.zone/docs/next/hybrid ### 期望结果 能够正常使用原生混合 ### 实际结果 👽 Taro v4.0.3 Tips: 1. 预览模式生成的文件较大,设置 NODE_ENV 为 production 可以开启压缩。 Example:...

F-react
T-weapp
V-4