message.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. <!-- 我的消息 -->
  2. <template>
  3. <view class="">
  4. <view class="item" v-for="(item,index) in data" :key="index">
  5. <view class="top">
  6. <view class="left" v-if="item.status==1">
  7. <view class="icon">审核</view>
  8. <view class="title">审核信息</view>
  9. </view>
  10. <view class="left" v-else-if="item.status==2">
  11. <view class="icon" style="background:rgba(248,195,72,1);">报修</view>
  12. <view class="title">报修信息</view>
  13. </view>
  14. <view class="left" v-else-if="item.status==3">
  15. <view class="icon" style="background:rgba(96,139,233,1);">投诉</view>
  16. <view class="title">投诉信息</view>
  17. </view>
  18. <view class="left" v-else>
  19. <view class="icon" style="background:rgba(87,224,135,1);">访问</view>
  20. <view class="title">访问信息</view>
  21. </view>
  22. <view class="right">{{item.date}}</view>
  23. </view>
  24. <view class="content" @tap="seeMore(index)">
  25. <view class="info" :class="{active:item.show}">{{item.info}}</view>
  26. <image src="../../static/icon_combo_nor@2x.png" style="width:29rpx;height: 15rpx;margin-left: 28rpx;margin-top: 15rpx;" v-show="!item.show" ></image>
  27. <image src="../../static/icon_combo_set@2x.png" style="width:29rpx;height: 15rpx;margin-left: 28rpx;margin-top: 15rpx;" v-show="item.show"></image>
  28. </view>
  29. </view>
  30. </view>
  31. </template>
  32. <script>
  33. export default{
  34. data(){
  35. return{
  36. isShow:true,//
  37. status:4,
  38. data:[{status:1,date:'07-21 10:24',info:'恭喜您!您在花园小区1单元101室的审核已经通过!安全现已接收到您提交的报修信息',show:false},{status:2,date:'07-21 10:24',show:false,info:'恭喜您!您在花园小区1单元101室的审核已经通过!安全现已接收到您提交的报修信息'},{status:3,date:'07-21 10:24',show:false,info:'恭喜您!您在花园小区1单元101室的审核已经通过!安全现已接收到您提交的报修信息'}]
  39. }
  40. },
  41. methods:{
  42. // 查看更多
  43. seeMore(index){
  44. this.data[index].show=!this.data[index].show
  45. }
  46. }
  47. }
  48. </script>
  49. <style>
  50. .content{
  51. width: 100%;
  52. display: flex;
  53. margin-top:14rpx ;
  54. padding-bottom: 40rpx;
  55. }
  56. .info{
  57. width: 644rpx;
  58. overflow: hidden;
  59. text-overflow: ellipsis;
  60. white-space: nowrap;
  61. font-size:26rpx;
  62. font-family:PingFang SC;
  63. font-weight:400;
  64. color:rgba(102,102,102,1);
  65. }
  66. .title{
  67. width:116rpx;
  68. height:40rpx;
  69. font-size:28rpx;
  70. font-family:PingFang SC;
  71. font-weight:400;
  72. color:rgba(51,51,51,1);
  73. margin-left: 10rpx;
  74. }
  75. .icon{
  76. width:56rpx;
  77. height:28rpx;
  78. background:rgba(84,162,255,1);
  79. opacity:1;
  80. border-radius:6rpx;
  81. font-size:20rpx;
  82. font-family:PingFang SC;
  83. /* line-height:28rpx; */
  84. text-align: center;
  85. color:rgba(255,255,255,1);
  86. margin-top: 7rpx;
  87. }
  88. .item{
  89. width: 700rpx;
  90. margin: 0 auto;
  91. border-bottom:2px solid rgba(247,247,247,1) ;
  92. }
  93. .top{
  94. width: 100%;
  95. height: 40rpx;
  96. display: flex;
  97. justify-content: space-between;
  98. padding-top: 40rpx;
  99. }
  100. .left{
  101. width:184rpx ;
  102. height: 40rpx;
  103. display: flex;
  104. }
  105. .right{
  106. width:166rpx ;
  107. margin-top: 3rpx;
  108. height: 36rpx;
  109. font-size:26rpx;
  110. font-family:PingFang SC;
  111. font-weight:400;
  112. color:rgba(153,153,153,1);
  113. text-align: right;
  114. }
  115. .active{
  116. width: 644rpx;
  117. height: auto;
  118. overflow: inherit;
  119. text-overflow: inherit;
  120. white-space: inherit;
  121. }
  122. </style>