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
ec5fbe40
Commit
ec5fbe40
authored
Apr 13, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
dad0c748
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
20 deletions
+23
-20
RB_Web_Recruitment_ViewModel.cs
Edu.Model/ViewModel/Web/RB_Web_Recruitment_ViewModel.cs
+21
-0
WebController.cs
Edu.WebApi/Controllers/Web/WebController.cs
+2
-20
No files found.
Edu.Model/ViewModel/Web/RB_Web_Recruitment_ViewModel.cs
View file @
ec5fbe40
...
...
@@ -11,5 +11,26 @@ namespace Edu.Model.ViewModel.Web
/// 发布时间字符串
/// </summary>
public
string
PublishTimeStr
{
get
{
return
Common
.
ConvertHelper
.
FormatDate
(
this
.
PublishTime
);
}
}
/// <summary>
/// 薪资字符串
/// </summary>
public
string
SalaryStr
{
get
{
string
salary
=
""
;
if
(
this
.
SalaryType
==
2
)
{
salary
=
"面议"
;
}
else
{
salary
=
this
.
SalaryStart
+
"-"
+
this
.
SalaryEnd
+
"K"
+
(
this
.
SalaryNum
>
0
?
"·"
+
this
.
SalaryNum
+
"薪"
:
""
);
}
return
salary
;
}
}
}
}
Edu.WebApi/Controllers/Web/WebController.cs
View file @
ec5fbe40
...
...
@@ -626,19 +626,10 @@ namespace Edu.WebApi.Controllers.Web
var
list
=
webRecruitmentModule
.
GetWebRecruitmentPageModule
(
pageModel
.
PageIndex
,
pageModel
.
PageSize
,
out
long
rowsCount
,
query
);
foreach
(
var
item
in
list
)
{
string
salary
=
""
;
if
(
item
.
SalaryType
==
2
)
{
salary
=
"面议"
;
}
else
{
salary
=
item
.
SalaryStart
+
"-"
+
item
.
SalaryEnd
+
"K"
+
(
item
.
SalaryNum
>
0
?
"·"
+
item
.
SalaryNum
+
"薪"
:
""
);
}
result
.
Add
(
new
{
item
.
Id
,
Salary
=
salary
,
Salary
=
item
.
SalaryStr
,
item
.
PositionName
,
item
.
Experience
,
item
.
Education
,
...
...
@@ -664,19 +655,10 @@ namespace Edu.WebApi.Controllers.Web
var
obj
=
new
object
();
if
(
extModel
!=
null
&&
extModel
.
Id
>
0
)
{
string
salary
=
""
;
if
(
extModel
.
SalaryType
==
2
)
{
salary
=
"面议"
;
}
else
{
salary
=
extModel
.
SalaryStart
+
"-"
+
extModel
.
SalaryEnd
+
"K"
+
(
extModel
.
SalaryNum
>
0
?
"·"
+
extModel
.
SalaryNum
+
"薪"
:
""
);
}
obj
=
new
{
extModel
.
Id
,
Salary
=
salary
,
Salary
=
extModel
.
SalaryStr
,
extModel
.
PositionName
,
extModel
.
Experience
,
extModel
.
Education
,
...
...
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