newDetail.vue 7.7 KB

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