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.
|
|
|
|
<template>
|
|
|
|
|
<basic-container>
|
|
|
|
|
<!-- 定期类检查项配置 -->
|
|
|
|
|
<el-tabs v-model="tabPosition" class="demo-tabs">
|
|
|
|
|
<el-tab-pane label="槽液检查" name="bathInspection"></el-tab-pane>
|
|
|
|
|
<el-tab-pane label="设备检查" name="deviceInspection"></el-tab-pane>
|
|
|
|
|
</el-tabs>
|
|
|
|
|
|
|
|
|
|
<periodicalBatch v-if="tabPosition == 'bathInspection'"></periodicalBatch>
|
|
|
|
|
<periodicalClassDevice v-if="tabPosition == 'deviceInspection'"></periodicalClassDevice>
|
|
|
|
|
</basic-container>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import periodicalClassDevice from './components/periodicalClassDeviceDialog.vue';
|
|
|
|
|
import periodicalBatch from './components/periodicalBatch.vue';
|
|
|
|
|
export default {
|
|
|
|
|
components: { periodicalClassDevice, periodicalBatch },
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
moldAddMore: false,
|
|
|
|
|
tabPosition: 'bathInspection',
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
mounted() {},
|
|
|
|
|
methods: {},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style></style>
|