p-alarm.vue 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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="item_name">一级报警</view>
  9. <view class="item_icon">1个</view>
  10. </view>
  11. <view class="item">
  12. <view class="item_name">二级报警</view>
  13. <view class="item_icon icon2">3个</view>
  14. </view>
  15. <view class="item">
  16. <view class="item_name">三级报警</view>
  17. <view class="item_icon icon3">0个</view>
  18. </view>
  19. </view>
  20. </view>
  21. </view>
  22. </view>
  23. </template>
  24. <script>
  25. export default {
  26. data() {
  27. return {
  28. };
  29. }
  30. }
  31. </script>
  32. <style lang="scss">
  33. .content{
  34. margin-top: 15rpx;
  35. background: #FFFFFF;
  36. border-radius: 31rpx;
  37. .title{
  38. text-align: center;
  39. line-height: 97rpx;
  40. border-bottom: 2rpx solid #f3f3f3;
  41. font-size: 29rpx;
  42. font-family: PingFangSC-Regular, PingFang SC;
  43. font-weight: 400;
  44. color: #232627;
  45. }
  46. .content_inner{
  47. box-sizing: border-box;
  48. padding: 38rpx 44rpx;
  49. .list_item{
  50. display: flex;
  51. justify-content: space-between;
  52. .item{
  53. width: 139rpx;
  54. text-align: center;
  55. .item_name{
  56. height: 42rpx;
  57. font-size: 29rpx;
  58. font-family: PingFangSC-Regular, PingFang SC;
  59. font-weight: 400;
  60. color: #232627;
  61. line-height: 42rpx;
  62. }
  63. .item_icon{
  64. margin: 0 auto;
  65. margin-top: 19rpx;
  66. width: 125rpx;
  67. height: 125rpx;
  68. background: #E74C3C;
  69. border-radius: 50%;
  70. line-height: 125rpx;
  71. color: #fff;
  72. font-size: 30rpx;
  73. font-family: PingFangSC-Regular, PingFang SC;
  74. font-weight: 400;
  75. }
  76. .icon2{
  77. background: #E67E22;
  78. }
  79. .icon3{
  80. background: #3498DB;
  81. }
  82. }
  83. }
  84. }
  85. }
  86. </style>