This commit is contained in:
qsh
2024-05-16 16:33:20 +08:00
parent 2468a0c8a5
commit 1ec084debe
17 changed files with 542 additions and 88 deletions

View File

@@ -0,0 +1,21 @@
<template>
<div>
<el-tabs v-model="tabIndex" type="border-card">
<el-tab-pane label="线索管理" :name="0">
<BSClue v-if="tabIndex == 0" />
</el-tab-pane>
<el-tab-pane label="销售提成" :name="10">
<BSSalerComission v-if="tabIndex == 10" />
</el-tab-pane>
</el-tabs>
</div>
</template>
<script setup name="GeneralSetting">
import BSClue from './Comp/BSClue.vue'
import BSSalerComission from './Comp/BSSalerComission.vue'
const tabIndex = ref(0)
</script>
<style lang="scss" scoped></style>