factoryPlan.vue 390 B

123456789101112131415161718
  1. <template>
  2. <div>
  3. <homeIndex :timeDimensionPlanType="3" :cacheKeyUrl="cacheKeyUrl" :isLineNumbre="true" :isImport="true"></homeIndex>
  4. </div>
  5. </template>
  6. <script>
  7. import homeIndex from './index.vue';
  8. export default {
  9. components: { homeIndex },
  10. name: 'factoryPlan',
  11. data() {
  12. return {
  13. cacheKeyUrl: '9409b6c7-aps-factoryPlan'
  14. };
  15. }
  16. };
  17. </script>