home.vue 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <template>
  2. <view id="hazardousWasteRecyclingHome">
  3. <view class="max-big-button-box">
  4. <img class="left-box" :src="imagesUrl('hazardousWasteRecycling/wfhs_hsbb.png')">
  5. <view class="right-box">
  6. <view>回收报备</view>
  7. <view>可在回收日前填写报备单</view>
  8. </view>
  9. </view>
  10. <view class="max-big-button-box">
  11. <img class="left-box" :src="imagesUrl('hazardousWasteRecycling/wfhs_czdj.png')">
  12. <view class="right-box">
  13. <view>登记称重</view>
  14. <view>请在回收日等待回收,完成称重登记</view>
  15. </view>
  16. </view>
  17. <view class="max-big-button-box">
  18. <img class="left-box" :src="imagesUrl('hazardousWasteRecycling/wfhs_lsjl.png')">
  19. <view class="right-box">
  20. <view>历史记录</view>
  21. <view>查看我的危废回收记录</view>
  22. </view>
  23. </view>
  24. <view class="max-big-button-box">
  25. <img class="left-box" :src="imagesUrl('hazardousWasteRecycling/wfhs_qxsq.png')">
  26. <view class="right-box">
  27. <view>权限申请</view>
  28. <view>查看我的申请,提交新申请</view>
  29. </view>
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. import {
  35. demo1,
  36. demo2
  37. } from '@/pages_hazardousWasteRecycling/api/index.js'
  38. export default {
  39. data() {
  40. return {
  41. }
  42. },
  43. onLoad(option) {
  44. },
  45. onShow() {
  46. },
  47. mounted() {
  48. },
  49. methods: {
  50. },
  51. }
  52. </script>
  53. <style lang="stylus" scoped>
  54. #hazardousWasteRecyclingHome {
  55. height: 100%;
  56. display flex;
  57. flex-direction column;
  58. .max-big-button-box{
  59. background-color: #fff;
  60. border-radius:20rpx;
  61. margin:40rpx 40rpx 0;
  62. display: flex;
  63. .left-box{
  64. margin:40rpx 40rpx 40rpx 60rpx;
  65. width:160rpx;
  66. height:160rpx;
  67. border-radius:20rpx;
  68. }
  69. .right-box{
  70. view:nth-child(1){
  71. font-size:28rpx;
  72. color:#333;
  73. margin-top:70rpx;
  74. }
  75. view:nth-child(2){
  76. font-size:22rpx;
  77. color:#999;
  78. margin-top:20rpx;
  79. }
  80. }
  81. }
  82. }
  83. </style>