loumzy opened a new issue #3199: URL: https://github.com/apache/incubator-weex/issues/3199
[demo](http://dotwe.org/vue/48ddb2f7339d1fb116135900a2dbc8e5) ``` <template> <scroller class="home" @scroll="scrollHandler" show-scrollbar=false> <div class="menu"> <div class="menuPanel" @swipe="swipeEvent" :style="{ left: activeTab * -750 + 'px'}"> <!-- 杭务公告 --> <div class="menuContent"> <div class="contentList"> <list class="list" show-scrollbar="false" @stopPropagation="Env.platform === 'iOS' ? false : true" shouldStopPropagationInterval="1000000" shouldStopPropagationInitResult="false"> <cell class="listPanel" v-for="(list, index) in lists1" :key="index" :ref="'hwgg' + index"> <div class="circle_dot"></div> <text class="listTitle">{{index}}{{list.title}}</text> <text class="listTime">{{list.showtime.split('-').join('.')}}</text> </cell> </list> </div> <div class="loadMoreFirst"> <text class="loadMoreTxt">{{loadMore1 === 1 ? '更多' : '点击收起'}}</text> </div> </div> </div> </div> </scroller> </template> ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
