Commit ca7867ee authored by 黄奎's avatar 黄奎

页面修改

parent 026cc2b1
......@@ -127,6 +127,15 @@ namespace Edu.Module.User
new WhereHelper(nameof(RB_Student_ViewModel.Group_Id),model.Group_Id),
new WhereHelper(nameof(RB_Student_ViewModel.StuTel),model.StuTel),
};
if (model.StuId > 0)
{
where.Add(new WhereHelper()
{
FiledName = nameof(RB_Student_ViewModel.StuId),
FiledValue = model.StuId,
OperatorEnum = OperatorEnum.NotEqual
});
}
return studentRepository.Exists(where);
}
......
......@@ -793,7 +793,36 @@ namespace Edu.WebApi.Controllers.User
{
var StuId = base.ParmJObj.GetInt("StuId", 0);
var extModel = studentModule.GetStudentModule(StuId);
return ApiResult.Success(data: extModel);
var obj = new
{
extModel.StuId,
extModel.StuName,
extModel.StuTel,
extModel.StuIcon,
extModel.StuSex,
extModel.StuBirth,
extModel.ProviceId,
extModel.CityId,
extModel.AreaId,
extModel.IsDisable,
extModel.StuStatus,
extModel.Interest,
extModel.JapanBaseInfo,
extModel.CustomerId,
extModel.StuProfession,
extModel.StuEducation,
StuEducationName = extModel.StuEducation.ToName(),
extModel.StuPurpose,
StuPurposeName = extModel.StuPurpose.ToName(),
extModel.StuSource,
StuSourceName = extModel.StuSource.ToName(),
extModel.StuAddress,
extModel.StuContract,
extModel.StuContractMobile,
extModel.StuIDCard,
extModel.StuIDCardAddress,
};
return ApiResult.Success(data: obj);
}
/// <summary>
......
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