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 @@ ...@@ -21,6 +21,8 @@
<customer-Field v-if="tab == 'field'"></customer-Field> <customer-Field v-if="tab == 'field'"></customer-Field>
<clue-rule v-if="tab == 'clue'"></clue-rule> <clue-rule v-if="tab == 'clue'"></clue-rule>
<customer-phase v-if="tab == 'phase'"></customer-phase> <customer-phase v-if="tab == 'phase'"></customer-phase>
<customer-label v-if="tab == 'label'"></customer-label>
</div> </div>
</q-page> </q-page>
</div> </div>
...@@ -30,6 +32,7 @@ ...@@ -30,6 +32,7 @@
import customerField from './components/customerField.vue' import customerField from './components/customerField.vue'
import clueRule from './components/clueRule.vue' import clueRule from './components/clueRule.vue'
import customerPhase from './components/customerPhase.vue' import customerPhase from './components/customerPhase.vue'
import customerlabel from './components/customerlabel.vue'
import router from '@/router/index' import router from '@/router/index'
import { import {
...@@ -42,7 +45,8 @@ export default defineComponent({ ...@@ -42,7 +45,8 @@ export default defineComponent({
components: { components: {
customerField, customerField,
clueRule, clueRule,
customerPhase customerPhase,
customerlabel
}, },
setup() { setup() {
let tab = ref<string>('phase') 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