circles.vue 17 KB

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