OrderProductionTable.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530
  1. <template>
  2. <el-card class="box-card">
  3. <div class="header-container">
  4. <div class="left">
  5. <span class="title">生产概况</span>
  6. <span class="update-time" v-if="updateTime">{{ updateTime }}</span>
  7. </div>
  8. <div class="right">
  9. <div class="filter-group">
  10. <slot name="query-buttons"></slot>
  11. </div>
  12. </div>
  13. </div>
  14. <div class="table-container">
  15. <el-table
  16. v-loading="loading"
  17. :data="localTableData"
  18. style="width: 100%"
  19. border
  20. size="small"
  21. :height="localTableData.length > 10 ? 450 : null"
  22. :header-cell-style="{ background: '#f5f7fa' }"
  23. @sort-change="handleSortChange"
  24. >
  25. <el-table-column type="index" label="序号" width="50" align="center" />
  26. <el-table-column
  27. prop="orderCode"
  28. label="订单编号"
  29. width="110"
  30. align="center"
  31. />
  32. <el-table-column
  33. prop="goodsName"
  34. label="货品名称"
  35. min-width="110"
  36. align="center"
  37. sortable="custom"
  38. />
  39. <el-table-column
  40. prop="process"
  41. label="工序"
  42. width="100"
  43. align="center"
  44. />
  45. <el-table-column
  46. prop="orderStatus"
  47. label="单据状态"
  48. width="100"
  49. align="center"
  50. sortable="custom"
  51. >
  52. <template slot-scope="scope">
  53. <el-tag
  54. :type="getStatusType(scope.row.orderStatus)"
  55. size="mini"
  56. effect="plain"
  57. >
  58. {{ scope.row.orderStatus }}
  59. </el-tag>
  60. </template>
  61. </el-table-column>
  62. <el-table-column
  63. prop="schedule"
  64. label="进度"
  65. width="250"
  66. align="center"
  67. sortable="custom"
  68. >
  69. <template slot-scope="scope">
  70. <div
  71. class="progress-wrapper"
  72. @mouseenter="
  73. showTooltip(
  74. $event,
  75. (
  76. (scope.row.installedQuantity / scope.row.totalQuantity) *
  77. 100
  78. ).toFixed(2)
  79. )
  80. "
  81. @mouseleave="hideTooltip"
  82. >
  83. <div class="progress-container">
  84. <div class="progress-bar">
  85. <div class="custom-progress">
  86. <div
  87. class="progress-inner"
  88. :style="{
  89. width:
  90. Math.round(
  91. (scope.row.installedQuantity /
  92. scope.row.totalQuantity) *
  93. 100
  94. ) + '%',
  95. backgroundColor: getProgressColor(
  96. scope.row.orderStatus
  97. ),
  98. }"
  99. >
  100. <span
  101. class="progress-text"
  102. v-if="scope.row.installedQuantity > 0"
  103. >
  104. {{ scope.row.installedQuantity }}
  105. </span>
  106. </div>
  107. <span class="total-text">
  108. {{ scope.row.totalQuantity }}
  109. </span>
  110. </div>
  111. </div>
  112. </div>
  113. </div>
  114. </template>
  115. </el-table-column>
  116. <el-table-column
  117. prop="totalQuantity"
  118. label="计划量"
  119. width="75"
  120. align="center"
  121. />
  122. <el-table-column
  123. prop="installedQuantity"
  124. label="已安装数量"
  125. width="85"
  126. align="center"
  127. />
  128. <el-table-column
  129. prop="uninstalledQuantity"
  130. label="未安装数量"
  131. width="85"
  132. align="center"
  133. />
  134. <el-table-column
  135. prop="yesterdayQuantity"
  136. label="昨日完成量"
  137. width="95"
  138. align="center"
  139. />
  140. <el-table-column
  141. prop="todayQuantity"
  142. label="今日完成量"
  143. width="95"
  144. align="center"
  145. />
  146. <el-table-column
  147. prop="rate"
  148. label="完成率"
  149. width="100"
  150. align="center"
  151. sortable="custom"
  152. >
  153. <template slot-scope="scope">
  154. {{
  155. (
  156. (scope.row.installedQuantity / scope.row.totalQuantity) *
  157. 100
  158. ).toFixed(2) + "%"
  159. }}
  160. </template>
  161. </el-table-column>
  162. <el-table-column
  163. prop="producer"
  164. label="生产人员"
  165. width="100"
  166. align="center"
  167. />
  168. <el-table-column
  169. prop="remainingDays"
  170. label="距离完成时间还剩"
  171. width="130"
  172. align="center"
  173. >
  174. <template slot-scope="scope">
  175. <span
  176. :style="{
  177. color: scope.row.remainingTime < 0 ? '#F56C6C' : '',
  178. 'font-size': scope.row.remainingTime < 0 ? 'larger' : null,
  179. }"
  180. >
  181. {{
  182. scope.row.remainingTime > 0
  183. ? scope.row.remainingTime + "天"
  184. : "超期" + (Math.abs(scope.row.remainingTime) || "") + "天"
  185. }}
  186. </span>
  187. </template>
  188. </el-table-column>
  189. </el-table>
  190. </div>
  191. </el-card>
  192. </template>
  193. <script>
  194. import { GetDataByName, GetDataByNames } from "@/api/common";
  195. export default {
  196. name: "OrderProductionTable",
  197. data() {
  198. return {
  199. loading: false,
  200. localTableData: [],
  201. sortConfig: {
  202. prop: "",
  203. order: "",
  204. },
  205. tooltip: null,
  206. };
  207. },
  208. props: {
  209. updateTime: {
  210. type: String,
  211. required: true,
  212. },
  213. },
  214. computed: {
  215. tableData() {
  216. let data = this.localTableData.length;
  217. if (this.sortConfig.prop && this.sortConfig.order) {
  218. const { prop, order } = this.sortConfig;
  219. data = data.sort((a, b) => {
  220. let aValue = a[prop];
  221. let bValue = b[prop];
  222. if (prop === "rate") {
  223. aValue = (a.finished / a.total) * 100;
  224. bValue = (b.finished / b.total) * 100;
  225. }
  226. return order === "ascending"
  227. ? aValue > bValue
  228. ? 1
  229. : -1
  230. : aValue < bValue
  231. ? 1
  232. : -1;
  233. });
  234. }
  235. return data;
  236. },
  237. },
  238. created() {
  239. this.initData();
  240. },
  241. methods: {
  242. getStatusType(status) {
  243. switch (status) {
  244. case "已完成":
  245. return "success";
  246. case "接单驳回":
  247. return "warning";
  248. case "生产中":
  249. return "primary";
  250. case "已超期":
  251. return "danger";
  252. case "待接单":
  253. return "info";
  254. default:
  255. return "info";
  256. }
  257. },
  258. getProgressColor(status) {
  259. switch (status) {
  260. case "已完成":
  261. return "#67C23A";
  262. case "接单驳回":
  263. return "#E6A23C";
  264. case "生产中":
  265. return "#409EFF";
  266. case "已超期":
  267. return "#F56C6C";
  268. case "待接单":
  269. return "#909399";
  270. default:
  271. return "#909399";
  272. }
  273. },
  274. async initData() {
  275. try {
  276. await this.fetchTableData();
  277. } catch (error) {
  278. console.error("初始化数据失败:", error);
  279. }
  280. },
  281. async fetchTableData() {
  282. try {
  283. this.loading = true;
  284. await new Promise((resolve) => setTimeout(resolve, 1000));
  285. const send_data = {
  286. name: "getProductionSummaryByOrder",
  287. parammaps: {},
  288. };
  289. GetDataByName(send_data)
  290. .then((response) => {
  291. this.localTableData = response.data.list || [];
  292. })
  293. .catch((error) => {
  294. console.error("获取数据失败:", error);
  295. });
  296. this.$emit("data-loaded");
  297. } catch (error) {
  298. console.error("获取列表失败:", error);
  299. this.$message.error("获取列表失败");
  300. } finally {
  301. this.loading = false;
  302. }
  303. },
  304. handleSortChange({ prop, order }) {
  305. this.sortConfig = { prop, order };
  306. },
  307. showTooltip(event, percentage) {
  308. this.tooltip = document.createElement("div");
  309. this.tooltip.className = "progress-tooltip";
  310. this.tooltip.textContent = percentage + "%";
  311. document.body.appendChild(this.tooltip);
  312. const rect = event.target.getBoundingClientRect();
  313. const tooltipRect = this.tooltip.getBoundingClientRect();
  314. this.tooltip.style.left =
  315. rect.left + rect.width / 2 - tooltipRect.width / 2 + "px";
  316. this.tooltip.style.top = rect.top - tooltipRect.height - 8 + "px";
  317. setTimeout(() => {
  318. this.tooltip.classList.add("show");
  319. }, 0);
  320. },
  321. hideTooltip() {
  322. if (this.tooltip) {
  323. this.tooltip.classList.remove("show");
  324. setTimeout(() => {
  325. if (this.tooltip && this.tooltip.parentNode) {
  326. this.tooltip.parentNode.removeChild(this.tooltip);
  327. }
  328. this.tooltip = null;
  329. }, 200);
  330. }
  331. },
  332. },
  333. beforeDestroy() {
  334. this.hideTooltip();
  335. },
  336. };
  337. </script>
  338. <style lang="scss" scoped>
  339. .box-card {
  340. border-radius: 8px;
  341. box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.05);
  342. transition: all 0.3s ease;
  343. min-height: 200px;
  344. height: auto;
  345. .header-container {
  346. margin-bottom: 15px;
  347. display: flex;
  348. justify-content: space-between;
  349. align-items: center;
  350. .left {
  351. display: flex;
  352. align-items: center;
  353. min-width: 200px;
  354. .title {
  355. font-size: 13px;
  356. color: #333;
  357. }
  358. .update-time {
  359. margin-left: 8px;
  360. font-size: 13px;
  361. color: #666;
  362. }
  363. }
  364. .right {
  365. flex: 1;
  366. display: flex;
  367. justify-content: flex-start;
  368. padding-left: 40px;
  369. .filter-group {
  370. display: flex;
  371. align-items: center;
  372. }
  373. }
  374. }
  375. :deep(.el-card__body) {
  376. padding: 16px;
  377. transition: all 0.3s ease;
  378. }
  379. }
  380. .table-container {
  381. position: relative;
  382. padding-bottom: 0;
  383. }
  384. .progress-wrapper {
  385. padding: 6px 0;
  386. .progress-container {
  387. display: flex;
  388. align-items: center;
  389. justify-content: center;
  390. .progress-bar {
  391. width: 100%;
  392. padding: 0 20px;
  393. .custom-progress {
  394. width: 100%;
  395. height: 12px;
  396. background-color: #ebeef5;
  397. border-radius: 100px;
  398. overflow: visible;
  399. position: relative;
  400. .progress-inner {
  401. height: 100%;
  402. transition: all 0.3s ease;
  403. border-radius: 100px;
  404. position: relative;
  405. .progress-text {
  406. position: absolute;
  407. right: 6px;
  408. top: 50%;
  409. transform: translateY(-50%);
  410. color: #fff;
  411. font-size: 10px;
  412. line-height: 1;
  413. text-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  414. white-space: nowrap;
  415. }
  416. }
  417. .total-text {
  418. position: absolute;
  419. right: 6px;
  420. top: 50%;
  421. transform: translateY(-50%);
  422. color: #606266;
  423. font-size: 10px;
  424. line-height: 1;
  425. white-space: nowrap;
  426. }
  427. }
  428. }
  429. }
  430. }
  431. :deep(.el-table) {
  432. font-size: 12px;
  433. .el-table__header-wrapper {
  434. position: sticky;
  435. top: 0;
  436. z-index: 1;
  437. }
  438. .el-table__header th {
  439. padding: 8px 0;
  440. background-color: #f5f7fa;
  441. }
  442. .el-table__body td {
  443. padding: 8px 0;
  444. }
  445. .el-table__body tr:hover > td {
  446. background-color: #f5f7fa !important;
  447. }
  448. }
  449. :deep(.el-table__body-wrapper) {
  450. overflow-y: auto;
  451. &::-webkit-scrollbar {
  452. width: 6px;
  453. height: 6px;
  454. }
  455. &::-webkit-scrollbar-thumb {
  456. border-radius: 3px;
  457. background: #c0c4cc;
  458. }
  459. &::-webkit-scrollbar-track {
  460. border-radius: 3px;
  461. background: #f5f7fa;
  462. }
  463. }
  464. </style>
  465. <style lang="scss">
  466. .progress-tooltip {
  467. position: fixed;
  468. background: rgba(0, 0, 0, 0.8);
  469. color: #fff;
  470. padding: 4px 8px;
  471. border-radius: 4px;
  472. font-size: 12px;
  473. pointer-events: none;
  474. z-index: 9999;
  475. opacity: 0;
  476. transform: translateY(5px);
  477. transition: all 0.2s ease;
  478. &::after {
  479. content: "";
  480. position: absolute;
  481. bottom: -4px;
  482. left: 50%;
  483. transform: translateX(-50%);
  484. border-left: 4px solid transparent;
  485. border-right: 4px solid transparent;
  486. border-top: 4px solid rgba(0, 0, 0, 0.8);
  487. }
  488. &.show {
  489. opacity: 1;
  490. transform: translateY(0);
  491. }
  492. }
  493. </style>