analyse.vue 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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" @tap="goBuildingCheck()">
  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. goBuildingCheck(){
  44. uni.navigateTo({
  45. url: '/pages/analyse/buildingCheck/buildingCheck',
  46. });
  47. }
  48. }
  49. }
  50. </script>
  51. <style>
  52. .shadow {
  53. box-shadow: 1px 1px 4px rgb(26 26 26 / 10%);
  54. }
  55. </style>
  56. <style lang="scss">
  57. </style>