quanzi-info.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471
  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 v-for="(item,index) in list" :key="index" @click="toinfo(item)">
  37. <view class="luntan-item">
  38. <view class="luntan-user u-flex u-row-between">
  39. <image class="user-head" @click.stop="touser(item)" :src="item.userinfo.avatar" mode=""></image>
  40. <view class="user-center u-flex-1 u-flex-col">
  41. <text>{{item.userinfo.name}}</text>
  42. <text>{{item.userinfo.company_name.name}}</text>
  43. </view>
  44. <text class="guanzhu-btn" @click.stop="guanzhu(item)">{{item.is_follow ? '已关注' : '关注'}}</text>
  45. </view>
  46. <zhao-text :text="item.content"></zhao-text>
  47. <view class="luntan-img u-flex u-flex-wrap u-row-between" v-if="item.images">
  48. <image :src="a" v-for="(a,b) in item.images.split(',')" :key="b"
  49. @click.stop="openimg(item.images.split(','),b)" mode="aspectFill"></image>
  50. <view style="width: 210rpx;"></view>
  51. </view>
  52. <view class="item-down u-flex u-row-between">
  53. <view class="u-flex u-row-center down-item" @click.stop="dianzan(item)">
  54. <image v-if="item.is_like" src="../static/images/dianzan1.png" mode=""></image>
  55. <image v-else src="../static/images/dianzan.png" mode=""></image>
  56. <text class="text1">{{item.like_count}}</text>
  57. </view>
  58. <view class="u-flex u-row-center down-item">
  59. <image src="../static/images/pinglun.png" mode=""></image>
  60. <text class="text1">{{item.comment_count}}</text>
  61. </view>
  62. <view class="u-flex u-row-center down-item">
  63. <image src="../static/images/liulan.png" mode=""></image>
  64. <text class="text1">{{item.read}}</text>
  65. </view>
  66. </view>
  67. </view>
  68. <u-gap height="20" bg-color="#F6F6F6"></u-gap>
  69. </view>
  70. <view style="height: 150rpx;"></view>
  71. <view class="safe-area-inset-bottom"></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. z-index: 99;
  249. background-color: #fff;
  250. padding: 20rpx 32rpx 0 32rpx;
  251. box-sizing: border-box;
  252. .down-btn {
  253. height: 92rpx;
  254. background: #0C66C2;
  255. border-radius: 12rpx;
  256. image {
  257. width: 36rpx;
  258. height: 36rpx;
  259. margin-right: 12rpx;
  260. }
  261. text {
  262. font-size: 32rpx;
  263. font-family: PingFangSC-Medium, PingFang SC;
  264. font-weight: 500;
  265. color: #FFFFFF;
  266. }
  267. }
  268. }
  269. .luntan-item {
  270. background: #FFFFFF;
  271. border-radius: 20rpx;
  272. padding: 0 32rpx;
  273. .item-down {
  274. height: 84rpx;
  275. .down-item {
  276. width: 214rpx;
  277. image {
  278. width: 33rpx;
  279. height: 33rpx;
  280. }
  281. .text1 {
  282. font-size: 26rpx;
  283. font-family: ArialMT;
  284. color: #777777;
  285. margin-left: 12rpx;
  286. }
  287. }
  288. }
  289. .luntan-img {
  290. margin-top: 20rpx;
  291. width: 100%;
  292. image {
  293. width: 210rpx;
  294. height: 210rpx;
  295. border-radius: 10rpx;
  296. // margin-right: 10rpx;
  297. margin-bottom: 10rpx;
  298. }
  299. }
  300. .luntan-img::after {
  301. width: 210rpx;
  302. }
  303. .luntan-user {
  304. height: 130rpx;
  305. .guanzhu-btn {
  306. width: 112rpx;
  307. line-height: 48rpx;
  308. border-radius: 24rpx;
  309. border: 1rpx solid #0C66C2;
  310. text-align: center;
  311. font-size: 26rpx;
  312. font-family: PingFangSC-Regular, PingFang SC;
  313. font-weight: 400;
  314. color: #0C66C2;
  315. }
  316. .user-center {
  317. margin: 0 16rpx;
  318. min-width: 1rpx;
  319. text:first-child {
  320. font-size: 28rpx;
  321. font-family: PingFangSC-Medium, PingFang SC;
  322. font-weight: 500;
  323. color: #222222;
  324. margin-bottom: 4rpx;
  325. }
  326. text:last-child {
  327. font-size: 20rpx;
  328. font-family: PingFangSC-Regular, PingFang SC;
  329. font-weight: 400;
  330. color: #818389;
  331. }
  332. }
  333. .user-head {
  334. width: 72rpx;
  335. height: 72rpx;
  336. border-radius: 100rpx;
  337. }
  338. }
  339. }
  340. .quanzi-title {
  341. height: 116rpx;
  342. padding: 0 32rpx;
  343. border-bottom: 2rpx solid #F4F4F4;
  344. background-color: #fff;
  345. border-radius: 28rpx 28rpx 0 0;
  346. box-sizing: border-box;
  347. }
  348. .quanzi-header {
  349. height: 180rpx;
  350. padding: 0 32rpx;
  351. box-sizing: border-box;
  352. .header-down {
  353. .down-guanzhu1 {
  354. width: 144rpx;
  355. line-height: 60rpx;
  356. background: rgba(193, 224, 255, 0.4);
  357. border-radius: 30rpx;
  358. text-align: center;
  359. font-size: 24rpx;
  360. font-family: PingFangSC-Medium, PingFang SC;
  361. font-weight: 500;
  362. color: #FFFFFF;
  363. }
  364. .down-guanzhu {
  365. width: 164rpx;
  366. height: 60rpx;
  367. background: #FFFFFF;
  368. border-radius: 30rpx;
  369. image {
  370. width: 28rpx;
  371. height: 28rpx;
  372. margin-right: 6rpx;
  373. }
  374. text {
  375. font-size: 24rpx;
  376. font-family: PingFangSC-Medium, PingFang SC;
  377. font-weight: 500;
  378. color: #0C66C2;
  379. }
  380. }
  381. .text1 {
  382. font-size: 36rpx;
  383. font-family: SFPro-Bold, SFPro;
  384. font-weight: bold;
  385. color: #FFFFFF;
  386. }
  387. .text2 {
  388. font-size: 22rpx;
  389. font-family: SFPro-Bold, SFPro;
  390. color: #FFFFFF;
  391. margin-left: 4rpx;
  392. }
  393. .text3 {
  394. height: 30rpx;
  395. border-right: 2rpx solid #fff;
  396. margin: 0 30rpx;
  397. }
  398. }
  399. .header-top {
  400. margin-bottom: 20rpx;
  401. image {
  402. width: 40rpx;
  403. height: 40rpx;
  404. margin-right: 16rpx;
  405. }
  406. text {
  407. font-size: 38rpx;
  408. font-family: PingFangSC-Medium, PingFang SC;
  409. font-weight: 500;
  410. color: #FFFFFF;
  411. }
  412. }
  413. }
  414. .quanzi-top {
  415. position: absolute;
  416. top: 0;
  417. left: 0;
  418. height: 392rpx;
  419. width: 750rpx;
  420. z-index: -1;
  421. }
  422. }
  423. ::v-deep .u-subsection--button {
  424. height: 60rpx !important;
  425. border-radius: 30rpx !important;
  426. }
  427. ::v-deep .u-subsection__item {
  428. border: 0 solid #fff !important;
  429. }
  430. ::v-deep .u-subsection--button__bar {
  431. border-radius: 30rpx !important;
  432. }
  433. </style>