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
5b64baca
Commit
5b64baca
authored
Apr 15, 2021
by
黄奎
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
页面修改
parent
d450ab09
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
20 deletions
+13
-20
StringHelper.cs
Edu.Common/Plugin/StringHelper.cs
+1
-12
RB_Notice_ReadRepository.cs
Edu.Repository/User/RB_Notice_ReadRepository.cs
+1
-1
UserCenterController.cs
Edu.WebApi/Controllers/User/UserCenterController.cs
+11
-7
No files found.
Edu.Common/Plugin/StringHelper.cs
View file @
5b64baca
...
@@ -55,18 +55,7 @@ namespace Edu.Common.Plugin
...
@@ -55,18 +55,7 @@ namespace Edu.Common.Plugin
{
{
//TimeSpan表示时间间隔
//TimeSpan表示时间间隔
TimeSpan
span
=
(
DateTime
.
Now
-
dt
).
Duration
();
//表示取timespan绝对值
TimeSpan
span
=
(
DateTime
.
Now
-
dt
).
Duration
();
//表示取timespan绝对值
//if (span.TotalDays > 60)
//{
// return dt.ToString("yyyy-MM-dd");
//}
//else if (span.TotalDays > 30)
//{
// return "1个月前";
//}
//else if (span.TotalDays > 14)
//{
// return "2周前";
//}
if
(
dt
.
Year
==
DateTime
.
Now
.
Year
)
if
(
dt
.
Year
==
DateTime
.
Now
.
Year
)
{
{
if
(
span
.
TotalDays
>
7
)
if
(
span
.
TotalDays
>
7
)
...
...
Edu.Repository/User/RB_Notice_ReadRepository.cs
View file @
5b64baca
...
@@ -16,7 +16,7 @@ namespace Edu.Repository.User
...
@@ -16,7 +16,7 @@ namespace Edu.Repository.User
{
{
public
List
<
RB_Notice_Read_ViewModel
>
GetList
(
RB_Notice_Read_ViewModel
demodel
)
public
List
<
RB_Notice_Read_ViewModel
>
GetList
(
RB_Notice_Read_ViewModel
demodel
)
{
{
string
where
=
$@" 1=1
and Status=0
"
;
string
where
=
$@" 1=1 "
;
if
(
demodel
.
NoticeId
>
0
)
if
(
demodel
.
NoticeId
>
0
)
{
{
where
+=
$@" and
{
nameof
(
RB_Notice_Read
.
NoticeId
)}
=
{
demodel
.
NoticeId
}
"
;
where
+=
$@" and
{
nameof
(
RB_Notice_Read
.
NoticeId
)}
=
{
demodel
.
NoticeId
}
"
;
...
...
Edu.WebApi/Controllers/User/UserCenterController.cs
View file @
5b64baca
...
@@ -273,14 +273,12 @@ namespace Edu.WebApi.Controllers.User
...
@@ -273,14 +273,12 @@ namespace Edu.WebApi.Controllers.User
public
ApiResult
SetNoticeOperation
()
public
ApiResult
SetNoticeOperation
()
{
{
UserInfo
userInfo
=
base
.
UserInfo
;
UserInfo
userInfo
=
base
.
UserInfo
;
JObject
parms
=
JObject
.
Parse
(
RequestParm
.
Msg
.
ToString
());
int
NoticeId
=
base
.
ParmJObj
.
GetInt
(
"NoticeId"
,
0
);
int
NoticeId
=
parms
.
GetInt
(
"NoticeId"
,
0
);
int
Type
=
base
.
ParmJObj
.
GetInt
(
"Type"
,
1
);
// 类型 1置顶 2取消置顶 3撤回 4删除 5公告阅读
int
Type
=
parms
.
GetInt
(
"Type"
,
1
);
// 类型 1置顶 2取消置顶 3撤回 4删除 5公告阅读
if
(
NoticeId
<=
0
)
if
(
NoticeId
<=
0
)
{
{
return
ApiResult
.
ParamIsNull
(
"公告
id
"
);
return
ApiResult
.
ParamIsNull
(
"公告
编号不存在!
"
);
}
}
bool
flag
=
noticeModule
.
SetNoticeOperation
(
NoticeId
,
Type
,
userInfo
);
bool
flag
=
noticeModule
.
SetNoticeOperation
(
NoticeId
,
Type
,
userInfo
);
if
(
flag
)
if
(
flag
)
{
{
...
@@ -364,7 +362,11 @@ namespace Edu.WebApi.Controllers.User
...
@@ -364,7 +362,11 @@ namespace Edu.WebApi.Controllers.User
{
{
toList
.
Add
(
"全公司"
);
toList
.
Add
(
"全公司"
);
}
}
string
DayStr
=
""
;
if
(
item
.
UpdateTime
!=
null
)
{
DayStr
=
Common
.
Plugin
.
StringHelper
.
DateFormatToString
(
Convert
.
ToDateTime
(
item
.
UpdateTime
));
}
var
obj
=
new
var
obj
=
new
{
{
item
.
Id
,
item
.
Id
,
...
@@ -377,12 +379,14 @@ namespace Edu.WebApi.Controllers.User
...
@@ -377,12 +379,14 @@ namespace Edu.WebApi.Controllers.User
item
.
ReadNum
,
item
.
ReadNum
,
item
.
UpdateBy
,
item
.
UpdateBy
,
UpdateByName
=
UserReidsCache
.
GetUserLoginInfo
(
item
.
UpdateBy
)?.
AccountName
??
""
,
UpdateByName
=
UserReidsCache
.
GetUserLoginInfo
(
item
.
UpdateBy
)?.
AccountName
??
""
,
UpdateByIcon
=
UserReidsCache
.
GetUserLoginInfo
(
item
.
UpdateBy
)?.
UserIcon
??
""
,
UpdateTime
=
Common
.
ConvertHelper
.
FormatDate2
(
item
.
UpdateTime
),
UpdateTime
=
Common
.
ConvertHelper
.
FormatDate2
(
item
.
UpdateTime
),
UpdateTimeStr
=
Common
.
ConvertHelper
.
FormatDate
(
item
.
UpdateTime
),
UpdateTimeStr
=
Common
.
ConvertHelper
.
FormatDate
(
item
.
UpdateTime
),
item
.
Content
,
item
.
Content
,
fileList
,
fileList
,
ccList
,
ccList
,
toList
toList
,
DayStr
,
};
};
result
.
Add
(
obj
);
result
.
Add
(
obj
);
}
}
...
...
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