quanzi-info.vue 10 KB

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