排产看板样式优化

dev-scheduling
zhangdi 1 day ago
parent e64b0867b2
commit 58d24db1b2
  1. 2
      src/router/page/index.js
  2. 1949
      src/views/productionSchedulingPlan/schedulingDashboard/container.vue
  3. 1936
      src/views/productionSchedulingPlan/schedulingDashboard/index.vue
  4. 15
      src/views/productionSchedulingPlan/schedulingDashboard/indexMenu.vue

@ -72,7 +72,7 @@ export default [
}, },
{ {
path: '/SCHEDULING_DASHBOARD', path: '/SCHEDULING_DASHBOARD',
component: () => import(/* webpackChunkName: "page" */ '@/views/productionSchedulingPlan/schedulingDashboard/index.vue'), component: () => import(/* webpackChunkName: "page" */ '@/views/productionSchedulingPlan/schedulingDashboard/container.vue'),
name: '排产看板', name: '排产看板',
meta: { meta: {
keepAlive: true, keepAlive: true,

@ -0,0 +1,15 @@
<template>
<basic-container>
<dashboardIndex></dashboardIndex>
</basic-container>
</template>
<script>
import dashboardIndex from "./container.vue";
export default {
components: { dashboardIndex },
data() {
return {};
},
methods: {}
};
</script>
Loading…
Cancel
Save