quanzi-info.vue 10 KB

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