forumInfo.vue 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412
  1. <template>
  2. <view class="index">
  3. <view class="item">
  4. <view class="top1 u-flex u-row-between">
  5. <view class="topleft u-flex">
  6. <image :src="info.headimg" mode="" @click="headclick"></image>
  7. <view class="">
  8. <view class="name">
  9. {{info.nickame}}
  10. <!-- <image src="../../static/index/1@2x.png" mode=""></image> -->
  11. </view>
  12. <view class="area">
  13. {{info.city}}·{{info.age}}岁
  14. </view>
  15. </view>
  16. </view>
  17. <!-- <view class="topright">
  18. 关注
  19. </view> -->
  20. </view>
  21. <view class="iteminfo">
  22. {{info.content}}
  23. </view>
  24. <view class="imaglist u-flex" v-if="info.suffix!='mp4'">
  25. <view class="imgbox" v-for="(ite,ind) in info.show_images" :key="ind" @click="lookImage(ite)">
  26. <image :src="ite" mode="" ></image>
  27. </view>
  28. </view>
  29. <video :src="info.show_images[0]" class="video" v-if="item.suffix=='mp4'"></video>
  30. <view class="bottom u-flex u-row-between">
  31. <view class="u-flex u-row-left">
  32. <view class="zan">
  33. <!-- <image src="../../static/forum/2@2x.png" mode="" v-show="info.is_give==1"></image> -->
  34. <image src="../../static/forum/5@2x.png" mode=""></image>
  35. <text>{{info.give.length||0}}</text>
  36. </view>
  37. <view class="talk">
  38. <image src="../../static/forum/3@2x.png" mode=""></image>
  39. <text>{{info.comment.length||0}}</text>
  40. </view>
  41. </view>
  42. <!-- <image src="../../static/forum/more.png" mode="" style="width: 36rpx;height: 36rpx;"></image> -->
  43. </view>
  44. </view>
  45. <view class="tab u-flex">
  46. <view class="" :class="{'select':current==index}" v-for="(item,index) in list" :key="index" @click="itemClick(index)">
  47. {{item}}
  48. </view>
  49. </view>
  50. <view class="" v-show="current==0">
  51. <view class="topleft u-flex u-row-between" style="margin-top: 40rpx;padding-left: 30rpx;"v-for="(item,index) in info.give">
  52. <view class="u-flex ">
  53. <image :src="item.headimg" mode=""></image>
  54. <view class="">
  55. <view class="name">
  56. {{item.nickname}}
  57. </view>
  58. <view class="area">
  59. {{item.shortname}}·{{item.age}}岁
  60. </view>
  61. </view>
  62. </view>
  63. <view class="topright" @click="toguanzhu(item,index)">
  64. {{item.guanzhu==1?'已关注':'关注'}}
  65. </view>
  66. </view>
  67. </view>
  68. <view class="" v-show="current==1">
  69. <view class="pinglunitem" v-for="(item,index) in info.comment" :key="index">
  70. <view class="topleft u-flex u-row-between" style="margin-top: 40rpx;padding-left: 30rpx;">
  71. <view class="u-flex ">
  72. <image :src="item.headimg" mode=""></image>
  73. <view class="">
  74. <view class="name">
  75. {{item.nickname}}
  76. </view>
  77. <view class="area">
  78. {{item.shortname}}·{{item.age}}岁
  79. </view>
  80. </view>
  81. </view>
  82. <view class="topright" @click="toguanzhu(item,index)">
  83. {{item.guanzhu==1?'已关注':'关注'}}
  84. </view>
  85. </view>
  86. <view class="content">
  87. {{item.comment}}
  88. </view>
  89. <view class="pinglun">
  90. {{item.create_at}}
  91. </view>
  92. </view>
  93. </view>
  94. <view class="bottomBox u-flex">
  95. <u--input type="text" v-model="content" :clearable="true"@confirm='confirm' :border="false" placeholder="说点什么吧"></u--input>
  96. </view>
  97. </view>
  98. </template>
  99. <script>
  100. export default {
  101. onLoad(option) {
  102. this.id=option.id
  103. this.getInfo(option.id)
  104. },
  105. data() {
  106. return {
  107. list:['赞','评论'],
  108. current:0,
  109. info:{},
  110. content:'',
  111. id:'',
  112. userInfo:JSON.parse(uni.getStorageSync('userInfo'))
  113. }
  114. },
  115. methods: {
  116. toguanzhu(item,index){
  117. uni.$u.http.post('/api/user/user_follow',{mid:item.id}).then(res => {
  118. if(res.code==1){
  119. if(item.guanzhu==1){
  120. item.guanzhu=0;
  121. }else{
  122. item.guanzhu=1;
  123. }
  124. this.getInfo(this.id)
  125. this.$u.toast(res.msg)
  126. }
  127. })
  128. },
  129. headclick(){
  130. var id=uni.setStorageSync('userId')
  131. if(id&&id==this.info.m_id){
  132. uni.navigateTo({
  133. url:'../profile/myPage'
  134. })
  135. }else{
  136. uni.navigateTo({
  137. url:'/pages/profile/otherPage?id='+this.info.m_id
  138. })
  139. }
  140. },
  141. confirm(e){
  142. if(this.userInfo.vip_level==0){
  143. this.$u.toast('您暂未认证')
  144. return
  145. }
  146. if(this.userInfo.vip_level==2){
  147. this.$u.toast('经用户反馈,您账户存在违规行为,暂不支持使用该功能')
  148. return
  149. }
  150. if(this.userInfo.vip_level==3){
  151. this.$u.toast('您的账户已注销,暂不支持使用该功能')
  152. return
  153. }
  154. if(!this.content){
  155. this.$u.toast('请输入要评论的内容')
  156. return
  157. }
  158. uni.$u.http.post('/api/forum/forum_comment',{fid:this.info.id,comment:this.content}).then(res => {
  159. if(res.code==1){
  160. this.$u.toast(res.msg)
  161. this.content=''
  162. this.getInfo(this.id)
  163. }
  164. })
  165. },
  166. dianzan(item,index){
  167. uni.$u.http.post('/api/forum/forum_give',{fid:this.info.id}).then(res => {
  168. if(res.code==1){
  169. if(this.info.is_give==1){
  170. this.info.is_give=0;
  171. this.info.give=this.info.give-1;
  172. }else{
  173. this.info.is_give=1;
  174. this.info.give=this.info.give+1;
  175. }
  176. this.$u.toast(res.msg)
  177. }
  178. })
  179. },
  180. lookImage(ite) {
  181. let imgsArray = [];
  182. imgsArray[0] = ite;
  183. uni.previewImage({
  184. current: 0,
  185. urls: imgsArray,
  186. });
  187. },
  188. getInfo(id){
  189. uni.$u.http.post('/api/forum/forumdetails', {
  190. id: id
  191. }).then(res => {
  192. this.info=res.data
  193. })
  194. },
  195. itemClick(index){
  196. if(this.current!=index){
  197. this.current=index
  198. }
  199. }
  200. }
  201. }
  202. </script>
  203. <style lang="scss">
  204. .topright {
  205. margin-right: 20rpx;
  206. width: 108rpx;
  207. height: 56rpx;
  208. text-align: center;
  209. line-height: 56rpx;
  210. border-radius: 28rpx;
  211. border: 3rpx solid #C7A6CE;
  212. font-weight: 400;
  213. color: #999999;
  214. background: linear-gradient(180deg, #FFAEAE 0%, #A890FE 100%);
  215. -webkit-background-clip: text;
  216. -webkit-text-fill-color: transparent;
  217. }
  218. .bottom{
  219. color: #999999;
  220. font-size: 24rpx;
  221. .zan{
  222. margin-right: 40rpx;
  223. // font-weight: 400;
  224. // background: linear-gradient(180deg, #FFAEAE 0%, #A890FE 100%);
  225. // -webkit-background-clip: text;
  226. // -webkit-text-fill-color: transparent;
  227. image{
  228. vertical-align: middle;
  229. width: 36rpx;
  230. height: 36rpx;
  231. margin-right: 4rpx;
  232. }
  233. }
  234. .zan1 {
  235. background: linear-gradient(180deg, #FFAEAE 0%, #A890FE 100%);
  236. -webkit-background-clip: text;
  237. -webkit-text-fill-color: transparent;
  238. }
  239. .talk{
  240. image{
  241. vertical-align: middle;
  242. width: 36rpx;
  243. height: 36rpx;
  244. margin-right: 4rpx;
  245. }
  246. }
  247. }
  248. .pinglunitem{
  249. padding-bottom: 28rpx;
  250. border-bottom: 2rpx solid #F2F2F2;
  251. }
  252. .pinglun{
  253. padding-left: 118rpx;
  254. color: #999999;
  255. font-size: 20rpx;
  256. }
  257. .content{
  258. margin: 12rpx 32rpx 12rpx 118rpx;
  259. font-size: 24rpx;
  260. color: #222222;
  261. line-height: 34rpx;
  262. }
  263. .bottomBox{
  264. box-sizing: border-box;
  265. padding-top: 16rpx;
  266. position: fixed;
  267. bottom: 0;
  268. left: 0;
  269. right: 0;
  270. width: 750rpx;
  271. height: 166rpx;
  272. background: #FFFFFF;
  273. box-shadow: 0px 0px 8rpx 0px rgba(0,0,0,0.1000);
  274. input{
  275. padding-left: 32rpx;
  276. width: 690rpx;
  277. height: 72rpx;
  278. background: #F3F3F3;
  279. border-radius: 40rpx;
  280. margin: 0 auto;
  281. }
  282. }
  283. .index{
  284. padding-bottom: 170rpx;
  285. }
  286. .topleft{
  287. image{
  288. width: 76rpx;
  289. height: 76rpx;
  290. border-radius: 50%;
  291. margin-right: 20rpx;
  292. }
  293. .name{
  294. font-size: 28rpx;
  295. color: #222222;
  296. font-weight: 600;
  297. image{
  298. margin-left: 8rpx;
  299. width: 28rpx;
  300. height: 28rpx;
  301. }
  302. }
  303. .area{
  304. font-size: 20rpx;
  305. color: #999999;
  306. }
  307. }
  308. .tab{
  309. margin-top: 20rpx;
  310. padding-left: 30rpx;
  311. font-size: 30rpx;
  312. color: #999999;
  313. font-weight: 600;
  314. view{
  315. padding-bottom: 10rpx;
  316. margin-right: 40rpx;
  317. }
  318. }
  319. .select{
  320. color: #222222;
  321. position: relative;
  322. }
  323. .select::before{
  324. content: '';
  325. position: absolute;
  326. bottom: 0;
  327. left: 50%;
  328. transform: translateX(-50%);
  329. width: 20rpx;
  330. height: 4rpx;
  331. background: #222222;
  332. border-radius: 2rpx;
  333. }
  334. .bottom{
  335. color: #999999;
  336. font-size: 24rpx;
  337. .zan{
  338. margin-right: 40rpx;
  339. // font-weight: 400;
  340. // background: linear-gradient(180deg, #FFAEAE 0%, #A890FE 100%);
  341. // -webkit-background-clip: text;
  342. // -webkit-text-fill-color: transparent;
  343. image{
  344. vertical-align: middle;
  345. width: 36rpx;
  346. height: 36rpx;
  347. margin-right: 4rpx;
  348. }
  349. }
  350. .talk{
  351. image{
  352. vertical-align: middle;
  353. width: 36rpx;
  354. height: 36rpx;
  355. margin-right: 4rpx;
  356. }
  357. }
  358. }
  359. .imaglist{
  360. flex-wrap: wrap;
  361. .imgbox{
  362. margin-right: 15rpx;
  363. max-width: 220rpx;
  364. max-height: 220rpx;
  365. margin-bottom: 20rpx;
  366. image{
  367. max-width: 220rpx;
  368. max-height: 220rpx;
  369. border-radius: 20px;
  370. }
  371. }
  372. .imgbox:nth-child(3n+3) {
  373. margin-right: 0;
  374. }
  375. }
  376. .iteminfo{
  377. margin: 22rpx 0 20rpx;
  378. font-size: 28rpx;
  379. color: #222222;
  380. }
  381. .item{
  382. padding: 36rpx 30rpx;
  383. border-bottom: 2rpx solid #F2F2F2;
  384. .video{
  385. margin-bottom: 42rpx;
  386. width: 690rpx;
  387. height: 320rpx;
  388. border-radius: 20rpx;
  389. }
  390. .topright{
  391. width: 108rpx;
  392. height: 56rpx;
  393. text-align: center;
  394. line-height: 56rpx;
  395. border-radius: 28rpx;
  396. border: 3rpx solid #C7A6CE;
  397. font-weight: 400;
  398. color: #999999;
  399. background: linear-gradient(180deg, #FFAEAE 0%, #A890FE 100%);
  400. -webkit-background-clip: text;
  401. -webkit-text-fill-color: transparent;
  402. }
  403. }
  404. </style>