随手精灵小程序,单独为了获取WIFI信息加强围栏告警功能能力
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

132 rindas
2.1KB

  1. .device-item {
  2. display: flex;
  3. justify-content: space-between;
  4. }
  5. .device-result {
  6. flex: 1;
  7. text-align: center;
  8. }
  9. .command {
  10. background-color: black;
  11. color: white;
  12. margin: 24rpx;
  13. padding: 10rpx;
  14. margin-bottom: 0;
  15. }
  16. .command-result {
  17. background-color: black;
  18. color: white;
  19. /* margin: 0 24rpx 24rpx 24rpx; */
  20. margin-top: 24rpx;
  21. overflow: auto;
  22. height: 350rpx;
  23. word-wrap: break-word;
  24. word-break: normal;
  25. }
  26. .command-line {
  27. background-color: black;
  28. color: white;
  29. font-family: monospace;
  30. padding: 20rpx;
  31. border: 1rpx solid white;
  32. padding: 10rpx;
  33. overflow: auto;
  34. height: 350rpx;
  35. margin: 24rpx;
  36. margin-top: 0;
  37. overflow-y: scroll;
  38. text-align: right;
  39. }
  40. .command-line view {
  41. word-wrap: break-word;
  42. word-break: normal;
  43. }
  44. .event-bar {
  45. display: flex;
  46. justify-content: space-between;
  47. /* padding: 24rpx; */
  48. flex-wrap: wrap;
  49. }
  50. .btn-con {
  51. padding: 0 20rpx;
  52. display: flex;
  53. justify-content: flex-start;
  54. padding: 24rpx;
  55. flex-wrap: wrap;
  56. }
  57. .btn-con button {
  58. width: 200rpx;
  59. background-color: #f8f8f8;
  60. color: #000;
  61. text-align: center;
  62. padding: 5rpx;
  63. border: 1rpx #ccc solid;
  64. margin-bottom: 15rpx;
  65. font-size: 20rpx;
  66. }
  67. .command-input {
  68. width: 100vw;
  69. padding: 24rpx;
  70. }
  71. .command-input button {
  72. margin-bottom: 10rpx;
  73. }
  74. textarea {
  75. height: 30rpx;
  76. width: auto;
  77. position: relative;
  78. padding: 30rpx 24rpx;
  79. margin-bottom: 20rpx;
  80. border: 1rpx solid #c2bebe;
  81. border-radius: 30rpx;
  82. }
  83. .dialog {
  84. position: fixed;
  85. top: 0;
  86. left: 0;
  87. width: 100%;
  88. height: 100%;
  89. background-color: rgba(0, 0, 0, 0.5);
  90. display: flex;
  91. justify-content: center;
  92. align-items: center;
  93. z-index: 1;
  94. }
  95. .dialog-content {
  96. background-color: #fff;
  97. padding: 20rpx;
  98. border-radius: 10rpx;
  99. box-shadow: 0 2rpx 4rpx rgba(0, 0, 0, 0.2);
  100. width: 80%;
  101. }
  102. .dialog-title {
  103. font-size: 35rpx;
  104. font-weight: bold;
  105. margin-bottom: 10rpx;
  106. text-align: center;
  107. }
  108. .dialog-message {
  109. font-size: 30rpx;
  110. margin-bottom: 20rpx;
  111. }
  112. .dialog-button {
  113. padding: 10rpx 20rpx;
  114. border-radius: 5rpx;
  115. font-size: 30rpx;
  116. }
  117. .clear-btn {
  118. margin: 24rpx;
  119. }