analyse.vue 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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.showModal({
  40. title: 'Tips',
  41. content: '此模块开发中~',
  42. showCancel: false,
  43. success: function(res) {
  44. if (res.confirm) {} else if (res.cancel) {}
  45. }
  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. // .analyse-wrapper {
  58. // .top-banner {
  59. // width: 100%;
  60. // height: 273rpx;
  61. // background: url(../../static/analyse-bg.png) no-repeat;
  62. // background-size:cover;
  63. // }
  64. // .cu-list.menu-avatar .cu-item{
  65. // margin:30rpx 0 0;
  66. // margin-left:0;
  67. // .cu-avatar{
  68. // background-color:rgba(0,0,0,0);
  69. // left:26rpx;
  70. // }
  71. // .content{
  72. // left:130rpx;
  73. // font-size:32rpx;
  74. // }
  75. // }
  76. // }
  77. </style>