analyse.vue 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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">
  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. }
  39. }
  40. </script>
  41. <style>
  42. .shadow {
  43. box-shadow: 1px 1px 4px rgb(26 26 26 / 10%);
  44. }
  45. </style>
  46. <style lang="scss">
  47. // .analyse-wrapper {
  48. // .top-banner {
  49. // width: 100%;
  50. // height: 273rpx;
  51. // background: url(../../static/analyse-bg.png) no-repeat;
  52. // background-size:cover;
  53. // }
  54. // .cu-list.menu-avatar .cu-item{
  55. // margin:30rpx 0 0;
  56. // margin-left:0;
  57. // .cu-avatar{
  58. // background-color:rgba(0,0,0,0);
  59. // left:26rpx;
  60. // }
  61. // .content{
  62. // left:130rpx;
  63. // font-size:32rpx;
  64. // }
  65. // }
  66. // }
  67. </style>