circles.vue 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691
  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;">{{userName}}</view>
  7. <view style="width: 132rpx;height: 132rpx;position: absolute;right: 34rpx;bottom: -30rpx;" @tap="seeMyInfo">
  8. <image :src="headImg" style="width: 100%;height: 100%;border-radius:14rpx;"></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" v-show="item.content">
  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,index2) in item.photosUrlList" :key="index2" mode="aspectFill" @tap="previewImage(item.photosUrlList,index2)"></image>
  32. </view> -->
  33. <view class="img" style="display: flex;flex-wrap: wrap;" v-show="item.photosUrlList.length>0" >
  34. <image :src="img" @tap="previewImage(item.photosUrlList,index2)" mode="aspectFill" style="width:180rpx;height:180rpx;margin-right: 10rpx;margin-bottom: 10rpx;" v-for="(img,index2) in item.photosUrlList"
  35. :key="index2"></image>
  36. </view>
  37. <!-- 点赞 -->
  38. <view style="width: 100%;height: 42rpx;display:flex;position: relative; margin-bottom: 20rpx;">
  39. <view class="zanNumber" v-show="item.likenumInt">
  40. {{item.likenumInt}}
  41. </view>
  42. <view style="width: 42rpx;height: 37rpx;position: absolute;right:82rpx ;" @tap="clickZan(item)">
  43. <image src="../../static/circle_icon_heart_set@2x.png" style="width: 100%;height: 100%;"></image>
  44. <!-- <image src="../../static/dzed.png" style="width: 100%;height: 100%;" v-else-if="item.likenumInt>=1"></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-if="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="评论" cursor-spacing="2"
  79. @confirm="send" :focus="isFouce" @blur="bindBlur" v-model="talkInfo">
  80. </view>
  81. <view @tap="send" class="sendBtn">发送</view>
  82. </view>
  83. <!-- 认证房屋是否通过提示 -->
  84. <uniPopup ref='popup' type="center">
  85. <view style="width: 600rpx;height: 522rpx;background-color: #fff;border-radius: 10rpx;" class="popupBox">
  86. <image src="../../static/auditing_popup.png" style="width:85%;height: 100%;margin-top: -50rpx;margin-left: 30rpx;"></image>
  87. <view class="popupTitle" v-if="houseStatus==1">当前认证房屋正在审核中</view>
  88. <view class="popupTitle" v-else-if="houseStatus==4">当前暂无房屋绑定,请重新认证</view>
  89. <button class="popupBtn" @tap="popupClose" v-if="houseStatus==1">我知道了</button>
  90. <button class="popupBtn" @tap="goTapHouse" v-else-if="houseStatus==4">去认证</button>
  91. </view>
  92. </uniPopup>
  93. </view>
  94. </template>
  95. <script>
  96. var _self, page = 1 //定义初始页数;
  97. import uLiLoadMore from "../../components/uLi-load-more/uLi-load-more.vue"
  98. export default {
  99. data() {
  100. return {
  101. houseStatus: '',
  102. userName: uni.getStorageSync('userName'),
  103. headImg: uni.getStorageSync('headImg'),
  104. userPhone: uni.getStorageSync('userPhone'),
  105. circleId: '', //朋友圈Id
  106. isUpFinish: false,
  107. // 上拉加载时文案
  108. upLoadingText: '加载中 ...',
  109. upFinishText: '暂无更多了',
  110. isUpLoading: false,
  111. status: 'more', //上拉状态
  112. Url: "http://bpic.588ku.com/element_origin_min_pic/16/10/30/528aa13209e86d5d9839890967a6b9c1.jpg",
  113. talkInfo: '', //评论内容
  114. talkIndex: 0,
  115. phoneHeight: 0, //手机状态栏的高度
  116. visible: false, //判断弹窗显隐
  117. isShow: true, //判断点赞还是取消点赞
  118. isTalk: false, //
  119. isFouce: false, //判断是否聚焦
  120. height: '',
  121. //页面数据
  122. list: [],
  123. data: [
  124. ]
  125. }
  126. },
  127. onTabItemTap() {
  128. _self = this;
  129. page = 1
  130. this.getData()
  131. },
  132. onShow() {
  133. this.houseStatus = uni.getStorageSync('houseStatus')
  134. },
  135. onPullDownRefresh() {
  136. uni.showLoading({
  137. title: '加载中',
  138. mask: true
  139. })
  140. _self = this;
  141. page = 1
  142. this.getData()
  143. },
  144. onReachBottom() {
  145. this.getmorelist();
  146. },
  147. components: {
  148. uLiLoadMore
  149. },
  150. created() {
  151. // 获取状态栏的高度
  152. this.phoneHeight = uni.getSystemInfoSync().statusBarHeight
  153. },
  154. onLoad() {
  155. uni.showLoading({
  156. title: '加载中',
  157. mask: true
  158. })
  159. _self = this;
  160. page = 1
  161. this.getData()
  162. this.houseStatus = uni.getStorageSync('houseStatus')
  163. },
  164. methods: {
  165. //重新认证房屋
  166. goTapHouse(){
  167. uni.navigateTo({
  168. url:'../authentication/city'
  169. })
  170. this.$refs.popup.close()
  171. },
  172. // 关闭弹窗
  173. popupClose() {
  174. this.$refs.popup.close()
  175. },
  176. //查看我的信息
  177. seeMyInfo() {
  178. if (this.houseStatus == 1||this.houseStatus==4) {
  179. this.$refs.popup.open()
  180. return
  181. }
  182. uni.navigateTo({
  183. url: '../mine/myInfo'
  184. })
  185. },
  186. //获取列表数据
  187. getData() {
  188. this.http.httpRequest('/wxapplet/prop/comtycircle/list', 'get', {
  189. pageNum: page,
  190. comtyId: uni.getStorageSync('comtyId'),
  191. pageSize: 10,
  192. }, true).then((res) => {
  193. console.log(res)
  194. if (res.code == 0) {
  195. this.data = res.data.rows
  196. setTimeout(() => {
  197. uni.hideLoading()
  198. uni.stopPullDownRefresh()
  199. }, 1500)
  200. } else {
  201. uni.hideLoading()
  202. uni.showToast({
  203. title: res.msg,
  204. 'icon': 'none'
  205. })
  206. }
  207. }).catch(() => {
  208. uni.hideLoading()
  209. })
  210. },
  211. //加载更多数据获取
  212. getmorelist() {
  213. this.isUpLoading = true
  214. this.http.httpRequest('/wxapplet/prop/comtycircle/list', 'get', {
  215. pageNum: page + 1,
  216. comtyId: uni.getStorageSync('comtyId'),
  217. pageSize: 10,
  218. }, true).then((res) => {
  219. console.log(res)
  220. if (res.code == 0) {
  221. // 判断当前数据是否加载完毕
  222. if (this.data.length >= res.data.total) {
  223. this.isUpLoading = false
  224. this.isUpFinish = true
  225. return
  226. } else {
  227. this.isUpFinish = false
  228. setTimeout(() => {
  229. page++; //每加载一次 页数+1
  230. this.data = this.data.concat(res.data.rows); //将数据拼接在一起
  231. this.isUpLoading = false
  232. }, 500)
  233. }
  234. } else {
  235. uni.showToast({
  236. title: res.msg,
  237. 'icon': 'none'
  238. })
  239. }
  240. }).catch(() => {
  241. this.isUpLoading = false
  242. })
  243. },
  244. // 预览图片
  245. previewImage(item,index) {
  246. uni.previewImage({
  247. current:item[index],
  248. urls: item,
  249. success: (res) => {
  250. console.log(res)
  251. uni.stopPullDownRefresh()
  252. // uni.hideLoading()
  253. }
  254. })
  255. },
  256. // 切换背景图片
  257. changeBgImg() {
  258. // uni.chooseImage({
  259. // count: 1, //默认9
  260. // sizeType: ['original', 'compressed'], //可以指定是原图还是压缩图,默认二者都有
  261. // success: (res) => {
  262. // console.log(res.tempFiles[0].path)
  263. // }
  264. // });
  265. },
  266. // 发送评论失去焦点
  267. bindBlur() {
  268. this.isTalk = false
  269. this.isFouce = false
  270. },
  271. // 获取焦点
  272. bindFouce(e) {
  273. console.log(e)
  274. this.height = e.detail.height
  275. },
  276. // 发送评论
  277. send() {
  278. let talkInfo = this.talkInfo
  279. console.log(talkInfo)
  280. //判断评论是否为空
  281. if (!this.talkInfo) {
  282. return
  283. }
  284. this.http.httpRequest('/wxapplet/prop/comment/add', 'post', {
  285. circleId: this.circleId,
  286. commentConten: this.talkInfo,
  287. createBy: uni.getStorageSync('createBy')
  288. }, true).then((res) => {
  289. if (res.code == 0) {
  290. this.data.forEach((item, index) => {
  291. // 判断当前评论的时哪条信息
  292. if (item.circleId == this.circleId) {
  293. this.data[index].commentsList.push({
  294. commentConten: talkInfo,
  295. comCreateBy: uni.getStorageSync('createBy')
  296. })
  297. // temp.commentConten = talkInfo,
  298. // temp.comCreateBy = uni.getStorageSync('createBy')
  299. // item.commentsList.push(temp)
  300. }
  301. })
  302. console.log(this.data)
  303. } else {
  304. uni.showToast({
  305. title: res.msg,
  306. 'icon': 'none'
  307. })
  308. }
  309. })
  310. this.isTalk = false
  311. this.isFouce = false
  312. this.talkInfo = ''
  313. },
  314. // 评论
  315. talk(id) {
  316. if (this.houseStatus == 1||this.houseStatus==4) {
  317. this.$refs.popup.open()
  318. return
  319. }
  320. this.circleId = id
  321. this.visible = false
  322. this.isTalk = true
  323. this.isFouce = true
  324. },
  325. // 打开点赞弹窗
  326. openDailog(index) {
  327. this.talkIndex = index
  328. this.visible = !this.visible
  329. // this.data[index].show=!this.data[index].show
  330. },
  331. //点赞
  332. clickZan(item) {
  333. if (this.houseStatus == 1||this.houseStatus==4) {
  334. this.$refs.popup.open()
  335. return
  336. }
  337. this.http.httpRequest('/wxapplet/prop/comtycircle/edit', 'post', {
  338. pLikeUserId: item.userId,
  339. circleId: item.circleId
  340. }, true).then((res) => {
  341. console.log(res)
  342. if (res.code == 0) {
  343. // uni.showToast({
  344. // title: '点赞成功',
  345. // 'icon': 'success'
  346. // })
  347. // setTimeout(() => {
  348. // this.getData()
  349. // }, 500)
  350. this.data.forEach((ele) => {
  351. // 判断当前评论的时哪条信息
  352. if (ele.circleId == item.circleId) {
  353. ele.likenumInt = 1
  354. }
  355. })
  356. } else {
  357. uni.showToast({
  358. title: res.msg,
  359. 'icon': 'none'
  360. })
  361. }
  362. })
  363. },
  364. // 点击其他地方关闭弹窗
  365. closeDialog() {
  366. this.visible = false
  367. },
  368. // 发布
  369. publish() {
  370. if (this.houseStatus == 1||this.houseStatus==4) {
  371. this.$refs.popup.open()
  372. return
  373. }
  374. uni.navigateTo({
  375. url: "publish"
  376. })
  377. }
  378. }
  379. }
  380. </script>
  381. <style lang="scss">
  382. .popupClose {
  383. width: 44rpx;
  384. height: 44rpx;
  385. position: absolute;
  386. right: 20rpx;
  387. top: 20rpx;
  388. }
  389. .popupBtn {
  390. width: 342rpx;
  391. height: 80rpx;
  392. position: absolute;
  393. bottom: 80rpx;
  394. left: 128rpx;
  395. background: rgba(41, 138, 253, 1);
  396. color: #FFFFFF;
  397. font-size: 32rpx;
  398. }
  399. .popupTitle {
  400. width: 400rpx;
  401. height: 40rpx;
  402. font-size: 28rpx;
  403. color: #999999;
  404. position: absolute;
  405. bottom: 232rpx;
  406. left: 170rpx;
  407. }
  408. .popupImage {
  409. width: 100%;
  410. height: 300rpx;
  411. /* background-image: url(../../static/success_popup@2x.png);
  412. position: absolute;
  413. top: -64rpx; */
  414. }
  415. .zanNumber {
  416. position: absolute;
  417. right: 135rpx;
  418. font-size: 28rpx;
  419. font-family: PingFang SC;
  420. font-weight: 400;
  421. color: rgba(41, 138, 253, 1);
  422. // margin-right: 8rpx;
  423. }
  424. .sendBtn {
  425. width: 150rpx;
  426. font-size: 28rpx;
  427. height: 60rpx;
  428. border-radius: 30rpx;
  429. text-align: center;
  430. background: rgba(87, 224, 135, 1);
  431. line-height: 60rpx;
  432. margin-left: 15rpx;
  433. margin-top: 35rpx;
  434. color: #FFFFFF;
  435. }
  436. .talkAbout {
  437. width: 100%;
  438. height: 130rpx;
  439. display: flex;
  440. position: fixed;
  441. bottom: 20rpx;
  442. background: rgba(247, 247, 247, 1);
  443. border-top: 1rpx solid #C0C0C0;
  444. // margin-left: 10rpx;
  445. }
  446. .leftContent {
  447. width: 550rpx;
  448. height: 100rpx;
  449. background: #FFFFFF;
  450. margin-top: 15rpx;
  451. margin-left: 15rpx;
  452. }
  453. .leftIcon-text {
  454. max-width: 58px;
  455. height: 40px;
  456. font-size: 28rpx;
  457. font-family: PingFang SC;
  458. font-weight: 400;
  459. color: rgba(255, 255, 255, 1);
  460. margin-top: 10rpx;
  461. margin-left: 8rpx;
  462. }
  463. .mainInfo {
  464. width: 100%;
  465. border-bottom: 2rpx solid rgba(247, 247, 247, 1);
  466. }
  467. .rightIcon {
  468. width: 49%;
  469. height: 56rpx;
  470. display: flex;
  471. margin-top: 24rpx;
  472. }
  473. .dailog {
  474. width: 406rpx;
  475. height: 100rpx;
  476. background: rgba(47, 47, 47, 1);
  477. opacity: 1;
  478. border-radius: 10rpx;
  479. position: absolute;
  480. right: 88rpx;
  481. bottom: -25rpx;
  482. display: flex;
  483. }
  484. .leftIcon {
  485. width: 49%;
  486. height: 56rpx;
  487. display: flex;
  488. margin-top: 24rpx;
  489. border-right: 2px solid rgba(112, 112, 112, 1);
  490. }
  491. .textInfo {
  492. height: 44rpx;
  493. font-size: 32rpx;
  494. font-family: PingFang SC;
  495. font-weight: 400;
  496. color: rgba(41, 138, 253, 1);
  497. }
  498. .talk {
  499. width: 100%;
  500. font-size: 32rpx;
  501. font-family: PingFang SC;
  502. font-weight: 400;
  503. color: rgba(41, 138, 253, 1);
  504. }
  505. .replayContent {
  506. width: 100%;
  507. padding-bottom: 20rpx;
  508. }
  509. .zanList {
  510. width: 100%;
  511. background: rgba(247, 247, 247, 1);
  512. opacity: 1;
  513. font-size: 32rpx;
  514. font-family: PingFang SC;
  515. font-weight: 400;
  516. color: rgba(41, 138, 253, 1);
  517. overflow: hidden;
  518. border-bottom: 2rpx solid rgba(221, 221, 221, 1);
  519. }
  520. .list {
  521. width: 100%;
  522. background: rgba(247, 247, 247, 1);
  523. opacity: 1;
  524. margin-bottom: 15rpx;
  525. }
  526. .meau {
  527. width: 42rpx;
  528. height: 37rpx;
  529. position: absolute;
  530. right: 0;
  531. }
  532. .leftDate {
  533. width: 104rpx;
  534. height: 34rpx;
  535. font-size: 24rpx;
  536. font-family: PingFang SC;
  537. font-weight: 400;
  538. color: rgba(153, 153, 153, 1);
  539. margin-top: 4rpx;
  540. }
  541. .img {
  542. width: 100%;
  543. padding-top: 20rpx;
  544. }
  545. .text {
  546. width: 100%;
  547. font-size: 32rpx;
  548. font-family: PingFang SC;
  549. font-weight: 400;
  550. color: rgba(51, 51, 51, 1);
  551. margin-top: 10rpx;
  552. }
  553. .name {
  554. width: 100%;
  555. height: 44rpx;
  556. font-size: 32rpx;
  557. font-family: PingFang SC;
  558. font-weight: bold;
  559. color: rgba(41, 138, 253, 1);
  560. }
  561. .left {
  562. width: 86rpx;
  563. border-radius: 10rpx;
  564. }
  565. .right {
  566. width: 100%;
  567. margin-left: 16rpx;
  568. }
  569. .main {
  570. width: 100%;
  571. position: absolute;
  572. top: 722rpx;
  573. }
  574. .item {
  575. width: 666rpx;
  576. margin: 0 auto;
  577. display: flex;
  578. padding-top: 20rpx;
  579. }
  580. .content {
  581. width: 100%;
  582. position: absolute;
  583. top: 0;
  584. /* position: relative; */
  585. }
  586. .navTitle {
  587. width: 104rpx;
  588. height: 48rpx;
  589. font-size: 34rpx;
  590. font-family: PingFang SC;
  591. font-weight: bold;
  592. color: rgba(255, 255, 255, 1);
  593. margin: 0 auto;
  594. }
  595. .s-pull-down-wrap,
  596. .s-pull-up-wrap,
  597. .s-pull-tip-wrap {
  598. display: flex;
  599. justify-content: center;
  600. align-items: center;
  601. font-size: 28rpx;
  602. color: #969799;
  603. }
  604. .s-pull-down-wrap {
  605. position: absolute;
  606. left: 0;
  607. width: 100%;
  608. transform: translateY(-100%);
  609. }
  610. .s-pull-up-wrap,
  611. .s-pull-tip-wrap {
  612. height: 100rpx;
  613. }
  614. /* 旋转loading */
  615. .s-pull-loading-icon {
  616. width: 30rpx;
  617. height: 30rpx;
  618. display: inline-block;
  619. vertical-align: middle;
  620. border-radius: 50%;
  621. border: 2rpx solid #969799;
  622. border-bottom-color: transparent;
  623. box-sizing: border-box;
  624. &:first-child {
  625. margin-right: 16rpx;
  626. }
  627. }
  628. /* 旋转动画 */
  629. .s-pull-loading-rotate {
  630. animation: s-pull-loading-rotate 0.6s linear infinite;
  631. }
  632. @keyframes s-pull-loading-rotate {
  633. 0% {
  634. transform: rotate(0deg);
  635. }
  636. 100% {
  637. transform: rotate(360deg);
  638. }
  639. }
  640. </style>