detail.vue 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184
  1. <!-- 物业公告信息详情 -->
  2. <template>
  3. <view class="pageBg">
  4. <image src="../../static/announcement_bgimage@2x.png" style="width: 100%;height: 100%;"></image>
  5. <view class="content">
  6. <view style="display: flex;" :style="{marginTop:phoneHeight + 'px'}">
  7. <view style="width: 48rpx;height: 48rpx;margin-left: 24rpx;margin-top: 18rpx;" @tap="back">
  8. <image src="../../static/icon_back@2x(1).png" style="width: 100%;height: 100%;"></image>
  9. </view>
  10. <view class="topTitle">物业公告</view>
  11. </view>
  12. <view class="infoBox">
  13. <view class="infoTitle">
  14. {{data.title}}
  15. </view>
  16. <view class="infoDate">
  17. <view style="">{{(data.createDate).substr(0,10)}}</view>
  18. <view>阅读 15</view>
  19. </view>
  20. <view class="main">
  21. <text style="margin-top: 20rpx;">
  22. {{data.content}}
  23. </text>
  24. </view>
  25. </view>
  26. <view class="company">青海旺业物业有限公司</view>
  27. <view class="date">
  28. {{(data.createDate).substr(0,4)}}年{{(data.createDate).substr(5,2)}}月{{(data.createDate).substr(8,2)}}日
  29. </view>
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. export default {
  35. data() {
  36. return {
  37. phoneHeight: 0, //手机状态栏的高度
  38. id: '',
  39. data:{}
  40. }
  41. },
  42. created() {
  43. // 获取状态栏的高度
  44. this.phoneHeight = uni.getSystemInfoSync().statusBarHeight
  45. },
  46. onLoad(option) {
  47. this.id = option.id
  48. },
  49. mounted(){
  50. this.getdetail()
  51. },
  52. methods: {
  53. // 获取详情信息
  54. getdetail() {
  55. uni.showLoading({
  56. mask:true,
  57. title:'加载中'
  58. })
  59. this.http.httpRequest('/wxapplet/owner/notice/getNotice', 'get', {
  60. id: Number(this.id),
  61. comtyId: Number(uni.getStorageSync('comtyId'))
  62. }, true).then((res) => {
  63. uni.hideLoading()
  64. if (res.code == 0) {
  65. this.data=res.data
  66. } else {
  67. uni.hideLoading()
  68. uni.showToast({
  69. title: res.msg,
  70. 'icon': 'none'
  71. })
  72. }
  73. })
  74. },
  75. // 返回上个页面
  76. back() {
  77. uni.navigateBack({
  78. delta: 1
  79. })
  80. }
  81. }
  82. }
  83. </script>
  84. <style scoped>
  85. .date {
  86. width: 90%;
  87. height: 40rpx;
  88. font-size: 28rpx;
  89. font-family: PingFang SC;
  90. font-weight: 400;
  91. color: rgba(41, 138, 253, 1);
  92. margin: 0 auto;
  93. position: absolute;
  94. bottom: 160rpx;
  95. left: 88rpx;
  96. }
  97. .company {
  98. width: 90%;
  99. height: 40rpx;
  100. font-size: 28rpx;
  101. font-family: PingFang SC;
  102. font-weight: 400;
  103. color: rgba(41, 138, 253, 1);
  104. margin: 0 auto;
  105. position: absolute;
  106. bottom: 206rpx;
  107. left: 88rpx;
  108. }
  109. .content {
  110. position: absolute;
  111. top: 0;
  112. width: 100%;
  113. height: 100%;
  114. }
  115. .main {
  116. width: 90%;
  117. margin: 0 auto;
  118. margin-top: 20rpx;
  119. border-top: 2rpx solid rgba(244, 244, 244, 1);
  120. }
  121. .infoDate {
  122. width: 90%;
  123. height: 34rpx;
  124. display: flex;
  125. justify-content: space-between;
  126. margin: 0 auto;
  127. margin-top: 20rpx;
  128. font-size: 24rpx;
  129. font-family: PingFang SC;
  130. font-weight: 400;
  131. color: rgba(153, 153, 153, 1);
  132. }
  133. .infoTitle {
  134. /* width: 132rpx; */
  135. height: 44rpx;
  136. font-size: 32rpx;
  137. font-family: PingFang SC;
  138. font-weight: bold;
  139. color: rgba(41, 138, 253, 1);
  140. margin-top: 180rpx;
  141. margin-left: 30rpx;
  142. }
  143. .infoBox {
  144. width: 80%;
  145. height: 900rpx;
  146. border-radius: 20rpx;
  147. margin: 0 auto;
  148. margin-top: 46rpx;
  149. /* border: 1rpx solid #333333; */
  150. /* background-color: #FFFFFF; */
  151. }
  152. .pageBg {
  153. width: 100%;
  154. height: 100vh;
  155. /* background-image: url(../../static/announcement_bgimage@2x.png); */
  156. background-size: 100% 100%;
  157. }
  158. .topTitle {
  159. width: 140rpx;
  160. height: 48rpx;
  161. font-size: 34rpx;
  162. font-family: PingFang SC;
  163. font-weight: bold;
  164. color: rgba(255, 255, 255, 1);
  165. /* color: #333333; */
  166. margin: 0 auto;
  167. padding-top: 20rpx;
  168. }
  169. </style>