newDetail.vue 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  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.src" mode="aspectFill" class="avatar"></image>
  7. <view class="type">V</view>
  8. </view>
  9. <view class="text_style1">{{pageData.name}}</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.date}}</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. title: '在高质量发展中扎实推动共同富裕!',
  53. src: '/static/images/mine/avatar1.jpg',
  54. name: '船百知官方账号',
  55. content: `洗脸,是我们日常生活中每天都要进行的活动。俗话说得好:勤梳头,勤洗脸,有点儿倒霉也不显。光洁的脸庞不仅透露出积极向上的精神面貌。也是外在美最直接的表现形式。网络疯传的洗脸教育帖转发率之高,书店里出售的洗脸书销量之大,都反映出人们对于洗脸的重`,
  56. date: '2021年09月05日',
  57. video: '',
  58. img: '',
  59. code: '',
  60. comment: [],
  61. is_dz: false,
  62. dzNum: 12
  63. },
  64. comment:''
  65. }
  66. },
  67. onLoad() {
  68. that = this
  69. },
  70. methods: {
  71. },
  72. }
  73. </script>
  74. <style lang="scss" scoped>
  75. .content::v-deep {
  76. position: relative;
  77. background: url('../../../static/images/comment/background.png') no-repeat;
  78. background-size: 100%;
  79. .tile {
  80. box-sizing: border-box;
  81. padding: 24rpx 30rpx;
  82. font-size: 40rpx;
  83. font-weight: 500;
  84. color: #333333;
  85. line-height: 56rpx;
  86. }
  87. .img_box {
  88. width: 56rpx;
  89. height: 56rpx;
  90. position: relative;
  91. .avatar {
  92. width: 56rpx;
  93. height: 56rpx;
  94. border-radius: 50%;
  95. }
  96. .type {
  97. position: absolute;
  98. right: 0rpx;
  99. bottom: 0rpx;
  100. width: 28rpx;
  101. height: 28rpx;
  102. background: #506DFF;
  103. border-radius: 12rpx 4rpx 12rpx 4rpx;
  104. font-size: 20rpx;
  105. color: #fff;
  106. text-align: center;
  107. line-height: 28rpx;
  108. }
  109. }
  110. .text_style1 {
  111. margin-left: 16rpx;
  112. font-size: 26rpx;
  113. font-weight: 400;
  114. color: #222222;
  115. line-height: 36rpx;
  116. }
  117. .box {
  118. margin: 24rpx 30rpx;
  119. height: 116rpx;
  120. background: #F4F4F4;
  121. border-radius: 16rpx;
  122. box-sizing: border-box;
  123. padding: 24rpx 28rpx;
  124. .box_icon {
  125. width: 56rpx;
  126. height: 68rpx;
  127. }
  128. .down {
  129. width: 48rpx;
  130. height: 48rpx;
  131. border-radius: 50%;
  132. background: #506DFF;
  133. }
  134. }
  135. .date {
  136. // margin-bottom: 186rpx;
  137. box-sizing: border-box;
  138. padding: 0 30rpx 40rpx;
  139. border-bottom: 1rpx solid #F5F5F5;
  140. font-size: 26rpx;
  141. font-weight: 400;
  142. color: #989898;
  143. line-height: 18px;
  144. }
  145. .comment {
  146. width: 100%;
  147. box-sizing: border-box;
  148. padding: 40rpx 30rpx;
  149. .comment_title {
  150. font-size: 32rpx;
  151. font-weight: 500;
  152. color: #222222;
  153. line-height: 44rpx;
  154. padding-bottom: 24rpx;
  155. }
  156. .comment_none {
  157. width: 100%;
  158. font-size: 32rpx;
  159. font-weight: 400;
  160. color: #AFAFAF;
  161. line-height: 44rpx;
  162. // padding-top: 24rpx;
  163. }
  164. .headimg {
  165. width: 68rpx;
  166. height: 68rpx;
  167. border-radius: 50%;
  168. }
  169. .comment_right {
  170. width: calc(100% - 88rpx);
  171. margin-left: 20rpx;
  172. padding: 0 0 20rpx;
  173. border-bottom: 1rpx solid #F2F2F2;
  174. }
  175. .comment_name {
  176. font-size: 24rpx;
  177. font-weight: 500;
  178. color: #222222;
  179. line-height: 34rpx;
  180. }
  181. .comment_content {
  182. font-size: 24rpx;
  183. font-weight: 400;
  184. color: #222222;
  185. line-height: 34rpx;
  186. padding: 16rpx 0 12rpx;
  187. }
  188. .comment_date {
  189. font-size: 20rpx;
  190. font-weight: 400;
  191. color: #999999;
  192. line-height: 28rpx;
  193. }
  194. }
  195. .bottom {
  196. width: 100%;
  197. z-index: 9;
  198. position: fixed;
  199. bottom: 0;
  200. height: 166rpx;
  201. background: #FFFFFF;
  202. box-sizing: border-box;
  203. padding: 8rpx 30rpx 74rpx;
  204. .dianzan {
  205. width: 48rpx;
  206. height: 48rpx;
  207. }
  208. .u-input {
  209. background: #F4F4F4 !important;
  210. width: 410rpx;
  211. height: 72rpx;
  212. margin-right: 16rpx;
  213. padding: 0 32rpx !important;
  214. }
  215. .dz_text {
  216. font-size: 26rpx;
  217. font-weight: 400;
  218. color: #333333;
  219. line-height: 36rpx;
  220. padding-left: 8rpx;
  221. }
  222. .comment_icon {
  223. width: 48rpx;
  224. height: 48rpx;
  225. }
  226. .btn {
  227. width: 510rpx;
  228. height: 80rpx;
  229. background: #506DFF;
  230. border-radius: 42rpx;
  231. font-size: 32rpx;
  232. font-weight: 500;
  233. color: #FFFFFF;
  234. line-height: 80rpx;
  235. text-align: center;
  236. }
  237. }
  238. .cCanvas {
  239. position: absolute;
  240. top: 188rpx;
  241. left: 50rpx;
  242. background-color: #fff;
  243. z-index: 100;
  244. border-radius: 20rpx;
  245. }
  246. .share_content {
  247. position: absolute;
  248. top: 0;
  249. left: 0;
  250. z-index: 99;
  251. width: 100vw;
  252. height: 100vh;
  253. background: rgba(0,0,0,0.5);
  254. backdrop-filter: blur(5px);
  255. .share_box {
  256. margin: 148rpx auto;
  257. width: 650rpx;
  258. background: #FFFFFF;
  259. border-radius: 20rpx;
  260. box-sizing: border-box;
  261. padding: 0 40rpx;
  262. .box_bottom {
  263. width: 100%;
  264. padding: 34rpx 0 16rpx;
  265. border-top: 1rpx dashed #C3C3C3;
  266. .bottom_left1 {
  267. font-size: 32rpx;
  268. font-weight: 500;
  269. color: #222222;
  270. line-height: 44rpx;
  271. padding-bottom: 20rpx;
  272. }
  273. .bottom_left2 {
  274. font-size: 22rpx;
  275. font-weight: 400;
  276. color: #999999;
  277. line-height: 32rpx;
  278. }
  279. .bottom_right {
  280. width: 136rpx;
  281. height: 136rpx;
  282. }
  283. }
  284. }
  285. .canvas {
  286. position: absolute;
  287. top: 188rpx;
  288. left: 50rpx;
  289. width: 650rpx;
  290. min-height: 494rpx;
  291. background: #FFFFFF;
  292. border-radius: 20rpx;
  293. }
  294. .share_bottom {
  295. position: fixed;
  296. bottom: 0;
  297. width: 100%;
  298. height: 388rpx;
  299. background: #F5F7FF;
  300. border-radius: 40rpx 40rpx 0px 0px;
  301. .bottom_item {
  302. width: 33%;
  303. margin: 50rpx 0 90rpx;
  304. border: none !important;
  305. background-color: #F5F7FF !important;
  306. .item_icon {
  307. width: 76rpx;
  308. height: 76rpx;
  309. }
  310. .item_text {
  311. font-size: 26rpx;
  312. font-weight: 400;
  313. color: #333333;
  314. line-height: 36rpx;
  315. margin-top: 12rpx;
  316. }
  317. }
  318. button::after {
  319. border: none !important;
  320. }
  321. .share_cancel {
  322. width: 100%;
  323. text-align: center;
  324. font-size: 32rpx;
  325. font-weight: 400;
  326. color: #333333;
  327. line-height: 44rpx;
  328. }
  329. }
  330. }
  331. .img {
  332. width: 100%;
  333. height: 320rpx;
  334. border-radius: 24rpx;
  335. margin: 40rpx 0 32rpx;
  336. }
  337. .video {
  338. width: 100%;
  339. height: 400rpx;
  340. border-radius: 28rpx;
  341. margin: 20rpx 0;
  342. }
  343. }
  344. </style>