12345678910111213141516171819202122232425 |
- <script>
- export default {
- onLaunch: function() {
- console.log('App Launch')
- },
- onShow: function() {
- console.log('App Show')
- },
- onHide: function() {
- console.log('App Hide')
- }
- }
- </script>
- <style lang="scss">
- @import "@/uni_modules/uview-ui/index.scss";
-
- //mescroll 在小程序上和uview组件冲突会导致下拉图标排列异常 处理一下
- .downwarp-content{
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- }
- </style>
|