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.
34 lines
908 B
34 lines
908 B
![]()
1 year ago
|
<template>
|
||
|
<div>
|
||
|
<el-tabs v-model="tabIndex" type="border-card">
|
||
|
<el-tab-pane label="线索属性" :name="0">
|
||
|
<FieldClue />
|
||
|
</el-tab-pane>
|
||
|
<el-tab-pane label="成交属性" :name="1">
|
||
|
<FieldOrder />
|
||
|
</el-tab-pane>
|
||
|
<el-tab-pane label="线索获取规则" :name="2">
|
||
|
<ClueGet />
|
||
|
</el-tab-pane>
|
||
|
<el-tab-pane label="线索分配规则" :name="3">
|
||
|
<ClueSend />
|
||
|
</el-tab-pane>
|
||
|
<el-tab-pane label="消息通知" :name="4">
|
||
|
<MsgSend />
|
||
|
</el-tab-pane>
|
||
|
</el-tabs>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup name="ClueSetting">
|
||
|
import FieldClue from './Comp/FieldClue.vue'
|
||
|
import FieldOrder from './Comp/FieldOrder.vue'
|
||
|
import ClueGet from './Comp/ClueGet.vue'
|
||
|
import ClueSend from './Comp/ClueSend.vue'
|
||
|
import MsgSend from './Comp/MsgSend.vue'
|
||
|
|
||
|
const tabIndex = ref(0)
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped></style>
|