dyy 3年前
コミット
c95cc87389
2個のファイルの変更7行の追加7行の削除
  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 ファイルの表示

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




+ 6
- 6
Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/StuInfoFreshApi.cs ファイルの表示

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


var entity = stuInfoFreshIBLL.GetStuInfoFreshEntity(model.ID); 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)) if (!string.IsNullOrEmpty(model.Photo))
{ {


読み込み中…
キャンセル
保存