You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
798 B
29 lines
798 B
<template> |
|
<basic-container> |
|
<!-- <el-tabs v-model="activeName" @tab-click="handleClick"> |
|
<el-tab-pane label="厂内过程项" name="1"></el-tab-pane> |
|
<el-tab-pane label="外协过程项" name="2"></el-tab-pane> |
|
|
|
</el-tabs> --> |
|
<inPlantMaintenance v-if="activeName == '1'"></inPlantMaintenance> |
|
<!-- <oemMaintenance v-if="activeName == '2'"></oemMaintenance> --> |
|
</basic-container> |
|
</template> |
|
<script> |
|
import inPlantMaintenance from './components/inPlantMaintenance.vue' |
|
import oemMaintenance from './components/oemMaintenance.vue' |
|
export default { |
|
components: { |
|
inPlantMaintenance, |
|
oemMaintenance |
|
}, |
|
data() { |
|
return { |
|
activeName: '1' |
|
} |
|
}, |
|
methods: { |
|
|
|
} |
|
} |
|
</script> |