circles.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565
  1. <!-- 邻里圈 -->
  2. <template>
  3. <view>
  4. <view style="width: 100%;height: 600rpx;position: relative;">
  5. <image src="../../static/care_family.png" style="width: 100%;height:100%;" @longpress="changeBgImg"></image>
  6. <view style="height:44rpx;font-size:32rpx;font-family:PingFang SC;font-weight:bold;color:rgba(255,255,255,1);position: absolute;bottom: 20rpx;right: 194rpx;">星河</view>
  7. <view style="width: 132rpx;height: 132rpx;position: absolute;right: 34rpx;bottom: -30rpx;border-radius:14rpx;">
  8. <image src="../../static/complain_icon_complain@2x.png" style="width: 100%;height: 100%;"></image>
  9. </view>
  10. </view>
  11. <view class="content">
  12. <view class="navTitle" :style="{marginTop:phoneHeight + 'px'}" style="padding-top: 20rpx;">邻里圈</view>
  13. <image src="../../static/camera.png" style="width: 39rpx;height: 31rpx;margin-top: 30rpx;margin-left: 660rpx;" @tap="publish()"></image>
  14. </view>
  15. <!-- 邻里圈内容 -->
  16. <view class="main">
  17. <view v-for="(item,index) in data" :key="index" class="mainInfo">
  18. <view class="item">
  19. <!-- 头像 -->
  20. <view class="left">
  21. <image src="../../static/qingShao.png" style="width: 86rpx;height:86rpx;"></image>
  22. </view>
  23. <!-- 发布内容 -->
  24. <view class="right">
  25. <view class="name">{{item.createBy}}</view>
  26. <view class="text">
  27. {{item.content}}
  28. </view>
  29. <!-- 图片内容 -->
  30. <view class="img" v-if="item.photosUrlList.length==1" v-show="item.photosUrlList.length>0">
  31. <image :src="img" style="width: 246rpx;height: 420rpx;" v-for="(img,index) in item.photosUrlList" :key="index"
  32. @tap="prewImg(item)"></image>
  33. </view>
  34. <view class="img" v-else style="display: flex;flex-wrap: wrap;" v-show="item.photosUrlList.length>0">
  35. <image :src="img" style="width:180rpx;height:180rpx;margin-right: 10rpx;margin-bottom: 10rpx;" v-for="(img,index) in item.photosUrlList"
  36. :key="index" @tap="prewImg(item,index)"></image>
  37. </view>
  38. <!-- 点赞 -->
  39. <view style="width: 100%;height: 42rpx;display:flex;position: relative; margin-bottom: 20rpx;">
  40. <view class="zanNumber" v-show="item.likenumInt">
  41. {{item.likenumInt}}
  42. </view>
  43. <view style="width: 42rpx;height: 37rpx;position: absolute;right:82rpx ;" @tap="clickZan(item)">
  44. <image src="../../static/circle_icon_heart_set@2x.png" style="width: 100%;height: 100%;"></image>
  45. </view>
  46. <!-- 评论 -->
  47. <view class="meau" @tap="talk(item.circleId)">
  48. <image src="../../static/talk.png" style="width: 100%;height: 100%;"></image>
  49. </view>
  50. </view>
  51. <!-- 评论列表 -->
  52. <view class="list" v-show="item.commentsList.length>0">
  53. <view class="replayContent">
  54. <view style="margin-left: 16rpx;margin-top: 10rpx;" v-for="(list,index) in item.commentsList" :key="index">
  55. <view class="talk">
  56. <text>{{list.comCreateBy}} <text style="color: #333333;font-size: 28rpx;">: {{list.commentConten}}</text></text>
  57. </view>
  58. </view>
  59. </view>
  60. </view>
  61. </view>
  62. </view>
  63. </view>
  64. <!-- <uni-load-more :status="status"></uni-load-more> -->
  65. <view v-show="isUpLoading" class="s-pull-up-wrap">
  66. <view class="s-pull-loading-icon s-pull-loading-rotate"></view>
  67. <view>{{upLoadingText}}</view>
  68. </view>
  69. <view v-show="isUpFinish" class="s-pull-up-wrap">
  70. <view class="s-pull-tip-wrap">{{upFinishText}}</view>
  71. </view>
  72. </view>
  73. <!-- 评论 -->
  74. <!-- :style="{bottom:height==''?0:height + 'rpx' } " -->
  75. <view class="talkAbout" v-show="isTalk">
  76. <!-- 评论弹出框-->
  77. <view class="leftContent">
  78. <input type="text" style="width: 100%;height: 100%;padding-left: 16rpx;" placeholder="评论" :focus="isFouce" @blur="bindBlur"
  79. v-model="talkInfo">
  80. </view>
  81. <view @tap="send" class="sendBtn">发送</view>
  82. </view>
  83. </view>
  84. </template>
  85. <script>
  86. var _self, page = 1 //定义初始页数;
  87. import uLiLoadMore from "../../components/uLi-load-more/uLi-load-more.vue"
  88. export default {
  89. data() {
  90. return {
  91. circleId: '', //朋友圈Id
  92. isUpFinish: false,
  93. // 上拉加载时文案
  94. upLoadingText: '加载中 ...',
  95. upFinishText: '暂无更多了',
  96. isUpLoading: false,
  97. status: 'more', //上拉状态
  98. Url: "http://bpic.588ku.com/element_origin_min_pic/16/10/30/528aa13209e86d5d9839890967a6b9c1.jpg",
  99. talkInfo: '', //评论内容
  100. talkIndex: 0,
  101. phoneHeight: 0, //手机状态栏的高度
  102. visible: false, //判断弹窗显隐
  103. isShow: true, //判断点赞还是取消点赞
  104. isTalk: false, //
  105. isFouce: false, //判断是否聚焦
  106. height: '',
  107. //页面数据
  108. list: [],
  109. data: [
  110. ]
  111. }
  112. },
  113. onShow() {
  114. this.getData()
  115. },
  116. onReachBottom() {
  117. this.getmorelist();
  118. },
  119. components: {
  120. uLiLoadMore
  121. },
  122. created() {
  123. // 获取状态栏的高度
  124. this.phoneHeight = uni.getSystemInfoSync().statusBarHeight
  125. },
  126. onLoad() {
  127. _self = this;
  128. this.getData()
  129. },
  130. methods: {
  131. //获取列表数据
  132. getData() {
  133. uni.showLoading({
  134. title: '加载中',
  135. mask: true
  136. })
  137. this.http.httpRequest('/wxapplet/prop/comtycircle/list', 'get', {
  138. pageNum: page,
  139. comtyId: uni.getStorageSync('comtyId'),
  140. pageSize: 10,
  141. }, true).then((res) => {
  142. console.log(res)
  143. if (res.code == 0) {
  144. this.data = res.data.rows
  145. uni.hideLoading()
  146. } else {
  147. uni.hideLoading()
  148. uni.showToast({
  149. title: res.msg,
  150. 'icon': 'none'
  151. })
  152. }
  153. }).catch(() => {
  154. })
  155. },
  156. //加载更多数据获取
  157. getmorelist() {
  158. this.isUpLoading = true
  159. this.http.httpRequest('/wxapplet/prop/comtycircle/list', 'get', {
  160. pageNum: page + 1,
  161. comtyId: uni.getStorageSync('comtyId'),
  162. pageSize: 10,
  163. }, true).then((res) => {
  164. console.log(res)
  165. if (res.code == 0) {
  166. // 判断当前数据是否加载完毕
  167. if (this.data.length >= 3) {
  168. this.isUpLoading = false
  169. this.isUpFinish = true
  170. return
  171. } else {
  172. this.isUpFinish = false
  173. setTimeout(() => {
  174. page++; //每加载一次 页数+1
  175. _self.data = _self.data.concat(_self.list); //将数据拼接在一起
  176. this.isUpLoading = false
  177. }, 500)
  178. }
  179. } else {
  180. uni.showToast({
  181. title: res.msg,
  182. 'icon': 'none'
  183. })
  184. }
  185. }).catch(() => {
  186. this.isUpLoading = false
  187. })
  188. },
  189. // 预览图片
  190. prewImg(item, index) {
  191. console.log(item)
  192. // uni.previewImage({
  193. // current:item.imgArr[index],
  194. // urls:item.imgArr,
  195. // success:(res)=>{
  196. // }
  197. // })
  198. },
  199. // 切换背景图片
  200. changeBgImg() {
  201. uni.chooseImage({
  202. count: 1, //默认9
  203. sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  204. success: (res) => {
  205. console.log(res.tempFiles[0].path)
  206. }
  207. });
  208. },
  209. // 发送评论失去焦点
  210. bindBlur() {
  211. this.isTalk = false
  212. this.isFouce = false
  213. },
  214. // 获取焦点
  215. bindFouce(e) {
  216. console.log(e)
  217. this.height = e.detail.height
  218. },
  219. // 发送评论
  220. send() {
  221. this.http.httpRequest('/wxapplet/prop/comment/add', 'post', {
  222. circleId: this.circleId,
  223. commentConten: this.talkInfo,
  224. createBy: uni.getStorageSync('createBy')
  225. }, true).then((res) => {
  226. if (res.code == 0) {
  227. setTimeout(() => {
  228. this.getData()
  229. }, 500)
  230. } else {
  231. uni.showToast({
  232. title: res.msg,
  233. 'icon': 'none'
  234. })
  235. }
  236. })
  237. this.isTalk = false
  238. this.isFouce = false
  239. this.talkInfo = ''
  240. },
  241. // 评论
  242. talk(id) {
  243. this.circleId = id
  244. this.visible = false
  245. this.isTalk = true
  246. this.isFouce = true
  247. },
  248. // 打开点赞弹窗
  249. openDailog(index) {
  250. this.talkIndex = index
  251. this.visible = !this.visible
  252. // this.data[index].show=!this.data[index].show
  253. },
  254. //点赞
  255. clickZan(item) {
  256. this.http.httpRequest('/wxapplet/prop/comtycircle/edit', 'post', {
  257. pLikeUserId: item.userId,
  258. circleId: item.circleId
  259. }, true).then((res) => {
  260. console.log(res)
  261. if (res.code == 0) {
  262. uni.showToast({
  263. title: '点赞成功',
  264. 'icon': 'success'
  265. })
  266. setTimeout(() => {
  267. this.getData()
  268. }, 500)
  269. } else {
  270. uni.showToast({
  271. title: res.msg,
  272. 'icon': 'none'
  273. })
  274. }
  275. })
  276. },
  277. // 点击其他地方关闭弹窗
  278. closeDialog() {
  279. this.visible = false
  280. },
  281. // 发布
  282. publish() {
  283. uni.navigateTo({
  284. url: "publish"
  285. })
  286. }
  287. }
  288. }
  289. </script>
  290. <style lang="scss">
  291. .zanNumber {
  292. position: absolute;
  293. right: 135rpx;
  294. font-size: 28rpx;
  295. font-family: PingFang SC;
  296. font-weight: 400;
  297. color: rgba(41, 138, 253, 1);
  298. // margin-right: 8rpx;
  299. }
  300. .sendBtn {
  301. width: 150rpx;
  302. font-size: 28rpx;
  303. height: 60rpx;
  304. border-radius: 30rpx;
  305. text-align: center;
  306. background: rgba(87, 224, 135, 1);
  307. line-height: 60rpx;
  308. margin-left: 15rpx;
  309. margin-top: 35rpx;
  310. color: #FFFFFF;
  311. }
  312. .talkAbout {
  313. width: 100%;
  314. height: 120rpx;
  315. display: flex;
  316. position: fixed;
  317. bottom: 20rpx;
  318. background: rgba(247, 247, 247, 1);
  319. border-top: 1rpx solid #C0C0C0;
  320. margin-left: 10rpx;
  321. }
  322. .leftContent {
  323. width: 550rpx;
  324. height: 100rpx;
  325. background: #FFFFFF;
  326. margin-top: 15rpx;
  327. margin-left: 15rpx;
  328. }
  329. .leftIcon-text {
  330. max-width: 58px;
  331. height: 40px;
  332. font-size: 28rpx;
  333. font-family: PingFang SC;
  334. font-weight: 400;
  335. color: rgba(255, 255, 255, 1);
  336. margin-top: 10rpx;
  337. margin-left: 8rpx;
  338. }
  339. .mainInfo {
  340. width: 100%;
  341. border-bottom: 2rpx solid rgba(247, 247, 247, 1);
  342. }
  343. .rightIcon {
  344. width: 49%;
  345. height: 56rpx;
  346. display: flex;
  347. margin-top: 24rpx;
  348. }
  349. .dailog {
  350. width: 406rpx;
  351. height: 100rpx;
  352. background: rgba(47, 47, 47, 1);
  353. opacity: 1;
  354. border-radius: 10rpx;
  355. position: absolute;
  356. right: 88rpx;
  357. bottom: -25rpx;
  358. display: flex;
  359. }
  360. .leftIcon {
  361. width: 49%;
  362. height: 56rpx;
  363. display: flex;
  364. margin-top: 24rpx;
  365. border-right: 2px solid rgba(112, 112, 112, 1);
  366. }
  367. .textInfo {
  368. height: 44rpx;
  369. font-size: 32rpx;
  370. font-family: PingFang SC;
  371. font-weight: 400;
  372. color: rgba(41, 138, 253, 1);
  373. }
  374. .talk {
  375. width: 100%;
  376. font-size: 32rpx;
  377. font-family: PingFang SC;
  378. font-weight: 400;
  379. color: rgba(41, 138, 253, 1);
  380. }
  381. .replayContent {
  382. width: 100%;
  383. padding-bottom: 20rpx;
  384. }
  385. .zanList {
  386. width: 100%;
  387. background: rgba(247, 247, 247, 1);
  388. opacity: 1;
  389. font-size: 32rpx;
  390. font-family: PingFang SC;
  391. font-weight: 400;
  392. color: rgba(41, 138, 253, 1);
  393. overflow: hidden;
  394. border-bottom: 2rpx solid rgba(221, 221, 221, 1);
  395. }
  396. .list {
  397. width: 100%;
  398. background: rgba(247, 247, 247, 1);
  399. opacity: 1;
  400. margin-bottom: 15rpx;
  401. }
  402. .meau {
  403. width: 42rpx;
  404. height: 37rpx;
  405. position: absolute;
  406. right: 0;
  407. }
  408. .leftDate {
  409. width: 104rpx;
  410. height: 34rpx;
  411. font-size: 24rpx;
  412. font-family: PingFang SC;
  413. font-weight: 400;
  414. color: rgba(153, 153, 153, 1);
  415. margin-top: 4rpx;
  416. }
  417. .img {
  418. width: 100%;
  419. padding-top: 20rpx;
  420. }
  421. .text {
  422. width: 100%;
  423. font-size: 32rpx;
  424. font-family: PingFang SC;
  425. font-weight: 400;
  426. color: rgba(51, 51, 51, 1);
  427. margin-top: 10rpx;
  428. }
  429. .name {
  430. width: 100%;
  431. height: 44rpx;
  432. font-size: 32rpx;
  433. font-family: PingFang SC;
  434. font-weight: bold;
  435. color: rgba(41, 138, 253, 1);
  436. }
  437. .left {
  438. width: 86rpx;
  439. border-radius: 10rpx;
  440. }
  441. .right {
  442. width: 100%;
  443. margin-left: 16rpx;
  444. }
  445. .main {
  446. width: 100%;
  447. position: absolute;
  448. top: 722rpx;
  449. }
  450. .item {
  451. width: 666rpx;
  452. margin: 0 auto;
  453. display: flex;
  454. padding-top: 20rpx;
  455. }
  456. .content {
  457. width: 100%;
  458. position: absolute;
  459. top: 0;
  460. /* position: relative; */
  461. }
  462. .navTitle {
  463. width: 104rpx;
  464. height: 48rpx;
  465. font-size: 34rpx;
  466. font-family: PingFang SC;
  467. font-weight: bold;
  468. color: rgba(255, 255, 255, 1);
  469. margin: 0 auto;
  470. }
  471. .s-pull-down-wrap,
  472. .s-pull-up-wrap,
  473. .s-pull-tip-wrap {
  474. display: flex;
  475. justify-content: center;
  476. align-items: center;
  477. font-size: 28rpx;
  478. color: #969799;
  479. }
  480. .s-pull-down-wrap {
  481. position: absolute;
  482. left: 0;
  483. width: 100%;
  484. transform: translateY(-100%);
  485. }
  486. .s-pull-up-wrap,
  487. .s-pull-tip-wrap {
  488. height: 100rpx;
  489. }
  490. /* 旋转loading */
  491. .s-pull-loading-icon {
  492. width: 30rpx;
  493. height: 30rpx;
  494. display: inline-block;
  495. vertical-align: middle;
  496. border-radius: 50%;
  497. border: 2rpx solid #969799;
  498. border-bottom-color: transparent;
  499. box-sizing: border-box;
  500. &:first-child {
  501. margin-right: 16rpx;
  502. }
  503. }
  504. /* 旋转动画 */
  505. .s-pull-loading-rotate {
  506. animation: s-pull-loading-rotate 0.6s linear infinite;
  507. }
  508. @keyframes s-pull-loading-rotate {
  509. 0% {
  510. transform: rotate(0deg);
  511. }
  512. 100% {
  513. transform: rotate(360deg);
  514. }
  515. }
  516. </style>