学习目标

  • 了解MES系统的基本概念和功能。
  • 掌握MES在生产过程中的作用。

学习内容

  • MES是制造执行系统,用于在车间层面管理和控制生产过程。
  • 主要功能:生产调度、生产数据采集、质量管理、设备管理、库存管理等。
  • <template>
    <div>
    <h1>生产数据</h1>
    <table>
    <thead>
    <tr>
    <th>生产订单号</th>
    <th>生产进度</th>
    </tr>
    </thead>
    <tbody>
    <tr v-for="order in productionOrders" :key="order.id">
    <td>{{ order.id }}</td>
    <td>{{ order.progress }}%</td>
    </tr>
    </tbody>
    </table>
    </div>
    </template>

    <script>
    export default {
    data() {
    return {
    productionOrders: [
    { id: 'PO123', progress: 50 },
    { id: 'PO124', progress: 75 },
    { id: 'PO125', progress: 30 },
    ],
    };
    },
    };
    </script>