Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Education
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
黄奎
Education
Commits
13c3c02d
Commit
13c3c02d
authored
Oct 23, 2020
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
66957ecb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
0 deletions
+37
-0
ConvertHelper.cs
Edu.Common/Plugin/ConvertHelper.cs
+25
-0
RB_Course_TeachPlan_ViewModel.cs
Edu.Model/ViewModel/Course/RB_Course_TeachPlan_ViewModel.cs
+12
-0
No files found.
Edu.Common/Plugin/ConvertHelper.cs
View file @
13c3c02d
...
...
@@ -81,5 +81,30 @@ namespace Edu.Common
}
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
Edu.Model/ViewModel/Course/RB_Course_TeachPlan_ViewModel.cs
View file @
13c3c02d
using
Edu.Common
;
using
System.Collections.Generic
;
namespace
Edu.Model.ViewModel.Course
{
...
...
@@ -26,5 +27,16 @@ namespace Edu.Model.ViewModel.Course
/// 更新时间
/// </summary>
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
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment