index.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <template>
  2. <div class="app-container">
  3. <!-- 顶部标题栏 -->
  4. <div class="page-header">
  5. <div class="page-title">生产汇总</div>
  6. <div class="page-time">时间:{{ currentTime }}</div>
  7. </div>
  8. <!-- 已安装统计表格 -->
  9. <production-statistics :update-time.sync="updateTime" />
  10. </div>
  11. </template>
  12. <script>
  13. import productionStatistics from "./components/productionStatistics.vue";
  14. import { GetDataByName, GetDataByNames } from "@/api/common";
  15. export default {
  16. name: "ProductionSummary",
  17. components: {
  18. productionStatistics,
  19. },
  20. data() {
  21. return {
  22. currentTime: "",
  23. updateTime: "",
  24. dialogVisible: false,
  25. tableData: [],
  26. unassignedOrders: [],
  27. chartData: {
  28. labels: [
  29. "智能膜环",
  30. "智能喷淋",
  31. "精准阉割",
  32. "奶牛称重",
  33. "车载控制器",
  34. "大屏",
  35. ],
  36. datasets: [
  37. {
  38. label: "计划量",
  39. data: [900, 850, 900, 700, 500, 30],
  40. backgroundColor: "#409EFF",
  41. order: 2,
  42. },
  43. {
  44. label: "完成量",
  45. data: [800, 820, 850, 680, 200, 20],
  46. backgroundColor: "#FF9F43",
  47. order: 2,
  48. },
  49. {
  50. label: "完成率",
  51. data: [88.9, 96.5, 94.4, 97.1, 40.0, 66.7],
  52. type: "line",
  53. borderColor: "#67C23A",
  54. borderWidth: 2,
  55. fill: false,
  56. yAxisID: "percentage",
  57. order: 1,
  58. },
  59. ],
  60. },
  61. };
  62. },
  63. created() {
  64. this.updateCurrentTime();
  65. setInterval(this.updateCurrentTime, 1000);
  66. this.getUpdateTime();
  67. },
  68. methods: {
  69. updateCurrentTime() {
  70. const now = new Date();
  71. const year = now.getFullYear();
  72. const month = (now.getMonth() + 1).toString().padStart(2, "0");
  73. const day = now.getDate().toString().padStart(2, "0");
  74. const hours = now.getHours().toString().padStart(2, "0");
  75. const minutes = now.getMinutes().toString().padStart(2, "0");
  76. const seconds = now.getSeconds().toString().padStart(2, "0");
  77. this.currentTime = `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
  78. },
  79. async getUpdateTime() {
  80. try {
  81. const now = new Date();
  82. const month = (now.getMonth() + 1).toString().padStart(2, "0");
  83. const day = now.getDate().toString().padStart(2, "0");
  84. const hours = now.getHours().toString().padStart(2, "0");
  85. const minutes = now.getMinutes().toString().padStart(2, "0");
  86. const seconds = now.getSeconds().toString().padStart(2, "0");
  87. this.updateTime = `${month}/${day} ${hours}:${minutes}:${seconds}更新`;
  88. } catch (error) {
  89. console.error("获取更新时间失败:", error);
  90. }
  91. },
  92. },
  93. };
  94. </script>
  95. <style lang="scss" scoped>
  96. .page-header {
  97. display: flex;
  98. justify-content: space-between;
  99. align-items: center;
  100. padding: 20px 24px;
  101. background: #fff;
  102. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.05);
  103. margin-bottom: 24px;
  104. border-radius: 8px;
  105. transition: all 0.3s ease;
  106. .page-title {
  107. font-size: 20px;
  108. font-weight: 600;
  109. color: #1f2d3d;
  110. position: relative;
  111. padding-left: 16px;
  112. &::before {
  113. content: "";
  114. position: absolute;
  115. left: 0;
  116. top: 50%;
  117. transform: translateY(-50%);
  118. width: 4px;
  119. height: 22px;
  120. background: #409eff;
  121. border-radius: 4px;
  122. }
  123. }
  124. .page-time {
  125. color: #606266;
  126. font-size: 14px;
  127. }
  128. }
  129. </style>