Commit a428655d authored by zhengke's avatar zhengke

2

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