Commit 8080859c authored by zhengke's avatar zhengke

1

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