Commit 13c3c02d authored by 黄奎's avatar 黄奎

页面修改

parent 66957ecb
...@@ -81,5 +81,30 @@ namespace Edu.Common ...@@ -81,5 +81,30 @@ namespace Edu.Common
} }
return list; return list;
} }
/// <summary>
/// 字符串转列表
/// </summary>
/// <param name="value"></param>
/// <returns></returns>
public static List<string> StringToFileList(object value)
{
List<string> list = new List<string>();
if (value != null && !string.IsNullOrEmpty(value.ToString()))
{
var tempArray = value.ToString().Split(',');
if (tempArray != null && tempArray.Length > 0)
{
foreach (var item in tempArray)
{
if (!string.IsNullOrWhiteSpace(item))
{
list.Add(item);
}
}
}
}
return list;
}
} }
} }
\ No newline at end of file
using Edu.Common; using Edu.Common;
using System.Collections.Generic;
namespace Edu.Model.ViewModel.Course namespace Edu.Model.ViewModel.Course
{ {
...@@ -26,5 +27,16 @@ namespace Edu.Model.ViewModel.Course ...@@ -26,5 +27,16 @@ namespace Edu.Model.ViewModel.Course
/// 更新时间 /// 更新时间
/// </summary> /// </summary>
public string UpdateTimeStr { get { return this.UpdateTime.FormatTime(); } } public string UpdateTimeStr { get { return this.UpdateTime.FormatTime(); } }
/// <summary>
/// 文件列表
/// </summary>
public List<string> FileList
{
get
{
return Common.ConvertHelper.StringToFileList(this.ExtUrl);
}
}
} }
} }
\ No newline at end of file
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