Commit 8080859c authored by zhengke's avatar zhengke

1

parent db7f0602
......@@ -49,7 +49,7 @@
</div>
<div class="col-3" v-if="msg.BelongType==4">
<q-select @input="resetSearch" dense clearable @filter="filterSubord" use-input filled option-value="Id" option-label="EmployeeName"
v-model="msg.CreateIds" :options="SubordList" emit-value map-options label="我下属的" />
v-model="myCreateIds" multiple :options="SubordList" emit-value map-options label="我下属的" />
</div>
</div>
</div>
......@@ -115,6 +115,7 @@
StuType:'',
CreateIds:''
},
myCreateIds:[],
dateArray: [], //日期数组
pageCount: 0,
//客户阶段状态列表
......@@ -160,7 +161,6 @@
//获取我下属的下拉数据
GetSubordList(){
GetPersonalDimension().then(res => {
console.log(res,'数据');
if(res.Code==1){
this.SubordList = res.Data;
this.AllSubordList = res.Data;
......@@ -210,6 +210,7 @@
this.msg.StartTime = "";
this.msg.EndTime = "";
}
this.msg.CreateIds = this.myCreateIds.toString();
this.loading = true;
getStudentPage(this.msg)
.then(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