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