Commit 18673a40 authored by zhengke's avatar zhengke

修改

parent 9a158669
......@@ -233,9 +233,7 @@
</q-select>
</div>
<div class="col-3">
<q-select @input="
(msg.StuSourceId = ''), (msg.StuChannelId = ''), resetSearch()
" :dense="false" clearable filled option-value="Id" option-label="Name" v-model="msg.CreateType"
<q-select @input="getShaixuanFrom()" :dense="false" clearable filled option-value="Id" option-label="Name" v-model="msg.CreateType"
:options="customFromList" emit-value map-options label="客户来源" />
</div>
<div class="col-3" v-if="msg.CreateType == 1">
......@@ -792,7 +790,6 @@
this.GetStuChannelList();
this.GetCustomerList();
this.getEmployeeList();
this.getStudentDorpDown();
},
methods: {
//获取收客渠道
......@@ -869,12 +866,22 @@
);
});
},
//筛选客户来源
getShaixuanFrom(){
this.msg.StuSourceId = ''
this.msg.StuChannelId = ''
if(this.msg.CreateType==4){
this.getStudentDorpDown();
}
this.resetSearch()
},
//获取转介人下拉
getStudentDorpDown() {
getStudentDorpDownList().then(res => {
if (res.Code == 1) {
this.TransListData = 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