dyy hace 3 años
padre
commit
c95cc87389
Se han modificado 2 ficheros con 7 adiciones y 7 borrados
  1. +1
    -1
      Learun.Framework.Ultimate V7/Learun.Application.Mobile/www/pages/welcome/welcome.js
  2. +6
    -6
      Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/StuInfoFreshApi.cs

+ 1
- 1
Learun.Framework.Ultimate V7/Learun.Application.Mobile/www/pages/welcome/welcome.js Ver fichero

@@ -249,7 +249,7 @@
learun.layer.loading(false);
if (data) {
learun.layer.toast('保存成功');
location.reload();
learun.nav.closeCurrent();
}
});



+ 6
- 6
Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/StuInfoFreshApi.cs Ver fichero

@@ -168,12 +168,12 @@ namespace Learun.Application.WebApi.Modules
var model = this.GetReqData<StuInfoFreshModel>();

var entity = stuInfoFreshIBLL.GetStuInfoFreshEntity(model.ID);
entity.RegionNo = model.RegionNo;
entity.FamilyAddress = model.FamilyAddress;
entity.telephone = model.telephone;
entity.BankCard = model.BankCard;
entity.BankLocation = model.BankLocation;
entity.DepositBank = model.DepositBank;
entity.RegionNo = model?.RegionNo;
entity.FamilyAddress = model?.FamilyAddress;
entity.telephone = model?.telephone;
entity.BankCard = model?.BankCard;
entity.BankLocation = model?.BankLocation;
entity.DepositBank = model?.DepositBank;

if (!string.IsNullOrEmpty(model.Photo))
{


Cargando…
Cancelar
Guardar