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
6c72267a
Commit
6c72267a
authored
Nov 29, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
20f18edf
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
25 additions
and
1 deletion
+25
-1
RB_StudyAbroad_ViewModel.cs
Edu.Model/ViewModel/StudyAbroad/RB_StudyAbroad_ViewModel.cs
+5
-0
StudyAbroadModule.cs
Edu.Module.StudyAbroad/StudyAbroadModule.cs
+18
-0
StudyAbroadController.cs
Edu.WebApi/Controllers/StudyAbroad/StudyAbroadController.cs
+2
-1
No files found.
Edu.Model/ViewModel/StudyAbroad/RB_StudyAbroad_ViewModel.cs
View file @
6c72267a
...
...
@@ -84,5 +84,10 @@ namespace Edu.Model.ViewModel.StudyAbroad
/// 结束时间
/// </summary>
public
string
EndTime
{
get
;
set
;
}
/// <summary>
/// 留学国家名称
/// </summary>
public
string
StudyCountryName
{
get
;
set
;
}
}
}
Edu.Module.StudyAbroad/StudyAbroadModule.cs
View file @
6c72267a
...
...
@@ -3,9 +3,11 @@ using Edu.Common.Enum.Sale;
using
Edu.Model.CacheModel
;
using
Edu.Model.ViewModel.Sell
;
using
Edu.Model.ViewModel.StudyAbroad
;
using
Edu.Model.ViewModel.System
;
using
Edu.Repository.Course
;
using
Edu.Repository.Sell
;
using
Edu.Repository.StudyAbroad
;
using
Edu.Repository.System
;
using
System
;
using
System.Collections.Generic
;
using
System.Linq
;
...
...
@@ -34,6 +36,11 @@ namespace Edu.Module.StudyAbroad
/// </summary>
private
readonly
RB_OrderRepository
orderRepository
=
new
RB_OrderRepository
();
/// <summary>
/// 地区仓储层对象
/// </summary>
private
readonly
RB_DestinationRepository
destinationRepository
=
new
RB_DestinationRepository
();
/// <summary>
/// 获取留学就业分页列表
/// </summary>
...
...
@@ -48,6 +55,7 @@ namespace Edu.Module.StudyAbroad
if
(
list
!=
null
&&
list
.
Count
>
0
)
{
string
ids
=
string
.
Join
(
","
,
list
.
Select
(
qitem
=>
qitem
.
Id
));
string
countryIds
=
string
.
Join
(
","
,
list
.
Select
(
qitem
=>
qitem
.
StudyCountryId
));
List
<
RB_StudyaBroad_Preferential_ViewModel
>
preferentialList
=
new
List
<
RB_StudyaBroad_Preferential_ViewModel
>();
if
(
query
.
IsQPrice
==
1
)
{
...
...
@@ -56,8 +64,18 @@ namespace Edu.Module.StudyAbroad
QStudyabroadIds
=
ids
});
}
List
<
RB_Destination_ViewModel
>
areaList
=
new
List
<
RB_Destination_ViewModel
>();
if
(!
string
.
IsNullOrEmpty
(
countryIds
))
{
areaList
=
destinationRepository
.
GetDestinationListRepository
(
new
RB_Destination_ViewModel
()
{
Ids
=
countryIds
});
}
foreach
(
var
item
in
list
)
{
item
.
StudyCountryName
=
areaList
?.
Where
(
qitem
=>
qitem
.
ID
==
item
.
StudyCountryId
)?.
FirstOrDefault
()?.
Name
??
""
;
item
.
PreferentialList
=
preferentialList
?.
Where
(
qitem
=>
qitem
.
StudyabroadId
==
item
.
Id
)?.
ToList
()
??
new
List
<
RB_StudyaBroad_Preferential_ViewModel
>();
}
}
...
...
Edu.WebApi/Controllers/StudyAbroad/StudyAbroadController.cs
View file @
6c72267a
...
...
@@ -280,7 +280,8 @@ namespace Edu.WebApi.Controllers.StudyAbroad
item
.
ProductType
,
ProductTypeName
=
item
.
ProductType
.
ToName
(),
item
.
StudyFeature
,
item
.
StudyCountryId
item
.
StudyCountryId
,
item
.
StudyCountryName
,
});
}
pageModel
.
Count
=
rowsCount
;
...
...
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