123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- <template>
- <view>
- <u-navbar title="用电统计" title-color="#101010" >
-
-
- </u-navbar>
- <!-- 折线图 -->
- <view class="chat-box">
- <view class="title">
- <view class="month">
- 1月 共用电
- </view>
- <view class="month-pick">
- 2024年1月<u-icon name="arrow-down"></u-icon>
- </view>
- </view>
- <view class="degree">
- 180.00<text class="unit">度</text>
- </view>
- <view class="chat">
- <image class="img" src="@/assets/img/jVzkNKE@1x.png" mode=""></image>
- </view>
- </view>
- <!-- 记录 -->
- <view class="record">
- <view class="total">
- 01月 合计用电1000.00度 624.00元
- </view>
- <view class="record-item" v-for="item in 2">
- <view class="item-left">
- <view class="number">
- 1月2日 用电 100.00 度
- </view>
- <view class="date">
- 01-03 00:01
- </view>
- </view>
- <view class="money">
- 64.4元
- <!-- 箭头 -->
- <view class="more">
- <u-icon name="arrow-right" color="#acacac" size="24"></u-icon>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- // 折线图
- .chat-box{
- background: linear-gradient(180deg, rgba(203,234,255,1) 0%,rgba(255,255,255,1) 75%);
- padding: 24rpx 32rpx;
- .title{
- display: flex;
- align-items: center;
- justify-content: space-between;
- .month{
- color: rgba(16,16,16,1);
-
- }
- .month-pick{
- color: rgba(51,51,51,1);
- }
- }
- .degree{
- color: rgb(51,51,51);
- font-size: 64rpx;
- .unit{
- color: rgb(16,16,16);
- font-size: 28rpx;
- margin-left: 8rpx;
- }
- }
- .chat{
- width: 100%;
- height: 240rpx;
- margin-top: 8rpx;
- .img{
- width: 100%;
- height: 100%;
- }
- }
-
- }
- // 记录
- .record{
- .total{
- color: rgba(119,119,119,1);
- font-size: 32rpx;
- padding: 24rpx 32rpx;
- }
- .record-item{
- background-color: #fff;
- padding: 32rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- border-bottom: 1px solid rgba(244,244,244,1);
- .item-left{
- .number{
- color: rgba(51,51,51,1);
- font-size: 32rpx;
- font-weight: bold;
- }
- .date{
- color: rgb(153,153,153);
- font-size: 24rpx;
- margin-top: 4rpx;
- }
- }
- .money{
- color: rgb(16,16,16);
- font-size: 40rpx;
- display: flex;
- align-items: center;
- .more{
- margin-left: 8rpx;
- }
- }
- }
- }
- </style>
|