apps.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <template name="apps">
  2. <view>
  3. <cu-custom bgColor="bg-blue">
  4. <block slot="content"> 应用</block>
  5. </cu-custom>
  6. <scroll-view scroll-y class="page my-app">
  7. <view class="grid col-2 padding-sm">
  8. <view >
  9. <navigator hover-class="none" url="/pages/calendar/MyCalendar" >
  10. <view class="padding radius text-center shadow-blur bg-white">
  11. <text class="lg font-size-35 text-blue cuIcon-calendar"></text>
  12. <view class="margin-top-sm text-Abc">我的日程</view>
  13. </view>
  14. </navigator>
  15. </view>
  16. <!--<view class="padding-sm">
  17. <navigator hover-class="none" url="/pages/apps/notification/notification" >
  18. <view class="padding radius text-center shadow-blur bg-blue">
  19. <view class="cuIcon-notice text-white circle-button font-size-35"></view>
  20. <view class="margin-top-sm text-Abc">通告</view>
  21. </view>
  22. </navigator>
  23. </view>
  24. <view class="padding-sm">
  25. <navigator hover-class="none" url="/pages/apps/mail/mail" >
  26. <view class="padding radius text-center shadow-blur bg-blue">
  27. <view class="cuIcon-mail text-white circle-button font-size-35"></view>
  28. <view class="margin-top-sm text-Abc">站内信</view>
  29. </view>
  30. </navigator>
  31. </view>-->
  32. </view>
  33. <!--<view class="grid col-3 padding-sm" style="margin-top: -7px;">
  34. <view class="padding-sm">
  35. <navigator hover-class="none" url="/pages/example/components" >
  36. <view class="padding radius text-center shadow-blur bg-white">
  37. <text class="lg font-size-35 text-blue cuIcon-form"></text>
  38. <view class="margin-top-sm text-Abc">元素</view>
  39. </view>
  40. </navigator>
  41. </view>
  42. <view class="padding-sm">
  43. <navigator hover-class="none" url="/pages/example/components" >
  44. <view class="padding radius text-center shadow-blur bg-white">
  45. <text class="lg font-size-35 text-blue cuIcon-list"></text>
  46. <view class="margin-top-sm text-Abc">组件</view>
  47. </view>
  48. </navigator>
  49. </view>
  50. <view class="padding-sm">
  51. <navigator hover-class="none" url="/pages/example/basics/icon" >
  52. <view class="padding radius text-center shadow-blur bg-white">
  53. <text class="lg font-size-35 text-blue cuIcon-similar"></text>
  54. <view class="margin-top-sm text-Abc">图标</view>
  55. </view>
  56. </navigator>
  57. </view>
  58. <view class="padding-sm">
  59. <navigator hover-class="none" url="/pages/example/ucharts/ucharts" >
  60. <view class="padding radius text-center shadow-blur bg-white">
  61. <text class="lg font-size-35 text-blue cuIcon-rank"></text>
  62. <view class="margin-top-sm text-Abc">图表</view>
  63. </view>
  64. </navigator>
  65. </view>
  66. <view class="padding-sm">
  67. <view class="padding radius text-center shadow-blur bg-white">
  68. <text class="lg font-size-35 text-blue cuIcon-calendar"></text>
  69. <view class="margin-top-sm text-Abc">日历</view>
  70. </view>
  71. </view>
  72. <view class="padding-sm">
  73. <view class="padding radius text-center shadow-blur bg-white">
  74. <text class="lg font-size-35 text-blue cuIcon-phone"></text>
  75. <view class="margin-top-sm text-Abc">电话</view>
  76. </view>
  77. </view>
  78. <view class="padding-sm">
  79. <view class="padding radius text-center shadow-blur bg-white">
  80. <text class="lg font-size-35 text-blue cuIcon-activity"></text>
  81. <view class="margin-top-sm text-Abc">工作</view>
  82. </view>
  83. </view>
  84. <view class="padding-sm">
  85. <view class="padding radius text-center shadow-blur bg-white">
  86. <text class="lg font-size-35 text-blue cuIcon-hot"></text>
  87. <view class="margin-top-sm text-Abc">热点</view>
  88. </view>
  89. </view>
  90. <view class="padding-sm">
  91. <navigator hover-class="none" url="/pages/test/mobile/TestMobileList" >
  92. <view class="padding radius text-center shadow-blur bg-white">
  93. <text class="lg font-size-35 text-blue cuIcon-safe"></text>
  94. <view class="margin-top-sm text-Abc">测试</view>
  95. </view>
  96. </navigator>
  97. </view>
  98. </view>-->
  99. <u-gap height="80" bgColor="#fff"></u-gap>
  100. </scroll-view>
  101. </view>
  102. </template>
  103. <script>
  104. export default {
  105. name: "apps",
  106. data() {
  107. return {
  108. };
  109. },
  110. onShow() {
  111. console.log("success")
  112. }
  113. }
  114. </script>
  115. <style>
  116. .page {
  117. height: 100vh;
  118. }
  119. .font-size-35{
  120. font-size: 35px!important;
  121. }
  122. .my-app .padding-sm {
  123. padding: 6px;
  124. }
  125. .grid .padding-sm .bg-white{
  126. box-shadow: 0 1px 4px #f9f9f9, 1px 1px 40px rgba(0,0,0,.06);
  127. }
  128. </style>