detail.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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. 停电通知
  15. </view>
  16. <view class="infoDate">
  17. <view style="">2020-02-02</view>
  18. <view>阅读 15</view>
  19. </view>
  20. <view class="main">
  21. <text style="margin-top: 20rpx;">
  22. 尊敬的各位业主/住户:
  23. 因本小区主自来水管网阀门损坏需紧急停水抢修,今日下午15:30分进行临时对本小区临时停水,开始对自来水的主管道阀门进行紧急抢修更换。届时本小区11号楼2号楼3号楼的生活用水将受影响,预计在晚20:00左右管道维修完毕后恢复正常供水,因自来水管道阀门更换抢修工作给您生活带来的不便敬请谅解,感谢您对我们物业服务工作的理解和支持。特此通知!
  24. </text>
  25. </view>
  26. </view>
  27. <view class="company">青海旺业物业有限公司</view>
  28. <view class="date">
  29. 2020年02月02日
  30. </view>
  31. </view>
  32. </view>
  33. </template>
  34. <script>
  35. export default {
  36. data() {
  37. return {
  38. phoneHeight: 0, //手机状态栏的高度
  39. }
  40. },
  41. created() {
  42. // 获取状态栏的高度
  43. this.phoneHeight = uni.getSystemInfoSync().statusBarHeight
  44. },
  45. methods:{
  46. // 返回上个页面
  47. back(){
  48. uni.navigateBack({
  49. delta:1
  50. })
  51. }
  52. }
  53. }
  54. </script>
  55. <style scoped>
  56. .date{
  57. width: 90%;
  58. height: 40rpx;
  59. font-size:28rpx;
  60. font-family:PingFang SC;
  61. font-weight:400;
  62. color:rgba(41,138,253,1);
  63. margin: 0 auto;
  64. position: absolute;
  65. bottom: 160rpx;
  66. left: 88rpx;
  67. }
  68. .company{
  69. width: 90%;
  70. height: 40rpx;
  71. font-size:28rpx;
  72. font-family:PingFang SC;
  73. font-weight:400;
  74. color:rgba(41,138,253,1);
  75. margin: 0 auto;
  76. position: absolute;
  77. bottom: 206rpx;
  78. left: 88rpx;
  79. }
  80. .content{
  81. position: absolute;
  82. top: 0;
  83. width: 100%;
  84. height: 100%;
  85. }
  86. .main {
  87. width: 90%;
  88. margin: 0 auto;
  89. margin-top: 20rpx;
  90. border-top:2rpx solid rgba(244,244,244,1);
  91. }
  92. .infoDate {
  93. width: 90%;
  94. height: 34rpx;
  95. display: flex;
  96. justify-content: space-between;
  97. margin: 0 auto;
  98. margin-top: 20rpx;
  99. font-size:24rpx;
  100. font-family:PingFang SC;
  101. font-weight:400;
  102. color:rgba(153,153,153,1);
  103. }
  104. .infoTitle {
  105. width: 132rpx;
  106. height: 44rpx;
  107. font-size: 32rpx;
  108. font-family: PingFang SC;
  109. font-weight: bold;
  110. color: rgba(41, 138, 253, 1);
  111. margin-top: 180rpx;
  112. margin-left: 30rpx;
  113. }
  114. .infoBox {
  115. width: 80%;
  116. height: 900rpx;
  117. border-radius: 20rpx;
  118. margin: 0 auto;
  119. margin-top: 46rpx;
  120. /* border: 1rpx solid #333333; */
  121. /* background-color: #FFFFFF; */
  122. }
  123. .pageBg {
  124. width: 100%;
  125. height: 100vh;
  126. /* background-image: url(../../static/announcement_bgimage@2x.png); */
  127. background-size: 100% 100%;
  128. }
  129. .topTitle {
  130. width: 140rpx;
  131. height: 48rpx;
  132. font-size: 34rpx;
  133. font-family: PingFang SC;
  134. font-weight: bold;
  135. color:rgba(255,255,255,1);
  136. /* color: #333333; */
  137. margin: 0 auto;
  138. padding-top: 20rpx;
  139. }
  140. </style>