Commit ec5fbe40 authored by 黄奎's avatar 黄奎

页面修改

parent dad0c748
......@@ -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;
}
}
}
}
......@@ -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,
......
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