Commit d0934e07 authored by zhengke's avatar zhengke

no message

parent bcb2662e
......@@ -33,6 +33,8 @@
<div v-for="(item,index) in headerList" :key="index" :class="selectTitle==item.id?'active':''"
@click="clickTitle(item)">{{item.title}}</div>
</div>
<!-- 管理配置 -->
<ManageConfiguration v-if="selectTitle==4"></ManageConfiguration>
<!-- 客户来源 -->
<customerSource v-if="selectTitle==1"></customerSource>
<!-- 分配规则 -->
......@@ -45,16 +47,22 @@
import customerSource from "./customerSource";
import distributionRules from "./distributionRules";
import rankConfig from "./rankConfig";
import ManageConfiguration from "./ManageConfiguration";
export default {
components: {
customerSource,
distributionRules,
rankConfig,
ManageConfiguration
},
data() {
return {
selectTitle: 1,
headerList: [{
selectTitle: 4,
headerList: [
{
title: '管理配置',
id: 4
},{
title: '客户来源',
id: 1
},
......
......@@ -45,6 +45,9 @@
display: flex;
align-items: center;
}
/deep/.el-radio-group{
margin-bottom: 0 !important;
}
</style>
<template>
<div class="customerManage">
......
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