123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <template>
- <view>
- <view class="list_item">
- <view class="item">
- <view class="name">设备状态统计</view>
- <view class="icon">
- <uni-icons type="arrowright" color="#a1a1a1"></uni-icons>
- </view>
- </view>
- <view class="item">
- <view class="name">报警列表</view>
- <view class="icon">
- <uni-icons type="arrowright" color="#a1a1a1"></uni-icons>
- </view>
- </view>
- <view class="item">
- <view class="name">设备列表</view>
- <view class="icon">
- <uni-icons type="arrowright" color="#a1a1a1"></uni-icons>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- }
- }
- </script>
- <style lang="scss">
- .list_item{
- box-sizing: border-box;
- padding-left: 20rpx;
- border-bottom: 1rpx solid #f3f3f3;
- .item{
- height: 90rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding-right: 20rpx;
- box-sizing: border-box;
- border-bottom: 1rpx solid #f3f3f3;
- .name{
- font-size: 32rpx;
- font-family: PingFangSC-Regular, PingFang SC;
- font-weight: 400;
- color: #3B3B4D;
- }
- .icon{
-
- }
- }
- .item:last-child{
- border: none;
- }
- }
- </style>
|