Commit 2de1e572 authored by Mac's avatar Mac

1

parent 35bb17fb
<template>
<div >
标签
</div>
</template>
<script lang="ts">
import {
defineComponent,
} from 'vue'
export default defineComponent({
setup() {
return {
}
}
})
</script>
......@@ -21,6 +21,8 @@
<customer-Field v-if="tab == 'field'"></customer-Field>
<clue-rule v-if="tab == 'clue'"></clue-rule>
<customer-phase v-if="tab == 'phase'"></customer-phase>
<customer-label v-if="tab == 'label'"></customer-label>
</div>
</q-page>
</div>
......@@ -30,6 +32,7 @@
import customerField from './components/customerField.vue'
import clueRule from './components/clueRule.vue'
import customerPhase from './components/customerPhase.vue'
import customerlabel from './components/customerlabel.vue'
import router from '@/router/index'
import {
......@@ -42,7 +45,8 @@ export default defineComponent({
components: {
customerField,
clueRule,
customerPhase
customerPhase,
customerlabel
},
setup() {
let tab = ref<string>('phase')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment