1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <template>
- <view class="content">
- <view class="section">
- <view class="title">
- <view class="text">
- <view>今日产量</view>
- <view class="right_text">单位: 吨</view>
- </view>
- </view>
- <view class="inner">
- <p-production-report-inner-1 :mine="mine" :org_num="org_num"></p-production-report-inner-1>
- </view>
- </view>
- <!-- 产量趋势 -->
- <p-production-report-inner-2 :mine="mine" :org_num="org_num"></p-production-report-inner-2>
- <view class="section">
- <view class="title">
- 工作面详情
- </view>
- <view class="inner">
- <p-production-report-inner-3 :mine="mine" :org_num="org_num"></p-production-report-inner-3>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- mine: "",
- org_num: ""
- };
- },
- onLoad(option) {
- this.mine = option.mine
- this.org_num = option.org_num
- }
- }
- </script>
- <style lang="scss">
- page {
- background-color: #009FE8;
- }
- .content {
- width: 750rpx;
- box-sizing: border-box;
- padding: 0 25rpx;
- }
- .section {
- margin: 20rpx 0;
- width: 700rpx;
- background-color: #FFFFFF;
- border-radius: 16rpx;
- .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>
|