From a877721a8beb9419d9c78181698decba482da9ed Mon Sep 17 00:00:00 2001 From: Zhang HaoYang <1304907854@qq.com> Date: Thu, 28 Dec 2023 01:08:41 +0800 Subject: [PATCH] update --- src/assets/css/home-style.css | 3 + src/components/detail/NavDetail.vue | 508 +++++++++++++++--- src/components/detail/UserComment.vue | 83 +-- .../setting/category/CategoryManage.vue | 2 +- .../setting/website/websiteManage.vue | 231 ++++++-- 5 files changed, 633 insertions(+), 194 deletions(-) diff --git a/src/assets/css/home-style.css b/src/assets/css/home-style.css index 5eebe24..b430c81 100644 --- a/src/assets/css/home-style.css +++ b/src/assets/css/home-style.css @@ -7,6 +7,7 @@ :root { + --theme-color-trans: rgba(206, 206, 206, 0.66); --table-bg-color: rgba(16, 18, 27, 0.39); --table-bg-color-hover: rgb(16, 18, 27); --table-border : #f6f6f6; @@ -32,6 +33,7 @@ } .light-mode { + --theme-color-trans: rgba(60, 58, 58, 0.55); --table-border : #b9b9b9; --font-bg-theme-reverse:rgba(16 18 27 / 40%); --font-border: rgb(108, 155, 255); @@ -1072,6 +1074,7 @@ body.light-mode .video-bg:before { flex-wrap:nowrap; flex-direction:row; justify-content:space-around; + } .MyButton{ diff --git a/src/components/detail/NavDetail.vue b/src/components/detail/NavDetail.vue index 30823ba..4c8329a 100644 --- a/src/components/detail/NavDetail.vue +++ b/src/components/detail/NavDetail.vue @@ -105,7 +105,7 @@
- +
{{ UrlObj.desc }}
@@ -120,12 +120,17 @@
热度趋势
-
+
+ +
+
-
+
+
@@ -133,11 +138,112 @@
+
+ + + +
+ + 请输入评分 + + +
+ + + + + + + + + + + + + + + + 提交 + + +
+
+
+
+ + +
+ 评论广场 + +
+
+
+ +
+
+ 用户:{{item.user.userLogin}} + 评论时间:{{dateFormat('YYYY-mm-dd',item.commentTime)}} +
+
+
+ {{item.content}} +
+
+
+ {{item.likeCount}} + + + 回复 + + + +
+ +
+ + +
+
+ {{item2.user.userLogin}} + 回复 + {{item2.RootUser}} +
+
+ + {{item2.content}} + +
+ 评论时间: + {{dateFormat('YYYY-mm-dd',item2.commentTime)}} +
+
+ {{item.likeCount}} + + + 回复 + + + +
+
+
+
+
+
+
+
+
-
-
@@ -149,6 +255,33 @@
+ + + + + + + + + + + + + + + +
+ 确认 +
+
+
+
+ \ No newline at end of file diff --git a/src/components/detail/UserComment.vue b/src/components/detail/UserComment.vue index 07a5dbb..d918ee2 100644 --- a/src/components/detail/UserComment.vue +++ b/src/components/detail/UserComment.vue @@ -1,69 +1,22 @@