p-Gas.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <template>
  2. <view>
  3. <view class="content">
  4. <view class="title">瓦斯异常情况</view>
  5. <view class="content_inner">
  6. <view class="list_item">
  7. <view class="item">
  8. <view class="name">报警</view>
  9. <view class="num">0个</view>
  10. <view class="icon">
  11. <image src="./icon/p_gas_1.png" mode=""></image>
  12. </view>
  13. </view>
  14. <view class="item">
  15. <view class="name">断电</view>
  16. <view class="num">0个</view>
  17. <view class="icon">
  18. <image src="./icon/p_gas_2.png" mode=""></image>
  19. </view>
  20. </view>
  21. <view class="item">
  22. <view class="name">故障</view>
  23. <view class="num">0个</view>
  24. <view class="icon">
  25. <image src="./icon/p_gas_3.png" mode=""></image>
  26. </view>
  27. </view>
  28. </view>
  29. </view>
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. export default {
  35. data() {
  36. return {
  37. };
  38. }
  39. }
  40. </script>
  41. <style lang="scss">
  42. .content{
  43. margin-top: 15rpx;
  44. background: #FFFFFF;
  45. border-radius: 31rpx;
  46. .title{
  47. text-align: center;
  48. line-height: 97rpx;
  49. border-bottom: 2rpx solid #f3f3f3;
  50. font-size: 29rpx;
  51. font-family: PingFangSC-Regular, PingFang SC;
  52. font-weight: 400;
  53. color: #232627;
  54. }
  55. .content_inner{
  56. box-sizing: border-box;
  57. padding: 30rpx 58rpx;
  58. .list_item{
  59. display: flex;
  60. justify-content: space-between;
  61. .item{
  62. width: 84rpx;
  63. text-align: center;
  64. .name{
  65. font-size: 29rpx;
  66. font-family: PingFangSC-Regular, PingFang SC;
  67. font-weight: 400;
  68. color: #232627;
  69. line-height: 42rpx;
  70. }
  71. .num{
  72. margin-top: 28rpx;
  73. font-size: 29rpx;
  74. font-family: PingFangSC-Medium, PingFang SC;
  75. font-weight: 500;
  76. color: #232627;
  77. line-height: 42rpx;
  78. }
  79. .icon{
  80. margin-top: 27rpx;
  81. image{
  82. width: 84rpx;
  83. height: 84rpx;
  84. }
  85. }
  86. }
  87. }
  88. }
  89. }
  90. </style>