quanzi-info.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468
  1. <template>
  2. <view class="quanzi-info">
  3. <image v-if="detail.image" :src="detail.image" class="quanzi-top" mode="aspectFill"></image>
  4. <image v-else src="static/quanzi-top.png" class="quanzi-top" mode=""></image>
  5. <u-navbar :fixed="false" bgColor='rgba(0,0,0,0)' placeholder :safeAreaInsetTop="true"></u-navbar>
  6. <view class="quanzi-header u-flex-col u-row-center">
  7. <view class="header-top u-flex">
  8. <image src="static/quanzi-img.png" mode=""></image>
  9. <text class="u-flex-1 u-line-1">#{{detail.title || ''}}</text>
  10. </view>
  11. <view class="header-down u-flex u-row-between">
  12. <view class="u-flex">
  13. <text class="text1">{{detail.article_count || 0}}</text>
  14. <text class="text2">条帖子</text>
  15. <text class="text3"></text>
  16. <text class="text1">{{detail.follow_count || 0}}</text>
  17. <text class="text2">关注</text>
  18. </view>
  19. <view v-if="detail.is_follow" @click="guanzhuquanzi" class="down-guanzhu1 u-flex u-row-center">
  20. 已关注
  21. </view>
  22. <view v-else @click="guanzhuquanzi" class="down-guanzhu u-flex u-row-center">
  23. <image src="static/plus.png" mode=""></image>
  24. <text>关注圈子</text>
  25. </view>
  26. </view>
  27. </view>
  28. <view class="quanzi-title u-flex u-row-between">
  29. <text class="text">动态</text>
  30. <view class="subsection" style="width: 182rpx;">
  31. <u-subsection style="border: 0 solid #fff;" mode="button" fontSize="12" :list="tabslist" bgColor="#ECECEC"
  32. :current="current" @change="changetabs"></u-subsection>
  33. </view>
  34. </view>
  35. <view v-for="(item,index) in list" :key="index" @click="toinfo(item)">
  36. <view class="luntan-item">
  37. <view class="luntan-user u-flex u-row-between">
  38. <image class="user-head" @click.stop="touser(item)" :src="item.userinfo.avatar" mode=""></image>
  39. <view class="user-center u-flex-1 u-flex-col">
  40. <text>{{item.userinfo.name}}</text>
  41. <text>{{item.userinfo.company_name.name}}</text>
  42. </view>
  43. <text class="guanzhu-btn" @click.stop="guanzhu(item)">{{item.is_follow ? '已关注' : '关注'}}</text>
  44. </view>
  45. <zhao-text :text="item.content"></zhao-text>
  46. <view class="luntan-img u-flex u-flex-wrap u-row-between" v-if="item.images">
  47. <image :src="a" v-for="(a,b) in item.images.split(',')" :key="b"
  48. @click.stop="openimg(item.images.split(','),b)" mode="aspectFill"></image>
  49. <view style="width: 210rpx;"></view>
  50. </view>
  51. <view class="item-down u-flex u-row-between">
  52. <view class="u-flex u-row-center down-item" @click.stop="dianzan(item)">
  53. <image v-if="item.is_like" src="../static/images/dianzan1.png" mode=""></image>
  54. <image v-else src="../static/images/dianzan.png" mode=""></image>
  55. <text class="text1">{{item.like_count}}</text>
  56. </view>
  57. <view class="u-flex u-row-center down-item">
  58. <image src="../static/images/pinglun.png" mode=""></image>
  59. <text class="text1">{{item.comment_count}}</text>
  60. </view>
  61. <view class="u-flex u-row-center down-item">
  62. <image src="../static/images/liulan.png" mode=""></image>
  63. <text class="text1">{{item.read}}</text>
  64. </view>
  65. </view>
  66. </view>
  67. <u-gap height="20" bg-color="#F6F6F6"></u-gap>
  68. </view>
  69. <view style="height: 150rpx;"></view>
  70. <view class="safe-area-inset-bottom"></view>
  71. <view class="quanzi-down">
  72. <view class="down-btn u-flex u-row-center" @click="toadd">
  73. <image src="static/add.png" mode=""></image>
  74. <text>发布帖子</text>
  75. </view>
  76. <view class="safe-area-inset-bottom"></view>
  77. </view>
  78. </view>
  79. </template>
  80. <script>
  81. import {
  82. articlelike,
  83. follow,
  84. group_details_user,
  85. group_details_article
  86. } from "@/units/inquire.js"
  87. export default {
  88. data() {
  89. return {
  90. tabslist: [{
  91. name: '最热',
  92. id: 2
  93. }, {
  94. name: '最新',
  95. id: 1
  96. }],
  97. current: 0,
  98. id: '',
  99. detail: {},
  100. page: 1,
  101. list: [],
  102. total: 0,
  103. isshow: false,
  104. follow:""
  105. }
  106. },
  107. onLoad(option) {
  108. this.id = option.id
  109. },
  110. onShow() {
  111. if (this.isshow) {
  112. this.isshow = false
  113. } else {
  114. this.getdetail()
  115. this.page = 1
  116. this.list = []
  117. this.getlist()
  118. }
  119. },
  120. onReachBottom() {
  121. if (this.total != this.list.length) {
  122. this.page++
  123. this.getlist()
  124. }
  125. },
  126. methods: {
  127. touser(item) {
  128. uni.navigateTo({
  129. url: "/pagesC/my-luntan?id=" + item.uid
  130. })
  131. },
  132. changetabs(e) {
  133. this.current = e
  134. this.page = 1
  135. this.list = []
  136. this.getlist()
  137. },
  138. dianzan(item) {
  139. uni.showLoading({
  140. mask: true,
  141. title: "请稍后"
  142. })
  143. articlelike({
  144. id: item.id,
  145. }).then(res => {
  146. if (res.code == 1) {
  147. item.is_like = item.is_like ? null : {}
  148. if (item.is_like) {
  149. item.like_count++
  150. } else {
  151. item.like_count--
  152. }
  153. } else {
  154. this.$u.toast(res.msg)
  155. }
  156. })
  157. },
  158. openimg(urls, index) {
  159. this.isshow = true
  160. this.$openimage(urls, index)
  161. },
  162. toadd() {
  163. uni.navigateTo({
  164. url: "/pagesC/add-luntan?quanzi=" + JSON.stringify({
  165. id: this.id,
  166. title: this.detail.title
  167. })
  168. })
  169. },
  170. getdetail() {
  171. group_details_user({
  172. id: this.id
  173. }).then(res => {
  174. this.detail = res.data
  175. this.follow = res.data.is_follow
  176. })
  177. },
  178. getlist() {
  179. group_details_article({
  180. type: this.tabslist[this.current].id,
  181. page: this.page,
  182. id: this.id
  183. }).then(res => {
  184. this.total = res.data.total
  185. this.list = this.list.concat(res.data.data)
  186. })
  187. },
  188. guanzhu(item) {
  189. uni.showLoading({
  190. mask: true,
  191. title: "请稍后"
  192. })
  193. follow({
  194. type: 1,
  195. id: item.uid
  196. }).then(res => {
  197. this.$u.toast(res.msg)
  198. if (res.code == 1) {
  199. setTimeout(() => {
  200. this.page = 1
  201. this.list = []
  202. this.getlist()
  203. }, 800)
  204. }
  205. })
  206. },
  207. guanzhuquanzi() {
  208. uni.showLoading({
  209. mask: true,
  210. title: "请稍后"
  211. })
  212. follow({
  213. type: 2,
  214. id: this.id
  215. }).then(res => {
  216. this.$u.toast(res.msg)
  217. if (res.code == 1) {
  218. this.detail.is_follow = this.detail.is_follow ? null : {}
  219. if (this.detail.is_follow) {
  220. this.detail.follow_count++
  221. } else {
  222. this.detail.follow_count--
  223. }
  224. }
  225. })
  226. },
  227. toinfo(item) {
  228. uni.navigateTo({
  229. url: "/pagesC/luntan-info?id=" + item.id
  230. })
  231. },
  232. }
  233. }
  234. </script>
  235. <style lang="scss" scoped>
  236. .quanzi-info {
  237. position: relative;
  238. // z-index: 1;
  239. .quanzi-down {
  240. position: fixed;
  241. bottom: 0;
  242. left: 0;
  243. width: 750rpx;
  244. z-index: 99;
  245. background-color: #fff;
  246. padding: 20rpx 32rpx 0 32rpx;
  247. box-sizing: border-box;
  248. .down-btn {
  249. height: 92rpx;
  250. background: #0C66C2;
  251. border-radius: 12rpx;
  252. image {
  253. width: 36rpx;
  254. height: 36rpx;
  255. margin-right: 12rpx;
  256. }
  257. text {
  258. font-size: 32rpx;
  259. font-family: PingFangSC-Medium, PingFang SC;
  260. font-weight: 500;
  261. color: #FFFFFF;
  262. }
  263. }
  264. }
  265. .luntan-item {
  266. background: #FFFFFF;
  267. border-radius: 20rpx;
  268. padding: 0 32rpx;
  269. .item-down {
  270. height: 84rpx;
  271. .down-item {
  272. width: 214rpx;
  273. image {
  274. width: 33rpx;
  275. height: 33rpx;
  276. }
  277. .text1 {
  278. font-size: 26rpx;
  279. font-family: ArialMT;
  280. color: #777777;
  281. margin-left: 12rpx;
  282. }
  283. }
  284. }
  285. .luntan-img {
  286. margin-top: 20rpx;
  287. width: 100%;
  288. image {
  289. width: 210rpx;
  290. height: 210rpx;
  291. border-radius: 10rpx;
  292. // margin-right: 10rpx;
  293. margin-bottom: 10rpx;
  294. }
  295. }
  296. .luntan-img::after {
  297. width: 210rpx;
  298. }
  299. .luntan-user {
  300. height: 130rpx;
  301. .guanzhu-btn {
  302. width: 112rpx;
  303. line-height: 48rpx;
  304. border-radius: 24rpx;
  305. border: 1rpx solid #0C66C2;
  306. text-align: center;
  307. font-size: 26rpx;
  308. font-family: PingFangSC-Regular, PingFang SC;
  309. font-weight: 400;
  310. color: #0C66C2;
  311. }
  312. .user-center {
  313. margin: 0 16rpx;
  314. min-width: 1rpx;
  315. text:first-child {
  316. font-size: 28rpx;
  317. font-family: PingFangSC-Medium, PingFang SC;
  318. font-weight: 500;
  319. color: #222222;
  320. margin-bottom: 4rpx;
  321. }
  322. text:last-child {
  323. font-size: 20rpx;
  324. font-family: PingFangSC-Regular, PingFang SC;
  325. font-weight: 400;
  326. color: #818389;
  327. }
  328. }
  329. .user-head {
  330. width: 72rpx;
  331. height: 72rpx;
  332. border-radius: 100rpx;
  333. }
  334. }
  335. }
  336. .quanzi-title {
  337. height: 116rpx;
  338. padding: 0 32rpx;
  339. border-bottom: 2rpx solid #F4F4F4;
  340. background-color: #fff;
  341. border-radius: 28rpx 28rpx 0 0;
  342. box-sizing: border-box;
  343. }
  344. .quanzi-header {
  345. height: 180rpx;
  346. padding: 0 32rpx;
  347. box-sizing: border-box;
  348. .header-down {
  349. .down-guanzhu1 {
  350. width: 144rpx;
  351. line-height: 60rpx;
  352. background: rgba(193, 224, 255, 0.4);
  353. border-radius: 30rpx;
  354. text-align: center;
  355. font-size: 24rpx;
  356. font-family: PingFangSC-Medium, PingFang SC;
  357. font-weight: 500;
  358. color: #FFFFFF;
  359. }
  360. .down-guanzhu {
  361. width: 164rpx;
  362. height: 60rpx;
  363. background: #FFFFFF;
  364. border-radius: 30rpx;
  365. image {
  366. width: 28rpx;
  367. height: 28rpx;
  368. margin-right: 6rpx;
  369. }
  370. text {
  371. font-size: 24rpx;
  372. font-family: PingFangSC-Medium, PingFang SC;
  373. font-weight: 500;
  374. color: #0C66C2;
  375. }
  376. }
  377. .text1 {
  378. font-size: 36rpx;
  379. font-family: SFPro-Bold, SFPro;
  380. font-weight: bold;
  381. color: #FFFFFF;
  382. }
  383. .text2 {
  384. font-size: 22rpx;
  385. font-family: SFPro-Bold, SFPro;
  386. color: #FFFFFF;
  387. margin-left: 4rpx;
  388. }
  389. .text3 {
  390. height: 30rpx;
  391. border-right: 2rpx solid #fff;
  392. margin: 0 30rpx;
  393. }
  394. }
  395. .header-top {
  396. margin-bottom: 20rpx;
  397. image {
  398. width: 40rpx;
  399. height: 40rpx;
  400. margin-right: 16rpx;
  401. }
  402. text {
  403. font-size: 38rpx;
  404. font-family: PingFangSC-Medium, PingFang SC;
  405. font-weight: 500;
  406. color: #FFFFFF;
  407. }
  408. }
  409. }
  410. .quanzi-top {
  411. position: absolute;
  412. top: 0;
  413. left: 0;
  414. height: 392rpx;
  415. width: 750rpx;
  416. z-index: -1;
  417. }
  418. }
  419. ::v-deep .u-subsection--button {
  420. height: 60rpx !important;
  421. border-radius: 30rpx !important;
  422. }
  423. ::v-deep .u-subsection__item {
  424. border: 0 solid #fff !important;
  425. }
  426. ::v-deep .u-subsection--button__bar {
  427. border-radius: 30rpx !important;
  428. }
  429. </style>