talkInfo.vue 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358
  1. <template>
  2. <view style="padding: 0 30rpx;">
  3. <view class="" style="font-size: 40rpx;text-align: center;">
  4. {{info.title}}
  5. </view>
  6. <rich-text :nodes="info.content"></rich-text>
  7. <view class="comment">
  8. <view class="title u-flex u-row-between">
  9. <text>评论({{total}})</text>
  10. <text @click="towrite">写留言</text>
  11. </view>
  12. <view class="" style="text-align: center;font-size: 32rpx;color: #bbb;" v-if="commentList.length==0">
  13. 暂无评论
  14. </view>
  15. <view class="commentItem" v-for="(item,index) in commentList" :key="index">
  16. <view class="user">
  17. <image :src="item.headimg" mode="" class="avatar"></image><text class="name">{{item.nickname}}</text>
  18. </view>
  19. <view class="content">
  20. <view class="word">
  21. {{item.content}}
  22. </view>
  23. <view class="contentBottom u-flex u-row-between">
  24. <text class="date">{{item.create_time}}</text>
  25. <text class="reply" @click="openpopup(item)">回复</text>
  26. </view>
  27. <!-- <view class="commentItem" v-for="(item,index) in 4" v-show="index<2">
  28. <view class="user">
  29. <image src="../../static/auth/2@2x.png" mode="" class="avatar"></image><text class="name">养乐多03y</text>
  30. </view>
  31. <view class="content">
  32. <view class="word">
  33. 知识学多了就明白自己的利益是多么重要了知识学多了就明白自己的利益是多么重要了
  34. </view>
  35. <view class="contentBottom u-flex u-row-between">
  36. <text class="date">2023-03-21</text>
  37. <text class="reply">回复</text>
  38. </view>
  39. </view>
  40. </view> -->
  41. <view class="more u-flex u-row-center" v-if="item.count>0">
  42. <text @click="openpopup(item)">查看全部{{item.count}}条回复</text><u-icon name="arrow-right" color="#444444" size="14"></u-icon>
  43. </view>
  44. </view>
  45. </view>
  46. </view>
  47. <view class="submit u-flex u-row-between" v-show="isWrite">
  48. <input type="text" v-model="comment">
  49. <text @click="public(1)">发布</text>
  50. </view>
  51. <u-popup :show="show" mode="bottom" :round="10" @close="show=false">
  52. <view class="popup">
  53. <view class="popupTitle">
  54. 评论回复
  55. </view>
  56. <view class="commentItem commentItem1" >
  57. <view class="user">
  58. <image :src="item.headimg" mode="" class="avatar"></image><text class="name">{{item.nickname}}</text>
  59. </view>
  60. <view class="content">
  61. <view class="word">
  62. {{item.content}}
  63. </view>
  64. <view class="contentBottom u-flex u-row-between">
  65. <text class="date">{{item.create_time}}</text>
  66. <!-- <text class="reply" @click="openpopup">回复</text> -->
  67. </view>
  68. </view>
  69. </view>
  70. <view class="evenyComment">
  71. <view class="evenyTitle">
  72. 全部回复
  73. </view>
  74. <view class="commentItem " v-for="(item,index) in secondCommentList" :key="index">
  75. <view class="user">
  76. <image :src="item.headimg" mode="" class="avatar"></image><text class="name">{{item.nickname}}</text>
  77. </view>
  78. <view class="content">
  79. <view class="word">
  80. {{item.content}}
  81. </view>
  82. <view class="contentBottom u-flex u-row-between">
  83. <text class="date">{{item.create_time}}</text>
  84. <!-- <text class="reply" @click="openpopup">回复</text> -->
  85. </view>
  86. </view>
  87. </view>
  88. </view>
  89. <view class="submit u-flex u-row-between" >
  90. <input type="text" v-model="comment">
  91. <text @click="public(2)">发布</text>
  92. </view>
  93. </view>
  94. </u-popup>
  95. </view>
  96. </template>
  97. <script>
  98. export default {
  99. onReachBottom() {
  100. if(this.commentList.length<this.total){
  101. this.page++
  102. this.getComment()
  103. }
  104. },
  105. onLoad(option) {
  106. this.getinfo(option.id)
  107. if (!uni.getStorageSync('token')) {
  108. this.is_login=false
  109. }else{
  110. this.is_login=true
  111. }
  112. if (uni.getStorageSync('userInfo')) {
  113. this.userinfo=JSON.parse(uni.getStorageSync('userInfo'))
  114. }
  115. },
  116. data() {
  117. return {
  118. userinfo:{},
  119. is_login:false,
  120. info:{},
  121. isWrite:false,
  122. comment:'',
  123. show:false,
  124. page:1,
  125. commentList:[],
  126. secondCommentList:[],
  127. total:0,
  128. item:{}
  129. }
  130. },
  131. methods: {
  132. toLogin(){
  133. uni.navigateTo({
  134. url:'/pages/profile/login'
  135. })
  136. },
  137. towrite(){
  138. if(!this.is_login){
  139. this.toLogin()
  140. return
  141. }
  142. if (this.userinfo.is_info == 0) {
  143. uni.navigateTo({
  144. url: '/pages/index/base'
  145. })
  146. return
  147. }
  148. this.isWrite=!this.isWrite
  149. },
  150. openpopup(item){
  151. this.item={}
  152. this.item=item
  153. this.secondCommentList=[]
  154. let data={
  155. id:this.info.id,
  156. page_num:100,
  157. page:1,
  158. type:2,
  159. belong_id:item.id
  160. }
  161. uni.$u.http.post('/api/Index/comment_list',data).then(res => {
  162. if(res.code==1){
  163. this.secondCommentList=res.data.data
  164. }
  165. })
  166. this.show=true
  167. },
  168. public(type){
  169. if(!this.is_login){
  170. this.toLogin()
  171. return
  172. }
  173. if (this.userinfo.is_info == 0) {
  174. uni.navigateTo({
  175. url: '/pages/index/base'
  176. })
  177. return
  178. }
  179. if(!this.comment){
  180. this.$u.toast('请输入评论内容')
  181. return
  182. }else{
  183. let data={
  184. type:type,
  185. articleid:this.info.id,
  186. content:this.comment,
  187. belong_id:type==2?this.item.id:''
  188. }
  189. uni.$u.http.post('/api/Index/comment',data).then(res => {
  190. console.log(121,res)
  191. if(res.code==1){
  192. this.$u.toast('发布成功,正在审核中')
  193. this.isWrite=false
  194. this.comment=''
  195. this.show=false
  196. }
  197. })
  198. }
  199. },
  200. getinfo(id){
  201. uni.$u.http.post('/api/index/articlederail',{id:id}).then(res => {
  202. this.info=res.data
  203. this.getComment()
  204. })
  205. },
  206. getComment(){
  207. let data={
  208. id:this.info.id,
  209. page_num:10,
  210. page:this.page,
  211. type:1
  212. }
  213. uni.$u.http.post('/api/Index/comment_list',data).then(res => {
  214. if(res.code==1){
  215. this.total=res.data.total
  216. if(this.page==1){
  217. this.commentList=res.data.data
  218. }else{
  219. this.commentList=[...this.commentList,...res.data.data]
  220. }
  221. }
  222. })
  223. }
  224. }
  225. }
  226. </script>
  227. <style lang="scss">
  228. .submit{
  229. align-items: flex-start;
  230. box-sizing: border-box;
  231. padding: 18rpx 30rpx 0;
  232. position: fixed;
  233. bottom: 0;
  234. left: 0;
  235. right: 0;
  236. width: 750rpx;
  237. height: 166rpx;
  238. background: #FFFFFF;
  239. box-shadow: 0rpx 0rpx 0rpx 0rpx rgba(0,0,0,0.5);
  240. input{
  241. box-sizing: border-box;
  242. padding: 0 20rpx;
  243. width: 598rpx;
  244. height: 72rpx;
  245. line-height: 72rpx;
  246. background: #F1F1F1;
  247. border-radius: 36rpx;
  248. }
  249. text{
  250. line-height: 72rpx;
  251. font-size: 36rpx;
  252. font-weight: bold;
  253. color: #222222;
  254. background: linear-gradient(180deg, #FFBAE7 0%, #9956FF 100%);
  255. -webkit-background-clip: text;
  256. -webkit-text-fill-color: transparent;
  257. }
  258. }
  259. .comment{
  260. margin-top: 22rpx;
  261. position: relative;
  262. padding-bottom:166rpx;
  263. .title{
  264. font-size: 34rpx;
  265. color: #131415;
  266. font-weight: bold;
  267. margin-bottom: 36rpx;
  268. }
  269. }
  270. .commentItem{
  271. margin-top: 30rpx;
  272. .user{
  273. .avatar{
  274. width: 64rpx;
  275. height: 64rpx;
  276. border-radius: 50%;
  277. vertical-align: middle;
  278. margin-right: 20rpx;
  279. }
  280. .name{
  281. font-size: 32rpx;
  282. font-weight: bold;
  283. }
  284. }
  285. .content{
  286. margin-left: 84rpx;
  287. .word{
  288. font-size: 32rpx;
  289. margin-bottom: 20rpx;
  290. }
  291. .contentBottom{
  292. .date{
  293. font-size: 24rpx;
  294. color: #89898A;
  295. }
  296. .reply{
  297. margin-right: 20rpx;
  298. font-size: 24rpx;
  299. }
  300. }
  301. .more{
  302. // padding-left: 10rpx;
  303. text-align: center;
  304. font-size: 20rpx;
  305. color: #444444;
  306. margin-top: 20rpx;
  307. // margin-left: 92rpx;
  308. width: 228rpx;
  309. height: 40rpx;
  310. line-height: 40rpx;
  311. background: #F1F1F1;
  312. border-radius: 20rpx;
  313. text{
  314. margin-right: 8rpx;
  315. }
  316. }
  317. }
  318. }
  319. .popup{
  320. height: 800rpx;
  321. overflow: scroll;
  322. padding: 36rpx 30rpx 166rpx;
  323. .popupTitle{
  324. text-align: center;
  325. margin-bottom: 40rpx;
  326. font-size: 36rpx;
  327. font-weight: bold;
  328. }
  329. .commentItem1 {
  330. border-bottom: 2rpx solid #EAEAEA;
  331. padding-bottom: 44rpx
  332. }
  333. .evenyComment{
  334. margin-top: 28rpx;
  335. .evenyTitle{
  336. font-size: 28rpx;
  337. font-weight: bold;
  338. margin-bottom: 32rpx;
  339. }
  340. }
  341. }
  342. </style>