forum.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  1. <template>
  2. <view>
  3. <image src="../../static/bg.png" mode="" class="bg"></image>
  4. <view class="top">
  5. <image src="../../static/forum/1@2x.png" mode=""></image>
  6. </view>
  7. <view class="content">
  8. <view class="item" v-for="(item,index) in list" :key="index">
  9. <view class="top1 u-flex u-row-between">
  10. <view class="topleft u-flex">
  11. <image :src="item.headimg" mode="" @click="headclick(item)"></image>
  12. <view class="">
  13. <view class="name">
  14. {{item.nickame}}
  15. <image src="../../static/index/1@2x.png" mode="" v-show="item.sex==2"></image>
  16. <image src="../../static/index/2@2x.png" mode="" v-show="item.sex==1"></image>
  17. </view>
  18. <view class="area">
  19. {{item.city}}·{{item.age}}岁
  20. </view>
  21. </view>
  22. </view>
  23. <view class="topright" @click="toguanzhu(item,index)">
  24. {{item.guanzhu==1?'已关注':'未关注'}}
  25. </view>
  26. </view>
  27. <view class="iteminfo">
  28. {{item.content}}
  29. </view>
  30. <view class="imaglist u-flex" v-if="item.suffix=='png'||item.suffix=='jpg'">
  31. <view class="imgbox" v-for="(ite,ind) in item.show_images" :key="ind">
  32. <image :src="ite" mode="" @click="lookImage(ite)"></image>
  33. </view>
  34. </view>
  35. <video :src="item.show_images[0]" class="video" v-if="item.suffix=='mp4'"></video>
  36. <view class="bottom u-flex u-row-right">
  37. <view class="zan" :class="{'zan1':item.is_give==1}" @click="dianzan(item,index)">
  38. <image src="../../static/forum/2@2x.png" mode="" v-show="item.is_give==1"></image>
  39. <image src="../../static/forum/5@2x.png" mode="" v-show="item.is_give==0"></image>
  40. <text>{{item.give}}</text>
  41. </view>
  42. <view class="talk" @click="itemClick(item)">
  43. <image src="../../static/forum/3@2x.png" mode=""></image>
  44. <text>{{item.comment}}</text>
  45. </view>
  46. </view>
  47. </view>
  48. </view>
  49. <image src="../../static/forum/4@2x.png" mode="" @click="publish" class="fa"></image>
  50. <image src="../../static/forum/weirenzheng.png" mode="" class="norenzheng" v-show="show"></image>
  51. </view>
  52. </template>
  53. <script>
  54. export default {
  55. onShow() {
  56. this.page=1
  57. this.getList()
  58. this.getUserInfo()
  59. },
  60. onPullDownRefresh() {
  61. this.page=1
  62. this.getList()
  63. this.getUserInfo()
  64. setTimeout(function () {
  65. uni.stopPullDownRefresh();
  66. }, 1000);
  67. },
  68. onReachBottom() {
  69. this.page++
  70. this.getList()
  71. },
  72. data() {
  73. return {
  74. info:{},
  75. show: false,
  76. page: 1,
  77. list: []
  78. }
  79. },
  80. methods: {
  81. getUserInfo(){
  82. uni.$u.http.post('/api/user/userinfo').then(res => {
  83. if(res.code==1){
  84. this.info=res.data
  85. }
  86. })
  87. },
  88. headclick(item){
  89. var id=uni.setStorageSync('userId')
  90. if(id&&id==item.m_id){
  91. uni.navigateTo({
  92. url:'../profile/myPage'
  93. })
  94. }else{
  95. uni.navigateTo({
  96. url:'/pages/profile/otherPage?id='+item.m_id
  97. })
  98. }
  99. },
  100. toguanzhu(item,index){
  101. uni.$u.http.post('/api/user/user_follow',{mid:item.m_id}).then(res => {
  102. if(res.code==1){
  103. if(item.guanzhu==1){
  104. this.list[index].guanzhu=0;
  105. }else{
  106. this.list[index].guanzhu=1;
  107. }
  108. this.$u.toast(res.msg)
  109. }
  110. })
  111. },
  112. dianzan(item,index){
  113. uni.$u.http.post('/api/forum/forum_give',{fid:item.id}).then(res => {
  114. if(res.code==1){
  115. if(item.is_give==1){
  116. this.list[index].is_give=0;
  117. this.list[index].give=this.list[index].give-1;
  118. }else{
  119. this.list[index].is_give=1;
  120. this.list[index].give=this.list[index].give+1;
  121. }
  122. this.$u.toast(res.msg)
  123. }
  124. })
  125. },
  126. //查看图片
  127. lookImage(ite) {
  128. let imgsArray = [];
  129. imgsArray[0] = ite;
  130. uni.previewImage({
  131. current: 0,
  132. urls: imgsArray,
  133. });
  134. },
  135. getList() {
  136. uni.$u.http.post('/api/forum/index', {
  137. page: this.page
  138. }).then(res => {
  139. if(this.page==1){
  140. this.list = res.data
  141. }else{
  142. this.list = [...this.list, ...res.data]
  143. }
  144. })
  145. },
  146. itemClick(item) {
  147. uni.navigateTo({
  148. url: './forumInfo?id='+item.id
  149. });
  150. },
  151. publish() {
  152. if(this.info.vip_level==0){
  153. if(!this.show){
  154. this.show=true
  155. setTimeout(()=>{
  156. this.show=false
  157. },2000)
  158. }
  159. return
  160. }
  161. if(this.info.vip_level==2){
  162. this.$u.toast('经用户反馈,您账户存在违规行为,暂不支持使用该功能')
  163. return
  164. }
  165. if(this.info.vip_level==3){
  166. this.$u.toast('您的账户已注销,暂不支持使用该功能')
  167. return
  168. }
  169. // if(!this.show){
  170. // this.show=true
  171. // setTimeout(()=>{
  172. // this.show=false
  173. // },2000)
  174. // }
  175. uni.navigateTo({
  176. url: './publish'
  177. });
  178. }
  179. }
  180. }
  181. </script>
  182. <style lang="scss">
  183. .norenzheng {
  184. width: 160rpx;
  185. height: 44rpx;
  186. position: fixed;
  187. bottom: 10rpx;
  188. left: 50%;
  189. transform: translateX(-50%);
  190. }
  191. .fa {
  192. width: 100rpx;
  193. height: 102rpx;
  194. position: fixed;
  195. bottom: 26rpx;
  196. right: 30rpx;
  197. }
  198. .bottom {
  199. color: #999999;
  200. font-size: 24rpx;
  201. .zan {
  202. margin-right: 40rpx;
  203. font-weight: 400;
  204. // background: linear-gradient(180deg, #FFAEAE 0%, #A890FE 100%);
  205. // -webkit-background-clip: text;
  206. // -webkit-text-fill-color: transparent;
  207. image {
  208. vertical-align: middle;
  209. width: 36rpx;
  210. height: 36rpx;
  211. margin-right: 4rpx;
  212. }
  213. }
  214. .zan1 {
  215. background: linear-gradient(180deg, #FFAEAE 0%, #A890FE 100%);
  216. -webkit-background-clip: text;
  217. -webkit-text-fill-color: transparent;
  218. }
  219. .talk {
  220. image {
  221. vertical-align: middle;
  222. width: 36rpx;
  223. height: 36rpx;
  224. margin-right: 4rpx;
  225. }
  226. }
  227. }
  228. .imaglist {
  229. flex-wrap: wrap;
  230. .imgbox {
  231. margin-right: 15rpx;
  232. max-width: 220rpx;
  233. max-height: 220rpx;
  234. margin-bottom: 20rpx;
  235. image {
  236. max-width: 220rpx;
  237. max-height: 220rpx;
  238. border-radius: 20px;
  239. }
  240. }
  241. .imgbox:nth-child(3n+3) {
  242. margin-right: 0;
  243. }
  244. }
  245. .iteminfo {
  246. margin: 22rpx 0 20rpx;
  247. font-size: 28rpx;
  248. color: #222222;
  249. }
  250. .content {
  251. width: 750rpx;
  252. background: #FFFFFF;
  253. border-radius: 40rpx;
  254. .item {
  255. padding: 36rpx 30rpx;
  256. border-bottom: 2rpx solid #F2F2F2;
  257. .video {
  258. margin-bottom: 42rpx;
  259. width: 690rpx;
  260. height: 320rpx;
  261. border-radius: 20rpx;
  262. }
  263. .topleft {
  264. image {
  265. width: 76rpx;
  266. height: 76rpx;
  267. border-radius: 50%;
  268. margin-right: 20rpx;
  269. }
  270. .name {
  271. font-size: 28rpx;
  272. color: #222222;
  273. font-weight: 600;
  274. image {
  275. margin-left: 8rpx;
  276. width: 28rpx;
  277. height: 28rpx;
  278. }
  279. }
  280. .area {
  281. font-size: 20rpx;
  282. color: #999999;
  283. }
  284. }
  285. .topright {
  286. width: 108rpx;
  287. height: 56rpx;
  288. text-align: center;
  289. line-height: 56rpx;
  290. border-radius: 28rpx;
  291. border: 3rpx solid #C7A6CE;
  292. font-weight: 400;
  293. color: #999999;
  294. background: linear-gradient(180deg, #FFAEAE 0%, #A890FE 100%);
  295. -webkit-background-clip: text;
  296. -webkit-text-fill-color: transparent;
  297. }
  298. }
  299. }
  300. .top {
  301. padding-top: 44rpx;
  302. padding-left: 30rpx;
  303. image {
  304. width: 102rpx;
  305. height: 60rpx;
  306. }
  307. }
  308. </style>