123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530 |
- <template>
- <el-card class="box-card">
- <div class="header-container">
- <div class="left">
- <span class="title">生产概况</span>
- <span class="update-time" v-if="updateTime">{{ updateTime }}</span>
- </div>
- <div class="right">
- <div class="filter-group">
- <slot name="query-buttons"></slot>
- </div>
- </div>
- </div>
- <div class="table-container">
- <el-table
- v-loading="loading"
- :data="localTableData"
- style="width: 100%"
- border
- size="small"
- :height="localTableData.length > 10 ? 450 : null"
- :header-cell-style="{ background: '#f5f7fa' }"
- @sort-change="handleSortChange"
- >
- <el-table-column type="index" label="序号" width="50" align="center" />
- <el-table-column
- prop="orderCode"
- label="订单编号"
- width="110"
- align="center"
- />
- <el-table-column
- prop="goodsName"
- label="货品名称"
- min-width="110"
- align="center"
- sortable="custom"
- />
- <el-table-column
- prop="process"
- label="工序"
- width="100"
- align="center"
- />
- <el-table-column
- prop="orderStatus"
- label="单据状态"
- width="100"
- align="center"
- sortable="custom"
- >
- <template slot-scope="scope">
- <el-tag
- :type="getStatusType(scope.row.orderStatus)"
- size="mini"
- effect="plain"
- >
- {{ scope.row.orderStatus }}
- </el-tag>
- </template>
- </el-table-column>
- <el-table-column
- prop="schedule"
- label="进度"
- width="250"
- align="center"
- sortable="custom"
- >
- <template slot-scope="scope">
- <div
- class="progress-wrapper"
- @mouseenter="
- showTooltip(
- $event,
- (
- (scope.row.installedQuantity / scope.row.totalQuantity) *
- 100
- ).toFixed(2)
- )
- "
- @mouseleave="hideTooltip"
- >
- <div class="progress-container">
- <div class="progress-bar">
- <div class="custom-progress">
- <div
- class="progress-inner"
- :style="{
- width:
- Math.round(
- (scope.row.installedQuantity /
- scope.row.totalQuantity) *
- 100
- ) + '%',
- backgroundColor: getProgressColor(
- scope.row.orderStatus
- ),
- }"
- >
- <span
- class="progress-text"
- v-if="scope.row.installedQuantity > 0"
- >
- {{ scope.row.installedQuantity }}
- </span>
- </div>
- <span class="total-text">
- {{ scope.row.totalQuantity }}
- </span>
- </div>
- </div>
- </div>
- </div>
- </template>
- </el-table-column>
- <el-table-column
- prop="totalQuantity"
- label="计划量"
- width="75"
- align="center"
- />
- <el-table-column
- prop="installedQuantity"
- label="已安装数量"
- width="85"
- align="center"
- />
- <el-table-column
- prop="uninstalledQuantity"
- label="未安装数量"
- width="85"
- align="center"
- />
- <el-table-column
- prop="yesterdayQuantity"
- label="昨日完成量"
- width="95"
- align="center"
- />
- <el-table-column
- prop="todayQuantity"
- label="今日完成量"
- width="95"
- align="center"
- />
- <el-table-column
- prop="rate"
- label="完成率"
- width="100"
- align="center"
- sortable="custom"
- >
- <template slot-scope="scope">
- {{
- (
- (scope.row.installedQuantity / scope.row.totalQuantity) *
- 100
- ).toFixed(2) + "%"
- }}
- </template>
- </el-table-column>
- <el-table-column
- prop="producer"
- label="生产人员"
- width="100"
- align="center"
- />
- <el-table-column
- prop="remainingDays"
- label="距离完成时间还剩"
- width="130"
- align="center"
- >
- <template slot-scope="scope">
- <span
- :style="{
- color: scope.row.remainingTime < 0 ? '#F56C6C' : '',
- 'font-size': scope.row.remainingTime < 0 ? 'larger' : null,
- }"
- >
- {{
- scope.row.remainingTime > 0
- ? scope.row.remainingTime + "天"
- : "超期" + (Math.abs(scope.row.remainingTime) || "") + "天"
- }}
- </span>
- </template>
- </el-table-column>
- </el-table>
- </div>
- </el-card>
- </template>
- <script>
- import { GetDataByName, GetDataByNames } from "@/api/common";
- export default {
- name: "OrderProductionTable",
- data() {
- return {
- loading: false,
- localTableData: [],
- sortConfig: {
- prop: "",
- order: "",
- },
- tooltip: null,
- };
- },
- props: {
- updateTime: {
- type: String,
- required: true,
- },
- },
- computed: {
- tableData() {
- let data = this.localTableData.length;
- if (this.sortConfig.prop && this.sortConfig.order) {
- const { prop, order } = this.sortConfig;
- data = data.sort((a, b) => {
- let aValue = a[prop];
- let bValue = b[prop];
- if (prop === "rate") {
- aValue = (a.finished / a.total) * 100;
- bValue = (b.finished / b.total) * 100;
- }
- return order === "ascending"
- ? aValue > bValue
- ? 1
- : -1
- : aValue < bValue
- ? 1
- : -1;
- });
- }
- return data;
- },
- },
- created() {
- this.initData();
- },
- methods: {
- getStatusType(status) {
- switch (status) {
- case "已完成":
- return "success";
- case "接单驳回":
- return "warning";
- case "生产中":
- return "primary";
- case "已超期":
- return "danger";
- case "待接单":
- return "info";
- default:
- return "info";
- }
- },
- getProgressColor(status) {
- switch (status) {
- case "已完成":
- return "#67C23A";
- case "接单驳回":
- return "#E6A23C";
- case "生产中":
- return "#409EFF";
- case "已超期":
- return "#F56C6C";
- case "待接单":
- return "#909399";
- default:
- return "#909399";
- }
- },
- async initData() {
- try {
- await this.fetchTableData();
- } catch (error) {
- console.error("初始化数据失败:", error);
- }
- },
- async fetchTableData() {
- try {
- this.loading = true;
- await new Promise((resolve) => setTimeout(resolve, 1000));
- const send_data = {
- name: "getProductionSummaryByOrder",
- parammaps: {},
- };
- GetDataByName(send_data)
- .then((response) => {
- this.localTableData = response.data.list || [];
- })
- .catch((error) => {
- console.error("获取数据失败:", error);
- });
- this.$emit("data-loaded");
- } catch (error) {
- console.error("获取列表失败:", error);
- this.$message.error("获取列表失败");
- } finally {
- this.loading = false;
- }
- },
- handleSortChange({ prop, order }) {
- this.sortConfig = { prop, order };
- },
- showTooltip(event, percentage) {
- this.tooltip = document.createElement("div");
- this.tooltip.className = "progress-tooltip";
- this.tooltip.textContent = percentage + "%";
- document.body.appendChild(this.tooltip);
- const rect = event.target.getBoundingClientRect();
- const tooltipRect = this.tooltip.getBoundingClientRect();
- this.tooltip.style.left =
- rect.left + rect.width / 2 - tooltipRect.width / 2 + "px";
- this.tooltip.style.top = rect.top - tooltipRect.height - 8 + "px";
- setTimeout(() => {
- this.tooltip.classList.add("show");
- }, 0);
- },
- hideTooltip() {
- if (this.tooltip) {
- this.tooltip.classList.remove("show");
- setTimeout(() => {
- if (this.tooltip && this.tooltip.parentNode) {
- this.tooltip.parentNode.removeChild(this.tooltip);
- }
- this.tooltip = null;
- }, 200);
- }
- },
- },
- beforeDestroy() {
- this.hideTooltip();
- },
- };
- </script>
- <style lang="scss" scoped>
- .box-card {
- border-radius: 8px;
- box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.05);
- transition: all 0.3s ease;
- min-height: 200px;
- height: auto;
- .header-container {
- margin-bottom: 15px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- .left {
- display: flex;
- align-items: center;
- min-width: 200px;
- .title {
- font-size: 13px;
- color: #333;
- }
- .update-time {
- margin-left: 8px;
- font-size: 13px;
- color: #666;
- }
- }
- .right {
- flex: 1;
- display: flex;
- justify-content: flex-start;
- padding-left: 40px;
- .filter-group {
- display: flex;
- align-items: center;
- }
- }
- }
- :deep(.el-card__body) {
- padding: 16px;
- transition: all 0.3s ease;
- }
- }
- .table-container {
- position: relative;
- padding-bottom: 0;
- }
- .progress-wrapper {
- padding: 6px 0;
- .progress-container {
- display: flex;
- align-items: center;
- justify-content: center;
- .progress-bar {
- width: 100%;
- padding: 0 20px;
- .custom-progress {
- width: 100%;
- height: 12px;
- background-color: #ebeef5;
- border-radius: 100px;
- overflow: visible;
- position: relative;
- .progress-inner {
- height: 100%;
- transition: all 0.3s ease;
- border-radius: 100px;
- position: relative;
- .progress-text {
- position: absolute;
- right: 6px;
- top: 50%;
- transform: translateY(-50%);
- color: #fff;
- font-size: 10px;
- line-height: 1;
- text-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
- white-space: nowrap;
- }
- }
- .total-text {
- position: absolute;
- right: 6px;
- top: 50%;
- transform: translateY(-50%);
- color: #606266;
- font-size: 10px;
- line-height: 1;
- white-space: nowrap;
- }
- }
- }
- }
- }
- :deep(.el-table) {
- font-size: 12px;
- .el-table__header-wrapper {
- position: sticky;
- top: 0;
- z-index: 1;
- }
- .el-table__header th {
- padding: 8px 0;
- background-color: #f5f7fa;
- }
- .el-table__body td {
- padding: 8px 0;
- }
- .el-table__body tr:hover > td {
- background-color: #f5f7fa !important;
- }
- }
- :deep(.el-table__body-wrapper) {
- overflow-y: auto;
- &::-webkit-scrollbar {
- width: 6px;
- height: 6px;
- }
- &::-webkit-scrollbar-thumb {
- border-radius: 3px;
- background: #c0c4cc;
- }
- &::-webkit-scrollbar-track {
- border-radius: 3px;
- background: #f5f7fa;
- }
- }
- </style>
- <style lang="scss">
- .progress-tooltip {
- position: fixed;
- background: rgba(0, 0, 0, 0.8);
- color: #fff;
- padding: 4px 8px;
- border-radius: 4px;
- font-size: 12px;
- pointer-events: none;
- z-index: 9999;
- opacity: 0;
- transform: translateY(5px);
- transition: all 0.2s ease;
- &::after {
- content: "";
- position: absolute;
- bottom: -4px;
- left: 50%;
- transform: translateX(-50%);
- border-left: 4px solid transparent;
- border-right: 4px solid transparent;
- border-top: 4px solid rgba(0, 0, 0, 0.8);
- }
- &.show {
- opacity: 1;
- transform: translateY(0);
- }
- }
- </style>
|