App.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <script>
  2. import { mapActions } from 'vuex'
  3. export default {
  4. onLaunch: function() {
  5. console.log('App Launch')
  6. this.updateHeadStatus()
  7. this.getAllUserFace()
  8. },
  9. onShow: function() {
  10. console.log('App Show')
  11. // #ifdef APP-PLUS
  12. plus.navigator.setFullscreen(true) //隐藏手机顶部状态栏
  13. plus.navigator.hideSystemNavigation() //隐藏手机底部导航按键
  14. // #endif
  15. },
  16. onHide: function() {
  17. console.log('App Hide')
  18. },
  19. methods: {
  20. ...mapActions(['updateHeadStatus', 'getAllUserFace'])
  21. }
  22. }
  23. </script>
  24. <style lang="scss">
  25. /* 注意要写在第一行,同时给style标签加入lang="scss"属性 */
  26. @import "@/uni_modules/uview-ui/index.scss";
  27. /*每个页面公共css */
  28. @import './common/uni-nvue.css';
  29. page {
  30. background-color: #FFF;
  31. }
  32. .text-one {
  33. overflow: hidden; //超出隐藏
  34. white-space: nowrap; //不折行
  35. text-overflow: ellipsis; //溢出显示省略号
  36. // display: -webkit-box;
  37. -webkit-box-orient: vertical; //子元素排列 vertical(竖排)orhorizontal(横排)
  38. -webkit-line-clamp: 1;/*内容限制的行数 需要几行写几就行*/
  39. }
  40. .text-two {
  41. padding-right: 6rpx;
  42. overflow: hidden; //超出隐藏
  43. text-overflow: ellipsis; //溢出显示省略号
  44. white-space: normal; //常规默认,会折行
  45. display: -webkit-box;
  46. -webkit-box-orient: vertical; //子元素排列 vertical(竖排)orhorizontal(横排)
  47. -webkit-line-clamp: 2;/*内容限制的行数 需要几行写几就行*/
  48. }
  49. .text-three {
  50. padding-right: 6rpx;
  51. overflow: hidden; //超出隐藏
  52. text-overflow: ellipsis; //溢出显示省略号
  53. white-space: normal; //常规默认,会折行
  54. display: -webkit-box;
  55. -webkit-box-orient: vertical; //子元素排列 vertical(竖排)orhorizontal(横排)
  56. -webkit-line-clamp: 3;/*内容限制的行数 需要几行写几就行*/
  57. }
  58. </style>