diff --git a/assets/css/DetailsComments.css b/assets/css/DetailsComments.css index d3ccf75..0ccbccc 100644 --- a/assets/css/DetailsComments.css +++ b/assets/css/DetailsComments.css @@ -447,6 +447,7 @@ margin-right: 10px; margin-bottom: 13px; border-radius: 5px; + cursor: pointer; } .comment-list .comment-item .comment-content .alreadyVoted { font-size: 12px; diff --git a/assets/css/DetailsComments.less b/assets/css/DetailsComments.less index a9f6bda..00e0a52 100644 --- a/assets/css/DetailsComments.less +++ b/assets/css/DetailsComments.less @@ -560,6 +560,7 @@ margin-right: 10px; margin-bottom: 13px; border-radius: 5px; + cursor: pointer; } .alreadyVoted { diff --git a/assets/css/details.css b/assets/css/details.css index bd4ecfb..56adbdb 100644 --- a/assets/css/details.css +++ b/assets/css/details.css @@ -79,7 +79,6 @@ width: 100vw; height: 100vh; z-index: 12; - background-color: rgba(0, 0, 0, 0.1); } .content .header .operate { position: absolute; diff --git a/assets/css/details.less b/assets/css/details.less index ca504c7..453be62 100644 --- a/assets/css/details.less +++ b/assets/css/details.less @@ -89,7 +89,7 @@ width: 100vw; height: 100vh; z-index: 12; - background-color: rgba(0, 0, 0, 0.1); + // background-color: rgba(0, 0, 0, 0.1); } .operate { diff --git a/assets/img/discuss-black-icon.png b/assets/img/discuss-black-icon.png new file mode 100644 index 0000000..5c9128f Binary files /dev/null and b/assets/img/discuss-black-icon.png differ diff --git a/components/DetailsArea.vue b/components/DetailsArea.vue index dfd3526..11d52c7 100644 --- a/components/DetailsArea.vue +++ b/components/DetailsArea.vue @@ -25,20 +25,20 @@
{{ topicInfo["collections"] || "收藏" }}
+
- +
{{ commentComments || "讨论" }}
+
-
{{ topicInfo.coins || "投币" }}
+
{{ topicInfo.coins || "投币" }}
@@ -49,9 +49,7 @@
{{ info["title"] }}
{{ getFullUrl() }}
-
- 复制链接 -
+
复制链接
转发小程序版
@@ -96,7 +94,6 @@ import { ElMessage } from "element-plus"; let props = defineProps({ ripostecount: Object, commentComments: Number, - }); let topicInfo = inject("topicInfo"); @@ -233,7 +230,7 @@ const emit = defineEmits(["closeDiscussInputFields"]); // // 点击底部调用关闭讨论输入框 const closeDiscussInputFields = () => emit("closeDiscussInputFields"); -onMounted(() => { }); +onMounted(() => {}); watch(isLoaded, (newValue, oldValue) => { if (newValue === true) { @@ -276,7 +273,7 @@ const openBi = () => { } BiComponent.initComponent(); -} +};