123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <template>
- <view>
- <view class="top">
- <image src="./img/top.jpg" mode=""></image>
- </view>
- <view class="content">
- <view class="section">
- <view class="title" style="text-align: center;">当日公司产量</view>
- <view class="inner">
- <p-production-statistics-section-1></p-production-statistics-section-1>
- </view>
- </view>
- <view class="section">
- <view class="title">当日产量分布</view>
- <view class="inner">
- <p-production-statistics-section-2></p-production-statistics-section-2>
- </view>
- </view>
- <view class="section">
- <view class="title">
- <view class="text">
- <view>周产量趋势</view>
- <view class="right_text">单位: 吨</view>
- </view>
- </view>
- <view class="inner">
- <p-production-statistics-section-3></p-production-statistics-section-3>
- </view>
- </view>
- <view class="section">
- <view class="title" style="border-bottom: 1px solid #eee;">
- <view class="text">
- <view>各矿产量</view>
- <view class="right_text">单位: 吨</view>
- </view>
- </view>
- <view class="inner">
- <p-production-statistics-section-4></p-production-statistics-section-4>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- };
- }
- }
- </script>
- <style lang="scss">
- page {
- background-color: #009FE8;
- }
- .top {
- image {
- width: 750rpx;
- height: 360rpx;
- }
- }
- .content {
- width: 750rpx;
- box-sizing: border-box;
- padding: 0 25rpx;
- }
- .section {
- margin: 20rpx 0;
- width: 700rpx;
- background-color: #FFFFFF;
- border-radius: 8px;
- .title {
- font-size: 36rpx;
- color: #1e1e1e;
- font-weight: 700;
- box-sizing: border-box;
- padding: 30rpx 0;
- margin: 0 20rpx;
- .text {
- display: flex;
- justify-content: space-between;
- align-items: baseline;
- .right_text {
- font-size: 24rpx;
- color: #9a9a9a;
- font-weight: 400;
- }
- }
- }
- .inner {
- // min-height: 200px;
- }
- }
- </style>
|