more.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <!--物业公告更多列表 -->
  2. <template>
  3. <view>
  4. <view class="item">
  5. <!-- <view class="notInfo" v-show="visible">暂无公告信息</view> -->
  6. <view style="width:520rpx;margin: 0 auto;margin-top: 100rpx;" v-show="visible">
  7. <image src="../../static/notData.png" style="width:520rpx ;height: 520rpx;"></image>
  8. <view style="width:144rpx;height:50rpx;font-size:36rpx;margin: 0 auto;margin-top: 46rpx;">暂无数据</view>
  9. </view>
  10. <view class="mainInfo" v-for="(item,index) in listData" :key="index" @tap="seeDetail(item.id)" v-show="!visible">
  11. <view class="left">
  12. <view style="width: 100%;height: 42rpx;ont-size:30rx;font-family:PingFang SC;font-weight:bold;color:rgba(51,51,51,1);margin-top: 40rpx;">
  13. {{item.title}}
  14. </view>
  15. <view class="leftInfo">{{item.content}}</view>
  16. <view class="leftDate">
  17. <view class="leftTag" v-if="item.isShow>0">最新</view>
  18. <view style="width:230rpx;height:34rpx;font-size:24rpx;font-family:PingFang SC;font-weight:400;line-height:34rpx;color:rgba(204,204,204,1);position: absolute;right: 0;">{{(item.createDate).substr(0,16)}}</view>
  19. </view>
  20. </view>
  21. <view class="right">
  22. <image :src="item.img" style="width: 100%;height: 100%;"></image>
  23. </view>
  24. </view>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. export default {
  30. data() {
  31. return {
  32. listData: [],
  33. visible: true
  34. }
  35. },
  36. mounted() {
  37. this.getNoticeList()
  38. },
  39. methods: {
  40. // 获取公告数据
  41. getNoticeList() {
  42. uni.showLoading({
  43. mask: true,
  44. title: '加载中'
  45. })
  46. this.http.httpRequest('/wxapplet/owner/notice/list', 'get', {
  47. comtyId: uni.getStorageSync('comtyId')
  48. }, true).then((res) => {
  49. console.log(res)
  50. if (res.code == 0) {
  51. // 判断当前是否有数据
  52. if (res.data.rows.length == 0) {
  53. this.visible = true
  54. } else {
  55. this.visible = false
  56. }
  57. this.listData = res.data.rows
  58. uni.hideLoading();
  59. } else {
  60. uni.showToast({
  61. title: res.msg,
  62. 'icon': 'none'
  63. })
  64. }
  65. })
  66. },
  67. // 查看物业公告详情
  68. seeDetail(item) {
  69. uni.navigateTo({
  70. url: './detail?id=' + item
  71. })
  72. }
  73. }
  74. }
  75. </script>
  76. <style>
  77. .notInfo {
  78. width: 100%;
  79. height: 50rpx;
  80. font-size: 36rpx;
  81. font-family: PingFang SC;
  82. font-weight: 400;
  83. line-height: 50rpx;
  84. color: rgba(36, 36, 36, 1);
  85. margin: 0 auto;
  86. margin-top: 40rpx;
  87. text-align: center;
  88. }
  89. .leftTag {
  90. width: 56rpx;
  91. height: 28rpx;
  92. background: rgba(84, 162, 255, 1);
  93. opacity: 1;
  94. border-radius: 6rpx;
  95. font-size: 20rpx;
  96. font-family: PingFang SC;
  97. font-weight: 400;
  98. color: rgba(255, 255, 255, 1);
  99. text-align: center;
  100. line-height: 26rpx;
  101. margin-top: 6rpx;
  102. margin-right: 120rpx;
  103. }
  104. .leftDate {
  105. width: 100%;
  106. height: 34rpx;
  107. margin-top: 38rpx;
  108. display: flex;
  109. position: relative;
  110. }
  111. .left {
  112. width: 442rpx;
  113. height: 204rpx;
  114. }
  115. .leftInfo {
  116. width: 100%;
  117. height: 34rpx;
  118. font-size: 24rpx;
  119. font-family: PingFang SC;
  120. font-weight: 400;
  121. color: rgba(153, 153, 153, 1);
  122. overflow: hidden;
  123. text-overflow: ellipsis;
  124. white-space: nowrap;
  125. margin-top: 16rpx;
  126. }
  127. .right {
  128. width: 207rpx;
  129. height: 204rpx;
  130. border-radius: 10px;
  131. }
  132. .mainInfo {
  133. width: 688rpx;
  134. height: 222rpx;
  135. display: flex;
  136. justify-content: space-between;
  137. border-bottom: 2px solid rgba(247, 247, 247, 1);
  138. }
  139. .item {
  140. width: 688rpx;
  141. margin: 0 auto;
  142. margin-top: 20rpx;
  143. }
  144. </style>