Commit 6d5d8738 authored by 黄奎's avatar 黄奎
parents d8b59590 39240e26
...@@ -69,6 +69,10 @@ ...@@ -69,6 +69,10 @@
height: 80px; height: 80px;
position: relative; position: relative;
} }
.stage_value .q-field__native span{
width:100%;
overflow:hidden;
}
</style> </style>
<template> <template>
<div> <div>
......
...@@ -233,9 +233,7 @@ ...@@ -233,9 +233,7 @@
</q-select> </q-select>
</div> </div>
<div class="col-3"> <div class="col-3">
<q-select @input=" <q-select @input="getShaixuanFrom()" :dense="false" clearable filled option-value="Id" option-label="Name" v-model="msg.CreateType"
(msg.StuSourceId = ''), (msg.StuChannelId = ''), resetSearch()
" :dense="false" clearable filled option-value="Id" option-label="Name" v-model="msg.CreateType"
:options="customFromList" emit-value map-options label="客户来源" /> :options="customFromList" emit-value map-options label="客户来源" />
</div> </div>
<div class="col-3" v-if="msg.CreateType == 1"> <div class="col-3" v-if="msg.CreateType == 1">
...@@ -792,7 +790,6 @@ ...@@ -792,7 +790,6 @@
this.GetStuChannelList(); this.GetStuChannelList();
this.GetCustomerList(); this.GetCustomerList();
this.getEmployeeList(); this.getEmployeeList();
this.getStudentDorpDown();
}, },
methods: { methods: {
//获取收客渠道 //获取收客渠道
...@@ -869,12 +866,22 @@ ...@@ -869,12 +866,22 @@
); );
}); });
}, },
//筛选客户来源
getShaixuanFrom(){
this.msg.StuSourceId = ''
this.msg.StuChannelId = ''
if(this.msg.CreateType==4){
this.getStudentDorpDown();
}
this.resetSearch()
},
//获取转介人下拉 //获取转介人下拉
getStudentDorpDown() { getStudentDorpDown() {
getStudentDorpDownList().then(res => { getStudentDorpDownList().then(res => {
if (res.Code == 1) { if (res.Code == 1) {
this.TransListData = res.Data; this.TransListData = res.Data;
this.MyTransListData = res.Data; this.MyTransListData = res.Data;
console.log(res,'数据');
} }
}); });
}, },
......
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