Commit a428655d authored by zhengke's avatar zhengke

2

parent 13922b0b
......@@ -269,7 +269,8 @@
getStudentInfo, //获取学员客户信息
queryStuStageList, //获取客户阶段列表
saveStudent, //保存学员信息
GetStudentTypeList
GetStudentTypeList,
getStudentDorpDownList
} from '../../../api/school/index';
import {
getGuestBasicsEnumList,
......@@ -343,6 +344,7 @@
customFromList: [], //客户来源
customTypeList: [], //客户类型
customList: [],
TransListData:[], //转介人数据
checkMsg: {
StuId: 0,
StuTel: '',
......@@ -361,6 +363,7 @@
this.getCustomFrom();
this.GetCustomerList();
this.getCustomTypeList();
this.getStudentDorpDown();
if (this.saveObj && this.saveObj.StuId > 0) {
this.customMsg.StuId = this.saveObj.StuId;
this.checkMsg.StuId = this.saveObj.StuId;
......@@ -496,6 +499,15 @@
}
})
},
//获取转介人下拉
getStudentDorpDown(){
getStudentDorpDownList().then(res => {
console.log(res,'数据');
if (res.Code == 1) {
this.TransListData = res.Data;
}
})
},
queryStuInfo() {
getStudentInfo({
StuId: this.customMsg.StuId
......
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