analyse.vue 1.5 KB

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