analyse.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <template>
  2. <view class="analyse-wrapper">
  3. <view class="top-banner justify-center align-center text-center">
  4. </view>
  5. <view class="cu-list menu-avatar padding-lr">
  6. <view class="cu-item shadow" @tap="goMonthReport()">
  7. <view class="cu-avatar " style="background-image:url(../../static/yb-icon.png)"></view>
  8. <view class="content">
  9. <view class="">月报</view>
  10. </view>
  11. <view class="nav-right">
  12. <view class="text-grey">
  13. <text class="icon iconfont margin-right-xs margin-left-lg">&#xe629;</text>
  14. </view>
  15. </view>
  16. </view>
  17. <view class="cu-item shadow" >
  18. <view class="cu-avatar " style="background-image:url(../../static/build-icon.png)"></view>
  19. <view class="content">
  20. <view class="">建筑体检</view>
  21. </view>
  22. <view class="nav-right">
  23. <view class="text-grey">
  24. <text class="icon iconfont margin-right-xs margin-left-lg">&#xe629;</text>
  25. </view>
  26. </view>
  27. </view>
  28. </view>
  29. </view>
  30. </template>
  31. <script>
  32. export default {
  33. data() {
  34. return {
  35. }
  36. },
  37. methods: {
  38. goMonthReport() {
  39. uni.navigateTo({
  40. url: '/pages/analyse/monthReport/monthReport',
  41. });
  42. }
  43. }
  44. }
  45. </script>
  46. <style>
  47. .shadow {
  48. box-shadow: 1px 1px 4px rgb(26 26 26 / 10%);
  49. }
  50. </style>
  51. <style lang="scss">
  52. </style>