production_statistics.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <template>
  2. <view>
  3. <view class="top">
  4. <image src="./img/top.jpg" mode=""></image>
  5. </view>
  6. <view class="content">
  7. <view class="section">
  8. <view class="title" style="text-align: center;">当日公司产量</view>
  9. <view class="inner">
  10. <p-production-statistics-section-1></p-production-statistics-section-1>
  11. </view>
  12. </view>
  13. <view class="section">
  14. <view class="title">当日产量分布</view>
  15. <view class="inner">
  16. <p-production-statistics-section-2></p-production-statistics-section-2>
  17. </view>
  18. </view>
  19. <view class="section">
  20. <view class="title">
  21. <view class="text">
  22. <view>周产量趋势</view>
  23. <view class="right_text">单位: 吨</view>
  24. </view>
  25. </view>
  26. <view class="inner">
  27. <p-production-statistics-section-3></p-production-statistics-section-3>
  28. </view>
  29. </view>
  30. <view class="section">
  31. <view class="title" style="border-bottom: 1px solid #eee;">
  32. <view class="text">
  33. <view>各矿产量</view>
  34. <view class="right_text">单位: 吨</view>
  35. </view>
  36. </view>
  37. <view class="inner">
  38. <p-production-statistics-section-4></p-production-statistics-section-4>
  39. </view>
  40. </view>
  41. </view>
  42. </view>
  43. </template>
  44. <script>
  45. export default {
  46. data() {
  47. return {
  48. };
  49. }
  50. }
  51. </script>
  52. <style lang="scss">
  53. page {
  54. background-color: #009FE8;
  55. }
  56. .top {
  57. image {
  58. width: 750rpx;
  59. height: 360rpx;
  60. }
  61. }
  62. .content {
  63. width: 750rpx;
  64. box-sizing: border-box;
  65. padding: 0 25rpx;
  66. }
  67. .section {
  68. margin: 20rpx 0;
  69. width: 700rpx;
  70. background-color: #FFFFFF;
  71. border-radius: 8px;
  72. .title {
  73. font-size: 36rpx;
  74. color: #1e1e1e;
  75. font-weight: 700;
  76. box-sizing: border-box;
  77. padding: 30rpx 0;
  78. margin: 0 20rpx;
  79. .text {
  80. display: flex;
  81. justify-content: space-between;
  82. align-items: baseline;
  83. .right_text {
  84. font-size: 24rpx;
  85. color: #9a9a9a;
  86. font-weight: 400;
  87. }
  88. }
  89. }
  90. .inner {
  91. // min-height: 200px;
  92. }
  93. }
  94. </style>