소스 검색

修改api学生信息照片接口

新疆警官学校中职
liangkun 2 년 전
부모
커밋
d6891792c8
1개의 변경된 파일6개의 추가작업 그리고 1개의 파일을 삭제
  1. +6
    -1
      Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/Arrangelesson.cs

+ 6
- 1
Learun.Framework.Ultimate V7/Learun.Application.WebApi/Modules/Arrangelesson.cs 파일 보기

@@ -180,7 +180,12 @@ namespace Learun.Application.WebApi.Modules
var annfile = annexesFileIbll.GetEntityByFolderId(item.Photo);
if (annfile != null && annfile.F_FilePath != null)
{
item.Photo = webrootpath + item.Photo.Substring(item.Photo.IndexOf("Resource") - 1);
if (annfile.F_FilePath.IndexOf("Resource") != -1)
{
item.Photo = webrootpath + annfile.F_FilePath.Substring(annfile.F_FilePath.IndexOf("Resource") - 1);
}
else
item.Photo = "";
}
else
item.Photo = "";


불러오는 중...
취소
저장