浏览代码

修改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 = "";


正在加载...
取消
保存