diff --git a/jiuyi2/api/mine.js b/jiuyi2/api/mine.js
index 1b08a2d9..1a0c466f 100644
--- a/jiuyi2/api/mine.js
+++ b/jiuyi2/api/mine.js
@@ -352,6 +352,30 @@ const mine = {
method: 'GET',
})
},
+
+ /**
+ * 解锁他人评论
+ * @param {Object} param
+ */
+ unlockComment(param) {
+ return util.request({
+ url: `/video/comment/unlockOthersComment`,
+ data: param,
+ method: 'POST',
+ })
+ },
+
+ /**
+ * 拉黑
+ * @param {Object} param
+ */
+ blockUser(param) {
+ return util.request({
+ url: `/video/statistics/block`,
+ data: param,
+ method: 'POST',
+ })
+ },
}
export default mine
\ No newline at end of file
diff --git a/jiuyi2/api/video.js b/jiuyi2/api/video.js
index 0ee5c6a3..3ed33e3c 100644
--- a/jiuyi2/api/video.js
+++ b/jiuyi2/api/video.js
@@ -426,7 +426,7 @@ const video = {
*/
reportVideo(param) {
return util.request({
- url: `/report/reportVideo`,
+ url: `/video/videoReport`,
data: param.data,
method: 'POST',
})
diff --git a/jiuyi2/common/js/config.js b/jiuyi2/common/js/config.js
index 14677c2f..cbca85b5 100644
--- a/jiuyi2/common/js/config.js
+++ b/jiuyi2/common/js/config.js
@@ -6,9 +6,9 @@ const config = {
// host: 'h5api',
// #endif
// #ifndef H5
- host: 'http://91f.xyz:8080',
+ // host: 'http://91f.xyz:8080',
// host: 'https://1a880cd5.r24.cpolar.top/',
- // host: 'http://6mkwby.natappfree.cc',
+ host: 'http://aere2w.natappfree.cc',
// #endif
// 支付方式配置
payType: {
diff --git a/jiuyi2/components/index/videoMenu.vue b/jiuyi2/components/index/videoMenu.vue
index b8f010ef..d38660b5 100644
--- a/jiuyi2/components/index/videoMenu.vue
+++ b/jiuyi2/components/index/videoMenu.vue
@@ -1,138 +1,138 @@
-
+
-
+
- {{item.play}}
+ {{ item.play }}
@@ -145,37 +145,37 @@
\ No newline at end of file
diff --git a/jiuyi2/pages/index/report.vue b/jiuyi2/pages/index/report.vue
index 9d151bf2..fe57a43f 100644
--- a/jiuyi2/pages/index/report.vue
+++ b/jiuyi2/pages/index/report.vue
@@ -1,203 +1,204 @@
@@ -208,7 +209,7 @@
举报理由
- {{reportList[reportIndex].name}}
+ {{ reportList[reportIndex].name }}
请选择举报理由
@@ -218,10 +219,10 @@
详细描述
-
+
- {{form.context.length}}/100
+ {{ form.particulars.length }}/100
@@ -233,14 +234,15 @@
-
+
-
-
+
+
-
+
@@ -251,15 +253,15 @@
选择视频
-
+
-
-
+
+
-
+
@@ -279,7 +281,7 @@
@@ -300,66 +302,66 @@
\ No newline at end of file
diff --git a/jiuyi2/pages/index/videoHome.vue b/jiuyi2/pages/index/videoHome.vue
index c3fdbf33..790d5895 100644
--- a/jiuyi2/pages/index/videoHome.vue
+++ b/jiuyi2/pages/index/videoHome.vue
@@ -1,233 +1,289 @@
@@ -239,9 +295,9 @@
-
+
- {{detail.userNickname}}
+ {{ detail.userNickname }}
@@ -258,8 +314,8 @@
- {{detail.userNickname}}
- 账号:{{detail.account}}
+ {{ detail.userNickname }}
+ 账号:{{ detail.account }}
@@ -270,25 +326,25 @@
- {{detail.userPraised}}
+ {{ detail.userPraised }}
获赞
- {{detail.userFans}}
+ {{ detail.userFans }}
粉丝
- {{detail.userAttention}}
+ {{ detail.userAttention }}
关注
- 他的评论
+ 他的评论
- {{detail.userBrief}}
+ {{ detail.userBrief }}
@@ -312,7 +368,7 @@
作品
- {{listProperty.total}}
+ {{ listProperty.total }}
@@ -326,9 +382,9 @@
\ No newline at end of file
diff --git a/jiuyi2/pages/mine/myComment.vue b/jiuyi2/pages/mine/myComment.vue
index f68fd2b4..324328f3 100644
--- a/jiuyi2/pages/mine/myComment.vue
+++ b/jiuyi2/pages/mine/myComment.vue
@@ -1,97 +1,116 @@
-
+
- 评论了 视频
- {{item.content}}
- {{item.createTime}}
+ 评论了{{ item.commentType }}
+ {{ item.content }}
+ {{ item.createTime }}
@@ -106,12 +125,12 @@
\ No newline at end of file
diff --git a/jiuyi2/vite.config.js b/jiuyi2/vite.config.js
index d348874f..8489461d 100644
--- a/jiuyi2/vite.config.js
+++ b/jiuyi2/vite.config.js
@@ -3,9 +3,9 @@ import {
} from 'vite';
import uni from '@dcloudio/vite-plugin-uni';
-let target = 'http://91f.xyz:8080'
+// let target = 'http://91f.xyz:8080'
// let target = 'https://1a880cd5.r24.cpolar.top/'
-// let target = 'http://6mkwby.natappfree.cc'
+let target = 'http://aere2w.natappfree.cc'
export default defineConfig({
plugins: [uni()],