xiaoxi-list.vue 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431
  1. <template>
  2. <view class="xiaoxi-list">
  3. <view class="xiaoxi-header u-flex u-row-between u-col-bottom">
  4. <view class="header-tabs u-flex-col u-col-center" :class="{tabsactive:current == index}"
  5. @click="changetabs(index)" v-for="(item,index) in tabslist" :key="index">
  6. <text>{{item}}</text>
  7. <text></text>
  8. </view>
  9. </view>
  10. <view class="list-box2" v-if="current == 0">
  11. <view class="list-item" v-for="(item,index) in list" :key="index">
  12. <view class="list-user u-flex u-row-between" @click="touser(item)">
  13. <image :src="item.user_group.avatar" class="user-left" mode="aspectFill"></image>
  14. <view class="user-center u-flex-1 u-flex-col">
  15. <text>{{item.user_group.name}}</text>
  16. <text>{{item.createtime}}</text>
  17. </view>
  18. <view class="huifu-btn" @click.stop="openhuifu(item)">回复</view>
  19. </view>
  20. <view class="pinglun-text">
  21. {{item.content}}
  22. </view>
  23. <view class="pinglun-yuan u-line-1" @click="toinfo(item)">
  24. {{item.item_info.content}}
  25. </view>
  26. </view>
  27. </view>
  28. <view class="list-box2" v-if="current == 1">
  29. <view class="list-item" v-for="(item,index) in list" :key="index">
  30. <view class="list-user u-flex u-row-between" @click="touser(item)">
  31. <image :src="item.user_group.avatar" class="user-left" mode="aspectFill"></image>
  32. <view class="user-center u-flex-1 u-flex-col">
  33. <text>{{item.user_group.name}}</text>
  34. <text>{{item.createtime}}</text>
  35. </view>
  36. </view>
  37. <view class="pinglun-text">
  38. 点赞了你的动态
  39. </view>
  40. <view class="pinglun-yuan u-line-1" @click="toinfo(item)">
  41. {{item.item_info.content}}
  42. </view>
  43. </view>
  44. </view>
  45. <view class="list-box3" v-if="current == 2">
  46. <view class="list-item" v-for="(item,index) in list" :key="index" v-if="item.id != item.user_group.id">
  47. <view class="list-user u-flex u-row-between" @click.stop="touser(item)">
  48. <image :src="item.user_group.avatar" class="user-left" mode=""></image>
  49. <view class="user-center u-flex-1 u-flex-col">
  50. <view class="u-flex center-name">
  51. <text>{{item.user_group.name}}</text>
  52. <text>关注了你</text>
  53. </view>
  54. <text class="center-time">{{item.createtime}}</text>
  55. </view>
  56. <view class="huifu-btn u-flex u-row-center" @click.stop="guan(item)">
  57. <text v-if="item.follow">已关注</text>
  58. <view v-else class="u-flex">
  59. <image src="../static/images/plus.png" mode=""></image>
  60. <text>关注</text>
  61. </view>
  62. </view>
  63. </view>
  64. </view>
  65. </view>
  66. <view style="height: 70vh;display: flex;align-items: center;justify-content: center;" v-if="list.length == 0">
  67. <u-empty text="暂无数据" mode="list"></u-empty>
  68. </view>
  69. <view class="huifu-input u-flex-col u-row-right" v-if="showinput" @click="showinput = false">
  70. <input @click.stop type="text" :focus="showinput" v-model="content" @confirm="huifu"
  71. :adjust-position="false" placeholder="回复" confirm-type="send" :confirm-hold="true">
  72. <view :style="{height:inputheight + 'px'}"></view>
  73. </view>
  74. </view>
  75. </template>
  76. <script>
  77. import {
  78. articlecomment,
  79. message,
  80. follow
  81. } from "@/units/inquire.js"
  82. export default {
  83. data() {
  84. return {
  85. showinput: false,
  86. inputheight: 0,
  87. content: '',
  88. xiaoxidetail: {},
  89. tabslist: ['回复', '点赞', '粉丝'],
  90. current: 0,
  91. page: 1,
  92. total: 0,
  93. list: [],
  94. msg: ''
  95. }
  96. },
  97. onLoad() {
  98. this.getlist()
  99. uni.onKeyboardHeightChange(e => {
  100. this.inputheight = e.height
  101. if (e.height == 0) {
  102. this.showinput = false
  103. }
  104. })
  105. },
  106. onReachBottom() {
  107. if (this.total != this.list.length) {
  108. this.page++
  109. this.getlist()
  110. }
  111. },
  112. methods: {
  113. guan(item) {
  114. follow({
  115. id: item.user_group.id,
  116. type: 1
  117. }).then((res) => {
  118. this.$u.toast(res.msg)
  119. this.page = 1
  120. this.list = []
  121. this.getlist()
  122. })
  123. },
  124. openhuifu(item) {
  125. this.xiaoxidetail = item
  126. this.showinput = true
  127. },
  128. huifu() {
  129. if (!this.content) {
  130. this.$u.toast("请输入内容")
  131. return
  132. }
  133. uni.showLoading({
  134. mask: true,
  135. title: "请稍后"
  136. })
  137. articlecomment({
  138. id: this.xiaoxidetail.article_id,
  139. content: this.content,
  140. comment_id: this.xiaoxidetail.comment_id
  141. }).then(res => {
  142. this.$u.toast(res.msg)
  143. if (res.code == 1) {
  144. this.xiaoxidetail = {}
  145. this.content = ''
  146. this.showinput = false
  147. }
  148. })
  149. },
  150. touser(item) {
  151. uni.navigateTo({
  152. url: "/pagesC/my-luntan?id=" + item.user_group.id
  153. })
  154. },
  155. toinfo(item) {
  156. uni.navigateTo({
  157. url: "/pagesC/luntan-info?id=" + item.article_id
  158. })
  159. },
  160. changetabs(index) {
  161. console.log(111);
  162. this.current = index
  163. this.page = 1
  164. this.total = 0
  165. this.list = []
  166. this.getlist()
  167. },
  168. getlist() {
  169. message({
  170. type: {
  171. 0: 1,
  172. 1: 2,
  173. 2: 3
  174. } [this.current],
  175. page: this.page,
  176. }).then(res => {
  177. this.list = this.list.concat(res.data.data)
  178. this.total = res.data.total
  179. })
  180. }
  181. }
  182. }
  183. </script>
  184. <style lang="scss">
  185. .xiaoxi-list {
  186. .huifu-input {
  187. position: fixed;
  188. top: 0;
  189. left: 0;
  190. width: 750rpx;
  191. height: 100vh;
  192. z-index: 999;
  193. background-color: rgba(0, 0, 0, 0.5);
  194. input {
  195. width: 750rpx;
  196. box-sizing: border-box;
  197. height: 124rpx;
  198. padding: 0 32rpx;
  199. font-size: 30rpx;
  200. border-radius: 28rpx 28rpx 0 0;
  201. background-color: #fff;
  202. }
  203. }
  204. .list-box3 {
  205. padding: 0 32rpx;
  206. background-color: #fff;
  207. .list-item {
  208. padding: 32rpx 0;
  209. border-bottom: 2rpx solid #F4F4F4;
  210. .list-user {
  211. .huifu-btn {
  212. width: 116rpx;
  213. height: 52rpx;
  214. background: #0C66C2;
  215. border-radius: 30rpx;
  216. image {
  217. width: 24rpx;
  218. height: 24rpx;
  219. margin-right: 4rpx;
  220. }
  221. text {
  222. font-size: 22rpx;
  223. font-family: PingFangSC-Regular, PingFang SC;
  224. font-weight: 400;
  225. color: #FFFFFF;
  226. }
  227. }
  228. .user-center {
  229. margin: 0 20rpx;
  230. .center-name {
  231. margin-bottom: 16rpx;
  232. text:first-child {
  233. font-size: 28rpx;
  234. font-family: PingFangSC-Medium, PingFang SC;
  235. font-weight: 500;
  236. color: #222222;
  237. margin-right: 12rpx;
  238. }
  239. text:nth-child(2) {
  240. font-size: 24rpx;
  241. font-family: PingFangSC-Regular, PingFang SC;
  242. font-weight: 400;
  243. color: #777777;
  244. }
  245. }
  246. .center-time {
  247. font-size: 22rpx;
  248. font-family: ArialMT;
  249. color: #999999;
  250. }
  251. }
  252. .user-left {
  253. width: 80rpx;
  254. height: 80rpx;
  255. border-radius: 100rpx;
  256. }
  257. }
  258. }
  259. }
  260. .list-box2 {
  261. padding: 0 32rpx;
  262. background-color: #fff;
  263. .pinglun-yuan {
  264. background: #F6F6F6;
  265. border-radius: 12rpx;
  266. padding: 0 20rpx;
  267. font-size: 26rpx;
  268. font-family: PingFangSC-Regular, PingFang SC;
  269. font-weight: 400;
  270. color: #444444;
  271. height: 60rpx;
  272. line-height: 60rpx;
  273. }
  274. .list-item {
  275. padding: 32rpx 0;
  276. border-bottom: 2rpx solid #F4F4F4;
  277. .pinglun-text {
  278. font-size: 28rpx;
  279. font-family: PingFangSC-Regular, PingFang SC;
  280. font-weight: 400;
  281. color: #333333;
  282. margin-bottom: 24rpx;
  283. }
  284. .list-user {
  285. margin-bottom: 24rpx;
  286. .huifu-btn {
  287. width: 116rpx;
  288. line-height: 52rpx;
  289. border-radius: 28rpx;
  290. border: 1rpx solid #0C66C2;
  291. text-align: center;
  292. font-size: 26rpx;
  293. font-family: PingFangSC-Regular, PingFang SC;
  294. font-weight: 400;
  295. color: #0C66C2;
  296. }
  297. .user-center {
  298. margin: 0 20rpx;
  299. text:first-child {
  300. font-size: 28rpx;
  301. font-family: PingFangSC-Medium, PingFang SC;
  302. font-weight: 500;
  303. color: #222222;
  304. margin-bottom: 16rpx;
  305. }
  306. text:last-child {
  307. font-size: 22rpx;
  308. font-family: ArialMT;
  309. color: #999999;
  310. }
  311. }
  312. .user-left {
  313. width: 80rpx;
  314. height: 80rpx;
  315. border-radius: 100rpx;
  316. }
  317. }
  318. }
  319. }
  320. .list-box1 {
  321. padding: 0 32rpx;
  322. background-color: #fff;
  323. .list-item {
  324. padding: 32rpx 0;
  325. border-bottom: 2rpx solid #F4F4F4;
  326. .xiaoxi-right {
  327. .down {
  328. font-size: 24rpx;
  329. font-family: PingFangSC-Regular, PingFang SC;
  330. font-weight: 400;
  331. color: #555555;
  332. }
  333. .top {
  334. margin-bottom: 6rpx;
  335. text:first-child {
  336. font-size: 28rpx;
  337. font-family: PingFangSC-Medium, PingFang SC;
  338. font-weight: 500;
  339. color: #222222;
  340. }
  341. text:last-child {
  342. font-size: 20rpx;
  343. font-family: ArialMT;
  344. color: #555555;
  345. }
  346. }
  347. }
  348. .xiaoxi-left {
  349. width: 80rpx;
  350. height: 80rpx;
  351. border-radius: 100rpx;
  352. margin-right: 20rpx;
  353. }
  354. }
  355. }
  356. .xiaoxi-header {
  357. height: 90rpx;
  358. position: sticky;
  359. top: 0;
  360. left: 0;
  361. z-index: 99;
  362. background-color: #fff;
  363. width: 750rpx;
  364. padding: 0 80rpx;
  365. box-sizing: border-box;
  366. .header-tabs {
  367. text:first-child {
  368. font-size: 28rpx;
  369. font-family: PingFangSC-Medium, PingFang SC;
  370. font-weight: 500;
  371. color: #888888;
  372. margin-bottom: 16rpx;
  373. }
  374. text:last-child {
  375. width: 20rpx;
  376. height: 6rpx;
  377. border-radius: 8rpx;
  378. }
  379. }
  380. .tabsactive {
  381. text:first-child {
  382. color: #222222;
  383. }
  384. text:last-child {
  385. background-color: #0C66C2;
  386. }
  387. }
  388. }
  389. }
  390. page {
  391. background-color: #F6F6F6;
  392. }
  393. </style>