newDetail.vue 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412
  1. <template>
  2. <view class="content">
  3. <view class="tile">{{pageData.title}}</view>
  4. <view class="hflex acenter " style="box-sizing: border-box;padding: 0 30rpx;">
  5. <view class="img_box">
  6. <image :src="pageData.user.avatar" mode="aspectFill" class="avatar"></image>
  7. <view class="type">V</view>
  8. </view>
  9. <view class="text_style1">{{pageData.user.username}}</view>
  10. </view>
  11. <!-- <image :src="pageData.img" class="img" v-if="pageData.image"></image> -->
  12. <u-parse :content="pageData.content" style="box-sizing: border-box;padding: 0 30rpx;"></u-parse>
  13. <!-- <video :src="pageData.video" play-btn-position="center" class="video" v-if="pageData.video"></video> -->
  14. <view class="date">发布于{{pageData.create_time}}</view>
  15. <view class="comment">
  16. <view class="comment_title">评论{{comment.total?comment.total:''}}</view>
  17. <view v-if="comment.total == 0" class="hflex acenter jcenter comment_none">暂无评论</view>
  18. <view v-else>
  19. <block v-for="(item,index) in comment.data" :key="index">
  20. <view class="hflex">
  21. <image :src="item.user.headimg" class="headimg"></image>
  22. <view class="comment_right">
  23. <view class="comment_name">{{item.uer.name}}</view>
  24. <view class="comment_content">{{item.content}}</view>
  25. <view class="comment_date">{{item.create_time}}</view>
  26. </view>
  27. </view>
  28. </block>
  29. </view>
  30. </view>
  31. <view class="bottom hflex acenter jbetween">
  32. <view class="hflex acenter" @click="getLike">
  33. <image src="/static/images/comment/dianzan1.png" class="dianzan" v-if="!pageData.is_liked"></image>
  34. <image src="/static/images/comment/dianzan2.png" class="dianzan" v-else></image>
  35. <view class="dz_text">{{!pageData.is_liked?'点赞':pageData.likes_count}}</view>
  36. </view>
  37. <view class="hflex acenter ">
  38. <u-input v-model="message" border="none" placeholder="我来说两句" shape="circle"></u-input>
  39. <image src="/static/images/comment/comment.png" class="comment_icon" @click="send"></image>
  40. <view class="dz_text">{{comment.total == 0?'评论':comment.total}}</view>
  41. </view>
  42. </view>
  43. </view>
  44. </template>
  45. <script>
  46. import $api from '@/static/js/api.js'
  47. var that = ''
  48. export default {
  49. data() {
  50. return {
  51. pageData: {
  52. },
  53. message: '',
  54. name: '船百知官方账号',
  55. comment: [],
  56. id: '',
  57. page: 1,
  58. limit: 10,
  59. total: 10
  60. }
  61. },
  62. onLoad(options) {
  63. that = this
  64. that.id = options.id
  65. that.getData()
  66. },
  67. methods: {
  68. getData() {
  69. $api.req({
  70. url: '/data/api.Xw/show',
  71. data: {
  72. id: that.id
  73. }
  74. }, function(res) {
  75. if(res.code == 1) {
  76. that.pageData = res.data
  77. that.getComment()
  78. }
  79. })
  80. },
  81. getComment() {
  82. $api.req({
  83. url: '/data/api.Xw/comments',
  84. data: {
  85. id: that.id,
  86. page: that.page,
  87. limit: that.limit
  88. }
  89. }, function(res) {
  90. if(res.code == 1) {
  91. that.comment = res.data
  92. that.total = res.data.total
  93. }
  94. })
  95. },
  96. getLike() {
  97. if(that.pageData.is_liked) {
  98. that.pageData.is_liked = 0
  99. that.pageData.likes_count -=1
  100. } else {
  101. that.pageData.is_liked = 1
  102. that.pageData.likes_count +=1
  103. }
  104. $api.req({
  105. url: '/data/api.Xw/like',
  106. data: {
  107. id: that.id
  108. }
  109. }, function(res) {
  110. if(res.code == 1) {
  111. $api.info(res.info)
  112. }
  113. })
  114. },
  115. send() {
  116. $api.req({
  117. url: '/data/api.Xw/comment',
  118. method: 'POST',
  119. data: {
  120. id: that.id,
  121. content: that.message
  122. }
  123. }, function(res) {
  124. if(res.code == 1) {
  125. that.message = ""
  126. $api.info(res.info)
  127. that.getComment()
  128. }
  129. })
  130. }
  131. },
  132. }
  133. </script>
  134. <style lang="scss" scoped>
  135. .content::v-deep {
  136. position: relative;
  137. background: url('../../../static/images/comment/background.png') no-repeat;
  138. background-size: 100%;
  139. .tile {
  140. box-sizing: border-box;
  141. padding: 24rpx 30rpx;
  142. font-size: 40rpx;
  143. font-weight: 500;
  144. color: #333333;
  145. line-height: 56rpx;
  146. }
  147. .img_box {
  148. width: 56rpx;
  149. height: 56rpx;
  150. position: relative;
  151. .avatar {
  152. width: 56rpx;
  153. height: 56rpx;
  154. border-radius: 50%;
  155. }
  156. .type {
  157. position: absolute;
  158. right: 0rpx;
  159. bottom: 0rpx;
  160. width: 28rpx;
  161. height: 28rpx;
  162. background: #506DFF;
  163. border-radius: 12rpx 4rpx 12rpx 4rpx;
  164. font-size: 20rpx;
  165. color: #fff;
  166. text-align: center;
  167. line-height: 28rpx;
  168. }
  169. }
  170. .text_style1 {
  171. margin-left: 16rpx;
  172. font-size: 26rpx;
  173. font-weight: 400;
  174. color: #222222;
  175. line-height: 36rpx;
  176. }
  177. .box {
  178. margin: 24rpx 30rpx;
  179. height: 116rpx;
  180. background: #F4F4F4;
  181. border-radius: 16rpx;
  182. box-sizing: border-box;
  183. padding: 24rpx 28rpx;
  184. .box_icon {
  185. width: 56rpx;
  186. height: 68rpx;
  187. }
  188. .down {
  189. width: 48rpx;
  190. height: 48rpx;
  191. border-radius: 50%;
  192. background: #506DFF;
  193. }
  194. }
  195. .date {
  196. // margin-bottom: 186rpx;
  197. box-sizing: border-box;
  198. padding: 0 30rpx 40rpx;
  199. border-bottom: 1rpx solid #F5F5F5;
  200. font-size: 26rpx;
  201. font-weight: 400;
  202. color: #989898;
  203. line-height: 18px;
  204. }
  205. .comment {
  206. width: 100%;
  207. box-sizing: border-box;
  208. padding: 40rpx 30rpx;
  209. .comment_title {
  210. font-size: 32rpx;
  211. font-weight: 500;
  212. color: #222222;
  213. line-height: 44rpx;
  214. padding-bottom: 24rpx;
  215. }
  216. .comment_none {
  217. width: 100%;
  218. font-size: 32rpx;
  219. font-weight: 400;
  220. color: #AFAFAF;
  221. line-height: 44rpx;
  222. // padding-top: 24rpx;
  223. }
  224. .headimg {
  225. width: 68rpx;
  226. height: 68rpx;
  227. border-radius: 50%;
  228. }
  229. .comment_right {
  230. width: calc(100% - 88rpx);
  231. margin-left: 20rpx;
  232. padding: 0 0 20rpx;
  233. border-bottom: 1rpx solid #F2F2F2;
  234. }
  235. .comment_name {
  236. font-size: 24rpx;
  237. font-weight: 500;
  238. color: #222222;
  239. line-height: 34rpx;
  240. }
  241. .comment_content {
  242. font-size: 24rpx;
  243. font-weight: 400;
  244. color: #222222;
  245. line-height: 34rpx;
  246. padding: 16rpx 0 12rpx;
  247. }
  248. .comment_date {
  249. font-size: 20rpx;
  250. font-weight: 400;
  251. color: #999999;
  252. line-height: 28rpx;
  253. }
  254. }
  255. .bottom {
  256. width: 100%;
  257. z-index: 9;
  258. position: fixed;
  259. bottom: 0;
  260. height: 166rpx;
  261. background: #FFFFFF;
  262. box-sizing: border-box;
  263. padding: 8rpx 20rpx 74rpx;
  264. .dianzan {
  265. width: 48rpx;
  266. height: 48rpx;
  267. }
  268. .u-input {
  269. background: #F4F4F4 !important;
  270. width: 410rpx;
  271. height: 72rpx;
  272. margin-right: 16rpx;
  273. padding: 0 32rpx !important;
  274. }
  275. .dz_text {
  276. font-size: 26rpx;
  277. font-weight: 400;
  278. color: #333333;
  279. line-height: 36rpx;
  280. padding-left: 8rpx;
  281. }
  282. .comment_icon {
  283. width: 48rpx;
  284. height: 48rpx;
  285. }
  286. .btn {
  287. width: 510rpx;
  288. height: 80rpx;
  289. background: #506DFF;
  290. border-radius: 42rpx;
  291. font-size: 32rpx;
  292. font-weight: 500;
  293. color: #FFFFFF;
  294. line-height: 80rpx;
  295. text-align: center;
  296. }
  297. }
  298. .cCanvas {
  299. position: absolute;
  300. top: 188rpx;
  301. left: 50rpx;
  302. background-color: #fff;
  303. z-index: 100;
  304. border-radius: 20rpx;
  305. }
  306. .share_content {
  307. position: absolute;
  308. top: 0;
  309. left: 0;
  310. z-index: 99;
  311. width: 100vw;
  312. height: 100vh;
  313. background: rgba(0,0,0,0.5);
  314. backdrop-filter: blur(5px);
  315. .share_box {
  316. margin: 148rpx auto;
  317. width: 650rpx;
  318. background: #FFFFFF;
  319. border-radius: 20rpx;
  320. box-sizing: border-box;
  321. padding: 0 40rpx;
  322. .box_bottom {
  323. width: 100%;
  324. padding: 34rpx 0 16rpx;
  325. border-top: 1rpx dashed #C3C3C3;
  326. .bottom_left1 {
  327. font-size: 32rpx;
  328. font-weight: 500;
  329. color: #222222;
  330. line-height: 44rpx;
  331. padding-bottom: 20rpx;
  332. }
  333. .bottom_left2 {
  334. font-size: 22rpx;
  335. font-weight: 400;
  336. color: #999999;
  337. line-height: 32rpx;
  338. }
  339. .bottom_right {
  340. width: 136rpx;
  341. height: 136rpx;
  342. }
  343. }
  344. }
  345. .canvas {
  346. position: absolute;
  347. top: 188rpx;
  348. left: 50rpx;
  349. width: 650rpx;
  350. min-height: 494rpx;
  351. background: #FFFFFF;
  352. border-radius: 20rpx;
  353. }
  354. .share_bottom {
  355. position: fixed;
  356. bottom: 0;
  357. width: 100%;
  358. height: 388rpx;
  359. background: #F5F7FF;
  360. border-radius: 40rpx 40rpx 0px 0px;
  361. .bottom_item {
  362. width: 33%;
  363. margin: 50rpx 0 90rpx;
  364. border: none !important;
  365. background-color: #F5F7FF !important;
  366. .item_icon {
  367. width: 76rpx;
  368. height: 76rpx;
  369. }
  370. .item_text {
  371. font-size: 26rpx;
  372. font-weight: 400;
  373. color: #333333;
  374. line-height: 36rpx;
  375. margin-top: 12rpx;
  376. }
  377. }
  378. button::after {
  379. border: none !important;
  380. }
  381. .share_cancel {
  382. width: 100%;
  383. text-align: center;
  384. font-size: 32rpx;
  385. font-weight: 400;
  386. color: #333333;
  387. line-height: 44rpx;
  388. }
  389. }
  390. }
  391. .img {
  392. width: 100%;
  393. height: 320rpx;
  394. border-radius: 24rpx;
  395. margin: 40rpx 0 32rpx;
  396. }
  397. .video {
  398. width: 100%;
  399. height: 400rpx;
  400. border-radius: 28rpx;
  401. margin: 20rpx 0;
  402. }
  403. }
  404. </style>