|
@@ -255,6 +255,7 @@
|
|
|
import BarChart3 from './dashboard/BarChart3'
|
|
|
import PieChart from './dashboard/PieChart2'
|
|
|
import { ageSexDis, riskcode, bdNumDis, tenYearsCustomers} from "@/api/index";
|
|
|
+ import { getInfo} from "@/api/login";
|
|
|
export default {
|
|
|
name: "Index",
|
|
|
components: {
|
|
@@ -289,7 +290,7 @@
|
|
|
// 近10年有效客户数
|
|
|
barChartVistorsData:{
|
|
|
yAxisName:'数量:个',
|
|
|
- color:['#F29EC2','#7FE59A','#FAD889','#048EF3','#00C7FF'],
|
|
|
+ color:['#F29EC2','#7FE59A','#FAD889','#048ef3','#00C7FF'],
|
|
|
xAxisData:[],
|
|
|
seriesData:[]
|
|
|
},
|
|
@@ -356,27 +357,7 @@
|
|
|
}
|
|
|
],
|
|
|
// 业绩归属选项
|
|
|
- policybelongArr:[
|
|
|
- {
|
|
|
- value: '00',
|
|
|
- label: '总部团险个单业务'
|
|
|
- },{
|
|
|
- value: '01',
|
|
|
- label: '上分团险个单业务'
|
|
|
- },{
|
|
|
- value: '02',
|
|
|
- label: '个险渠道'
|
|
|
- },{
|
|
|
- value: '03',
|
|
|
- label: '银保渠道'
|
|
|
- },{
|
|
|
- value: '05',
|
|
|
- label: '网销渠道'
|
|
|
- },{
|
|
|
- value: '06',
|
|
|
- label: '健康险事业部'
|
|
|
- }
|
|
|
- ],
|
|
|
+ policybelongArr:[],
|
|
|
conditionData:{
|
|
|
education:'',
|
|
|
},
|
|
@@ -395,10 +376,10 @@
|
|
|
}
|
|
|
},
|
|
|
isFull:false,
|
|
|
+ deptCode:'',
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
-
|
|
|
},
|
|
|
mounted() {
|
|
|
var screenWidth = document.body.clientWidth;
|
|
@@ -408,8 +389,80 @@
|
|
|
this.getAgeSexDis();
|
|
|
this.getBdNumDis();
|
|
|
this.getTenYearsCustomers();
|
|
|
+ this.getUserInfo();
|
|
|
},
|
|
|
methods: {
|
|
|
+ getPolicybelongArr( deptCode){
|
|
|
+ console.log("-------------");
|
|
|
+ console.log(deptCode);
|
|
|
+ console.log("-------------");
|
|
|
+
|
|
|
+ if(deptCode=='01'){
|
|
|
+ this.policybelongArr = [
|
|
|
+ {
|
|
|
+ value: '01',
|
|
|
+ label: '上分团险个单业务'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }else if(deptCode=='02'){
|
|
|
+ this.policybelongArr = [
|
|
|
+ {
|
|
|
+ value: '02',
|
|
|
+ label: '个险渠道'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }else if(deptCode=='03'){
|
|
|
+ this.policybelongArr = [
|
|
|
+ {
|
|
|
+ value: '03',
|
|
|
+ label: '银保渠道'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }else if(deptCode=='05'){
|
|
|
+ this.policybelongArr = [
|
|
|
+ {
|
|
|
+ value: '05',
|
|
|
+ label: '网销渠道'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }else if(deptCode=='06'){
|
|
|
+ this.policybelongArr = [
|
|
|
+ {
|
|
|
+ value: '06',
|
|
|
+ label: '健康险事业部'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }else if(deptCode=='07'){
|
|
|
+ this.policybelongArr = [
|
|
|
+ {
|
|
|
+ value: '07',
|
|
|
+ label: '经代渠道'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }else{
|
|
|
+ this.policybelongArr = [
|
|
|
+ {
|
|
|
+ value: '00',
|
|
|
+ label: '总部团险个单业务'
|
|
|
+ },{
|
|
|
+ value: '01',
|
|
|
+ label: '上分团险个单业务'
|
|
|
+ },{
|
|
|
+ value: '02',
|
|
|
+ label: '个险渠道'
|
|
|
+ },{
|
|
|
+ value: '03',
|
|
|
+ label: '银保渠道'
|
|
|
+ },{
|
|
|
+ value: '05',
|
|
|
+ label: '网销渠道'
|
|
|
+ },{
|
|
|
+ value: '06',
|
|
|
+ label: '健康险事业部'
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ },
|
|
|
_$ (el) {
|
|
|
try {
|
|
|
var item = document.querySelectorAll(el);
|
|
@@ -515,6 +568,16 @@
|
|
|
}
|
|
|
);
|
|
|
},
|
|
|
+ getUserInfo(){
|
|
|
+ let that = this;
|
|
|
+ getInfo().then(response => {
|
|
|
+ console.log("response.deptCode"+response.deptCode);
|
|
|
+ that.deptCode =response.deptCode;
|
|
|
+ this.getPolicybelongArr(response.deptCode)
|
|
|
+
|
|
|
+ }
|
|
|
+ );
|
|
|
+ },
|
|
|
}
|
|
|
};
|
|
|
</script>
|