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" @tab-change="tabPositionChange">
|
|
|
|
|
<el-tab-pane label="物料需求申报" name="1"></el-tab-pane>
|
|
|
|
|
<el-tab-pane label="化验含量" name="2"></el-tab-pane>
|
|
|
|
|
<el-tab-pane label="添加量申报" name="3"></el-tab-pane>
|
|
|
|
|
</el-tabs>
|
|
|
|
|
<materialRequirements v-if="tabPosition=='1'"></materialRequirements>
|
|
|
|
|
<assayedContent v-if="tabPosition=='2'"></assayedContent>
|
|
|
|
|
<addRequirements v-if="tabPosition=='3'"></addRequirements>
|
|
|
|
|
</basic-container>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import addRequirements from './components/coatingMater/addRequirements.vue'
|
|
|
|
|
import assayedContent from './components/coatingMater/assayedContent.vue'
|
|
|
|
|
import materialRequirements from './components/coatingMater/materialRequirements.vue'
|
|
|
|
|
export default {
|
|
|
|
|
components: {
|
|
|
|
|
addRequirements,
|
|
|
|
|
assayedContent,
|
|
|
|
|
materialRequirements
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
searchForm: {},
|
|
|
|
|
tabPosition: '1',
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
mounted() {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
|
|
tabPositionChange() {
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style></style>
|