circles.vue 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382
  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%;"></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: 688rpx;" @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="item.photo" style="width: 86rpx;height:86rpx;"></image>
  22. </view>
  23. <!-- 发布内容 -->
  24. <view class="right">
  25. <view class="name">{{item.name}}</view>
  26. <view class="text">
  27. {{item.content}}
  28. </view>
  29. <!-- 图片内容 -->
  30. <view class="img" v-if="item.imgArr.length==1">
  31. <image :src="img" style="width: 246rpx;height: 420rpx;" v-for="(img,index) in item.imgArr" :key="index"></image>
  32. </view>
  33. <view class="img" v-else style="display: flex;flex-wrap: wrap;">
  34. <image :src="img" style="width:180rpx;height:180rpx;margin-right: 10rpx;margin-bottom: 10rpx;" v-for="(img,index) in item.imgArr" :key="index"></image>
  35. </view>
  36. <view style="width: 100%;height: 42rpx;display: flex;justify-content: space-between;margin-bottom:20rpx ;margin-top: 30rpx;position: relative;">
  37. <!-- 点赞评论弹窗 -->
  38. <view class="dailog" v-show="visible && index==talkIndex">
  39. <view class="leftIcon" @tap="clickZan">
  40. <image src="../../static/circle_icon_heart_nor@2x.png" style="width: 42rpx;height: 37rpx;margin-top: 10rpx;margin-left: 62rpx;"></image>
  41. <view class="leftIcon-text" v-show="item.status==1">
  42. </view>
  43. <view class="leftIcon-text" v-show="item.status==0">
  44. 取消
  45. </view>
  46. </view>
  47. <view class="rightIcon" @tap="talk">
  48. <image src="../../static/circle_icon_comment@2x.png" style="width: 42rpx;height: 37rpx;margin-top: 10rpx;margin-left: 62rpx;"></image>
  49. <view class="leftIcon-text">
  50. 评论
  51. </view>
  52. </view>
  53. </view>
  54. <view class="leftDate">
  55. {{item.date}}
  56. </view>
  57. <view class="meau" @tap="openDailog(index)">
  58. <image src="../../static/circle_icon_more@2x.png" style="width: 100%;height: 100%;"></image>
  59. </view>
  60. </view>
  61. <!-- 点赞 回复列表 -->
  62. <view class="list">
  63. <view class="zanList" >
  64. <view style="display: flex;margin-left: 28rpx;margin-top: 28rpx;margin-bottom: 28rpx;padding-right:2rpx;">
  65. <image src="../../static/circle_icon_heart_set@2x.png" style="width: 48rpx;height: 37rpx;margin-top: 5rpx;"></image>
  66. <view style="margin-left:8rpx ;">{{item.zanList}}</view>
  67. </view>
  68. </view>
  69. <!-- 回复内容 -->
  70. <view class="replayContent">
  71. <view style="margin-left: 16rpx;margin-top: 10rpx;" v-for="(list,index) in item.talkList" :key="index">
  72. <view class="talk" v-if="list.status==1">
  73. <text>{{list.name}} :<text>{{list.info}}</text></text>
  74. </view>
  75. <view class="replay" v-else>
  76. <text class="textInfo">{{list.replayName}}</text><text>回复</text>
  77. <text class="textInfo">{{list.name}}:</text><text class="textInfo">{{list.info}}</text>
  78. </view>
  79. </view>
  80. </view>
  81. </view>
  82. </view>
  83. </view>
  84. </view>
  85. </view>
  86. <!-- 评论 -->
  87. <!-- :style="{bottom:height==''?0:height + 'rpx' } " -->
  88. <view class="talkAbout" v-show="isTalk">
  89. <!-- -->
  90. <view class="leftContent">
  91. <input type="text" style="width: 100%;height: 100%;padding-left: 16rpx;" placeholder="评论" :focus="isFouce" @blur="bindBlur">
  92. </view>
  93. <view @tap="send" class="sendBtn">发送</view>
  94. </view>
  95. </view>
  96. </template>
  97. <script>
  98. export default {
  99. data() {
  100. return {
  101. talkIndex:0,
  102. phoneHeight: 0, //手机状态栏的高度
  103. visible: false, //判断弹窗显隐
  104. isShow: true, //判断点赞还是取消点赞
  105. isTalk: false,//
  106. isFouce: false,//判断是否聚焦
  107. height: '',
  108. //页面数据
  109. data: [
  110. {
  111. photo: '../../static/guarantee_icon_guarantee@2x.png',
  112. name: '明灯三千',
  113. content: '你是我温柔的归宿,你是我嘴角扬起来',
  114. imgArr: ["../../static/history_bgimage@2x.png"],
  115. show:false,
  116. date:'49分钟前',
  117. status:1,
  118. zanList:"明灯三千,sugar,小飞侠,大尾巴",
  119. talkList:[{status:1,name:'星河',info:'小飞侠来啦~'},{status:2,replayName:'星河入梦来',name:'星河',info:'谢谢我的宝贝儿~'}]
  120. },
  121. {
  122. photo: '../../static/guarantee_icon_guarantee@2x.png',
  123. name: '明灯',
  124. content: '你是我温柔的归宿,你是我嘴角扬起来',
  125. imgArr: ["../../static/history_bgimage@2x.png","../../static/history_bgimage@2x.png","../../static/history_bgimage@2x.png","../../static/history_bgimage@2x.png"],
  126. show:false,
  127. date:'49分钟前',
  128. status:1,
  129. zanList:"明灯三千,sugar,小飞侠,大尾巴",
  130. talkList:[{status:1,name:'星河',info:'小飞侠来啦~'},{status:2,replayName:'星河入梦来',name:'星河',info:'谢谢我的宝贝儿~'}]
  131. },
  132. ]
  133. }
  134. },
  135. created() {
  136. // 获取状态栏的高度
  137. this.phoneHeight = uni.getSystemInfoSync().statusBarHeight
  138. },
  139. methods: {
  140. // 失去焦点
  141. bindBlur() {
  142. this.isTalk = false
  143. this.isFouce = false
  144. },
  145. // 获取焦点
  146. bindFouce(e) {
  147. console.log(e)
  148. this.height = e.detail.height
  149. },
  150. // 发送评论
  151. send() {
  152. this.isTalk = false
  153. this.isFouce = false
  154. },
  155. // 评论
  156. talk() {
  157. this.visible=false
  158. this.isTalk=true
  159. this.data[this.talkIndex].show=!this.data[this.talkIndex].show
  160. this.isFouce = true
  161. },
  162. // 打开点赞弹窗
  163. openDailog(index) {
  164. this.talkIndex=index
  165. this.visible=true
  166. // this.data[index].show=!this.data[index].show
  167. },
  168. //点赞
  169. clickZan() {
  170. this.visible = false
  171. },
  172. // 发布
  173. publish() {
  174. uni.navigateTo({
  175. url: "publish"
  176. })
  177. }
  178. }
  179. }
  180. </script>
  181. <style>
  182. .sendBtn {
  183. width: 150rpx;
  184. font-size: 28rpx;
  185. height: 60rpx;
  186. border-radius: 30rpx;
  187. text-align: center;
  188. background: rgba(87, 224, 135, 1);
  189. line-height: 60rpx;
  190. margin-left: 15rpx;
  191. margin-top: 35rpx;
  192. color: #FFFFFF;
  193. }
  194. .talkAbout {
  195. width: 100%;
  196. height: 120rpx;
  197. display: flex;
  198. position: fixed;
  199. bottom: 20rpx;
  200. background: rgba(247, 247, 247, 1);
  201. border-top: 1rpx solid #C0C0C0;
  202. margin-left: 10rpx;
  203. }
  204. .leftContent {
  205. width: 550rpx;
  206. height: 100rpx;
  207. background: #FFFFFF;
  208. margin-top: 15rpx;
  209. margin-left: 15rpx;
  210. }
  211. .leftIcon-text {
  212. max-width: 58px;
  213. height: 40px;
  214. font-size: 28rpx;
  215. font-family: PingFang SC;
  216. font-weight: 400;
  217. color: rgba(255, 255, 255, 1);
  218. margin-top: 10rpx;
  219. margin-left: 8rpx;
  220. }
  221. .mainInfo{
  222. width: 100%;
  223. border-bottom: 2rpx solid rgba(247, 247, 247, 1);
  224. }
  225. .rightIcon {
  226. width: 49%;
  227. height: 56rpx;
  228. display: flex;
  229. margin-top: 24rpx;
  230. }
  231. .dailog {
  232. width: 406rpx;
  233. height: 100rpx;
  234. background: rgba(47, 47, 47, 1);
  235. opacity: 1;
  236. border-radius: 10rpx;
  237. position: absolute;
  238. right: 88rpx;
  239. bottom: -25rpx;
  240. display: flex;
  241. }
  242. .leftIcon {
  243. width: 49%;
  244. height: 56rpx;
  245. display: flex;
  246. margin-top: 24rpx;
  247. border-right: 2px solid rgba(112, 112, 112, 1);
  248. }
  249. .textInfo {
  250. height: 44rpx;
  251. font-size: 32rpx;
  252. font-family: PingFang SC;
  253. font-weight: 400;
  254. color: rgba(41, 138, 253, 1);
  255. }
  256. .talk {
  257. width: 100%;
  258. font-size: 32rpx;
  259. font-family: PingFang SC;
  260. font-weight: 400;
  261. color: rgba(41, 138, 253, 1);
  262. }
  263. .replayContent {
  264. width: 100%;
  265. padding-bottom: 20rpx;
  266. }
  267. .zanList {
  268. width: 100%;
  269. background: rgba(247, 247, 247, 1);
  270. opacity: 1;
  271. font-size: 32rpx;
  272. font-family: PingFang SC;
  273. font-weight: 400;
  274. color: rgba(41, 138, 253, 1);
  275. overflow: hidden;
  276. border-bottom: 2rpx solid rgba(221, 221, 221, 1);
  277. }
  278. .list {
  279. width: 100%;
  280. background: rgba(247, 247, 247, 1);
  281. opacity: 1;
  282. margin-bottom: 15rpx;
  283. }
  284. .meau {
  285. width: 66rpx;
  286. height: 42rpx;
  287. }
  288. .leftDate {
  289. width: 104rpx;
  290. height: 34rpx;
  291. font-size: 24rpx;
  292. font-family: PingFang SC;
  293. font-weight: 400;
  294. color: rgba(153, 153, 153, 1);
  295. margin-top: 4rpx;
  296. }
  297. .img {
  298. width: 100%;
  299. padding-top: 20rpx;
  300. }
  301. .text {
  302. width: 100%;
  303. font-size: 32rpx;
  304. font-family: PingFang SC;
  305. font-weight: 400;
  306. color: rgba(51, 51, 51, 1);
  307. margin-top: 10rpx;
  308. }
  309. .name {
  310. width: 100%;
  311. height: 44rpx;
  312. font-size: 32rpx;
  313. font-family: PingFang SC;
  314. font-weight: bold;
  315. color: rgba(41, 138, 253, 1);
  316. }
  317. .left {
  318. width: 86rpx;
  319. border-radius: 10rpx;
  320. }
  321. .right {
  322. width: 100%;
  323. margin-left: 16rpx;
  324. }
  325. .main {
  326. width: 100%;
  327. position: absolute;
  328. top: 722rpx;
  329. }
  330. .item {
  331. width: 666rpx;
  332. margin: 0 auto;
  333. display: flex;
  334. padding-top:20rpx ;
  335. }
  336. .content {
  337. width: 100%;
  338. position: absolute;
  339. top: 0;
  340. /* position: relative; */
  341. }
  342. .navTitle {
  343. width: 104rpx;
  344. height: 48rpx;
  345. font-size: 34rpx;
  346. font-family: PingFang SC;
  347. font-weight: bold;
  348. color: rgba(255, 255, 255, 1);
  349. margin: 0 auto;
  350. }
  351. </style>