p-i-shebei.vue 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <template>
  2. <view>
  3. <view class="list_item">
  4. <view class="item">
  5. <view class="name">设备状态统计</view>
  6. <view class="icon">
  7. <uni-icons type="arrowright" color="#a1a1a1"></uni-icons>
  8. </view>
  9. </view>
  10. <view class="item">
  11. <view class="name">报警列表</view>
  12. <view class="icon">
  13. <uni-icons type="arrowright" color="#a1a1a1"></uni-icons>
  14. </view>
  15. </view>
  16. <view class="item">
  17. <view class="name">设备列表</view>
  18. <view class="icon">
  19. <uni-icons type="arrowright" color="#a1a1a1"></uni-icons>
  20. </view>
  21. </view>
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. export default {
  27. data() {
  28. return {
  29. };
  30. }
  31. }
  32. </script>
  33. <style lang="scss">
  34. .list_item{
  35. box-sizing: border-box;
  36. padding-left: 20rpx;
  37. border-bottom: 1rpx solid #f3f3f3;
  38. .item{
  39. height: 90rpx;
  40. display: flex;
  41. justify-content: space-between;
  42. align-items: center;
  43. padding-right: 20rpx;
  44. box-sizing: border-box;
  45. border-bottom: 1rpx solid #f3f3f3;
  46. .name{
  47. font-size: 32rpx;
  48. font-family: PingFangSC-Regular, PingFang SC;
  49. font-weight: 400;
  50. color: #3B3B4D;
  51. }
  52. .icon{
  53. }
  54. }
  55. .item:last-child{
  56. border: none;
  57. }
  58. }
  59. </style>