Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
safe-campus-bbs
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
万成波
safe-campus-bbs
Commits
db17bfb0
Commit
db17bfb0
authored
Sep 09, 2025
by
万成波
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
重命名字段
parent
8cdfe588
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
8 deletions
+8
-8
safe-campus-admin/src/main/resources/logback.xml
safe-campus-admin/src/main/resources/logback.xml
+1
-1
safe-campus-bbs-uniapp/components/Comment-Item.vue
safe-campus-bbs-uniapp/components/Comment-Item.vue
+2
-2
safe-campus-bbs-uniapp/components/Dynamic-Item.vue
safe-campus-bbs-uniapp/components/Dynamic-Item.vue
+2
-2
safe-campus-moment/src/main/java/com/tangguo/domain/BbsMomentComment.java
...nt/src/main/java/com/tangguo/domain/BbsMomentComment.java
+1
-1
safe-campus-moment/src/main/java/com/tangguo/domain/vo/BbsCommentDetailVO.java
...c/main/java/com/tangguo/domain/vo/BbsCommentDetailVO.java
+1
-1
safe-campus-moment/src/main/resources/mapper/BbsMomentVoteMapper.xml
...-moment/src/main/resources/mapper/BbsMomentVoteMapper.xml
+1
-1
No files found.
safe-campus-admin/src/main/resources/logback.xml
View file @
db17bfb0
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<configuration>
<!-- 日志存放路径 -->
<!-- 日志存放路径 -->
<property
name=
"log.path"
value=
"
/home/ruoyi/
logs"
/>
<property
name=
"log.path"
value=
"logs"
/>
<!-- 日志输出格式 -->
<!-- 日志输出格式 -->
<property
name=
"log.pattern"
value=
"%d{HH:mm:ss.SSS} [%thread] %-5level %logger{20} - [%method,%line] - %msg%n"
/>
<property
name=
"log.pattern"
value=
"%d{HH:mm:ss.SSS} [%thread] %-5level %logger{20} - [%method,%line] - %msg%n"
/>
...
...
safe-campus-bbs-uniapp/components/Comment-Item.vue
View file @
db17bfb0
...
@@ -16,9 +16,9 @@
...
@@ -16,9 +16,9 @@
<view
class=
"datetime"
>
{{
item
.
createTime
}}
</view>
<view
class=
"datetime"
>
{{
item
.
createTime
}}
</view>
</view>
</view>
<view
class=
"content"
>
<view
class=
"content"
>
<view
class=
"text"
v-if=
"!item.replyNi
ke
Name"
>
{{
item
.
content
}}
</view>
<view
class=
"text"
v-if=
"!item.replyNi
ck
Name"
>
{{
item
.
content
}}
</view>
<view
class=
"text"
v-else
@
click.stop=
"handleReplayComment(item)"
>
<view
class=
"text"
v-else
@
click.stop=
"handleReplayComment(item)"
>
回复
<span
style=
"color: #0058B6;"
>
{{
item
.
replyNi
ke
Name
}}
:
</span>
{{
item
.
content
}}
回复
<span
style=
"color: #0058B6;"
>
{{
item
.
replyNi
ck
Name
}}
:
</span>
{{
item
.
content
}}
</view>
</view>
<view
class=
"operation-text"
>
<view
class=
"operation-text"
>
<view
class=
"add-text"
v-if=
"form.isSelf==1&&activeIndex==1 &&item.isFeatured==0"
<view
class=
"add-text"
v-if=
"form.isSelf==1&&activeIndex==1 &&item.isFeatured==0"
...
...
safe-campus-bbs-uniapp/components/Dynamic-Item.vue
View file @
db17bfb0
...
@@ -87,9 +87,9 @@
...
@@ -87,9 +87,9 @@
<view
class=
"username"
>
{{item.nickName}}:
</view>
<view
class=
"username"
>
{{item.nickName}}:
</view>
<view
class=
"datetime"
>
2025-07-01 04:21:21
</view>
<view
class=
"datetime"
>
2025-07-01 04:21:21
</view>
</view>
</view>
<view
class=
"content"
v-if=
"!item.replyNi
ke
Name"
@
click.stop=
"handleReplayComment(item)"
>
{{item.content}}
</view>
<view
class=
"content"
v-if=
"!item.replyNi
ck
Name"
@
click.stop=
"handleReplayComment(item)"
>
{{item.content}}
</view>
<view
class=
"content"
v-else
@
click.stop=
"handleReplayComment(item)"
>
<view
class=
"content"
v-else
@
click.stop=
"handleReplayComment(item)"
>
回复
<span
style=
"color: #0058B6;"
>
{{item.replyNi
ke
Name}}:
</span>
:{{item.content}}
回复
<span
style=
"color: #0058B6;"
>
{{item.replyNi
ck
Name}}:
</span>
:{{item.content}}
</view>
</view>
<!-- <view class="tips">未精选,仅自己可见</view> -->
<!-- <view class="tips">未精选,仅自己可见</view> -->
</view>
</view>
...
...
safe-campus-moment/src/main/java/com/tangguo/domain/BbsMomentComment.java
View file @
db17bfb0
...
@@ -78,7 +78,7 @@ public class BbsMomentComment extends BaseEntity {
...
@@ -78,7 +78,7 @@ public class BbsMomentComment extends BaseEntity {
/** 回复的用户姓名 */
/** 回复的用户姓名 */
@Excel
(
name
=
"回复的用户姓名"
)
@Excel
(
name
=
"回复的用户姓名"
)
@ApiModelProperty
(
"回复的用户姓名"
)
@ApiModelProperty
(
"回复的用户姓名"
)
private
String
replyNi
ke
Name
;
private
String
replyNi
ck
Name
;
/** 评论祖级路径(逗号分隔) */
/** 评论祖级路径(逗号分隔) */
@Excel
(
name
=
"评论祖级路径"
,
readConverterExp
=
"逗=号分隔"
)
@Excel
(
name
=
"评论祖级路径"
,
readConverterExp
=
"逗=号分隔"
)
...
...
safe-campus-moment/src/main/java/com/tangguo/domain/vo/BbsCommentDetailVO.java
View file @
db17bfb0
...
@@ -28,7 +28,7 @@ public class BbsCommentDetailVO {
...
@@ -28,7 +28,7 @@ public class BbsCommentDetailVO {
private
String
userName
;
private
String
userName
;
/** 回复评论用户名 */
/** 回复评论用户名 */
private
String
replyNi
ke
Name
;
private
String
replyNi
ck
Name
;
/** 回复评论内容 */
/** 回复评论内容 */
private
String
replyContent
;
private
String
replyContent
;
...
...
safe-campus-moment/src/main/resources/mapper/BbsMomentVoteMapper.xml
View file @
db17bfb0
...
@@ -11,7 +11,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
...
@@ -11,7 +11,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
FROM
FROM
bbs_moment_vote v
bbs_moment_vote v
LEFT JOIN
LEFT JOIN
qwmh_sys_user_view
uv ON uv.user_name = v.user_name
sys_user
uv ON uv.user_name = v.user_name
WHERE
WHERE
v.moment_id = #{momentId} AND v.option_code = #{optionCode}
v.moment_id = #{momentId} AND v.option_code = #{optionCode}
ORDER BY
ORDER BY
...
...
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