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="activeName" class="demo-tabs" @tab-change="tabPositionChange">
|
|
|
|
|
<el-tab-pane label="结算规则维护" name="1"></el-tab-pane>
|
|
|
|
|
<el-tab-pane label="镀种规则维护" name="3"></el-tab-pane>
|
|
|
|
|
<el-tab-pane label="工序规则维护" name="2"></el-tab-pane>
|
|
|
|
|
|
|
|
|
|
</el-tabs>
|
|
|
|
|
<settlement v-if="activeName == '1'"></settlement>
|
|
|
|
|
<process v-if="activeName == '2'"></process>
|
|
|
|
|
<plate v-if="activeName == '3'"></plate>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</basic-container>
|
|
|
|
|
</template>
|
|
|
|
|
<script>
|
|
|
|
|
import settlement from './components/settlement.vue'
|
|
|
|
|
import process from './components/process.vue'
|
|
|
|
|
import plate from './components/plate.vue'
|
|
|
|
|
export default {
|
|
|
|
|
components: {
|
|
|
|
|
settlement,
|
|
|
|
|
process,
|
|
|
|
|
plate,
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
activeName: '1',
|
|
|
|
|
isOpen: false,
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|