index.vue 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. <template>
  2. <view style="margin-top: 40rpx;">
  3. <view class="item">
  4. <view class="left">
  5. <image src="../../static/complain_icon_complain@2x.png" style="width: 100%;height: 100%;"></image>
  6. </view>
  7. <view class="right">
  8. <view style="width:100%;height:44rpx;display: flex;justify-content: space-between;">
  9. <view class="name">明灯三千</view>
  10. <view class="topBtn" v-if="false">已处理</view>
  11. <view v-else class="topBtn" style="border:2rpx solid rgba(41,138,253,1);color:#298AFD;">未处理</view>
  12. </view>
  13. <view class="text">
  14. 水龙头坏了了了了
  15. </view>
  16. <view class="img">
  17. <image src="../../static/opening_top_bgimage@2x.png" style="width: 180rpx;height: 180rpx;padding-right: 10rpx;margin-bottom: 10rpx;"></image>
  18. <image src="../../static/opening_top_bgimage@2x.png" style="width: 180rpx;height: 180rpx;padding-right: 10rpx;margin-bottom: 10rpx;"></image>
  19. <image src="../../static/opening_top_bgimage@2x.png" style="width: 180rpx;height: 180rpx;padding-right: 10rpx;margin-bottom: 10rpx;"></image>
  20. <image src="../../static/opening_top_bgimage@2x.png" style="width: 180rpx;height: 180rpx;padding-right: 10rpx;margin-bottom: 10rpx;"></image>
  21. <image src="../../static/opening_top_bgimage@2x.png" style="width: 180rpx;height: 180rpx;padding-right: 10rpx;margin-bottom: 10rpx;"></image>
  22. <image src="../../static/opening_top_bgimage@2x.png" style="width: 180rpx;height: 180rpx;padding-right: 10rpx;margin-bottom: 10rpx;"></image>
  23. <image src="../../static/opening_top_bgimage@2x.png" style="width: 180rpx;height: 180rpx;padding-right: 10rpx;margin-bottom: 10rpx;"></image>
  24. <image src="../../static/opening_top_bgimage@2x.png" style="width: 180rpx;height: 180rpx;padding-right: 10rpx;margin-bottom: 10rpx;"></image>
  25. </view>
  26. <!-- 回复信息 -->
  27. <view class="replay">
  28. <view style="width: 100%;margin: 20rpx 0rpx 20rpx 20rpx;">
  29. <view class="replayItem">
  30. <view class="replayName"><text style="font-size: 28rpx;color: #333333;font-family:PingFang SC;font-weight:bold;">物业
  31. </text><text style="color:rgba(51,51,51,1);">回复</text><text style="font-size: 28rpx;color: #333333;font-family:PingFang SC;font-weight:bold;margin-left: 5rpx;">肖战:</text></view>
  32. <view class="replayContent">换了一个新的,已经修好啦~</view>
  33. </view>
  34. <view class="replayItem">
  35. <view class="replayName"><text style="font-size: 28rpx;color: #333333;font-family:PingFang SC;font-weight:bold;">小赞
  36. </text><text style="color:rgba(51,51,51,1);">回复</text><text style="font-size: 28rpx;color: #333333;font-family:PingFang SC;font-weight:bold;margin-left: 5rpx;">肖战:</text></view>
  37. <view class="replayContent">换了一个新的,已经修好啦~</view>
  38. </view>
  39. </view>
  40. </view>
  41. <!-- 我要评论 -->
  42. <view class="bottomBtn" @tap="myTalk">我的评价</view>
  43. <view class="date">2020-01-21 12:31</view>
  44. </view>
  45. </view>
  46. <!-- 底部按钮 -->
  47. <view class="btnBox" @tap="myRepairs">
  48. 我要投诉
  49. </view>
  50. </view>
  51. </template>
  52. <script>
  53. export default {
  54. data() {
  55. return {}
  56. },
  57. methods: {
  58. // 我的评价
  59. myTalk() {
  60. uni.navigateTo({
  61. url: "./evaluateCompalin"
  62. })
  63. },
  64. // 我要投诉
  65. myRepairs() {
  66. uni.navigateTo({
  67. url: "./wantCompalin"
  68. })
  69. }
  70. }
  71. }
  72. </script>
  73. <style scoped>
  74. .leftBtn {
  75. width: 340rpx;
  76. height: 90rpx;
  77. background: rgba(102, 193, 143, 1);
  78. opacity: 1;
  79. border-radius: 18rpx;
  80. font-size: 32rpx;
  81. font-family: PingFang SC;
  82. font-weight: bold;
  83. color: rgba(255, 255, 255, 1);
  84. text-align: center;
  85. line-height: 90rpx;
  86. }
  87. .rightBtn {
  88. width: 340rpx;
  89. height: 90rpx;
  90. background: rgba(41, 138, 253, 1);
  91. opacity: 1;
  92. border-radius: 18rpx;
  93. font-size: 32rpx;
  94. font-family: PingFang SC;
  95. font-weight: bold;
  96. color: rgba(255, 255, 255, 1);
  97. text-align: center;
  98. line-height: 90rpx;
  99. }
  100. .btnBox {
  101. width: 702rpx;
  102. height: 90rpx;
  103. position: fixed;
  104. bottom: 56rpx;
  105. left: 24rpx;
  106. background: rgba(41, 138, 253, 1);
  107. opacity: 1;
  108. border-radius: 18rpx;
  109. font-size: 32rpx;
  110. font-family: PingFang SC;
  111. font-weight: bold;
  112. color: rgba(255, 255, 255, 1);
  113. text-align: center;
  114. line-height: 90rpx;
  115. }
  116. .date {
  117. width: 230rpx;
  118. height: 34rpx;
  119. font-size: 24rpx;
  120. font-family: PingFang SC;
  121. font-weight: 400;
  122. color: rgba(204, 204, 204, 1);
  123. margin-top: 10rpx;
  124. margin-left: 356rpx;
  125. text-align: right;
  126. margin-bottom: 30rpx;
  127. }
  128. .bottomBtn {
  129. width: 140rpx;
  130. height: 42rpx;
  131. background: rgba(255, 255, 255, 1);
  132. border: 2rpx solid rgba(41, 138, 253, 1);
  133. opacity: 1;
  134. border-radius: 22rpx;
  135. font-size: 20rpx;
  136. font-family: PingFang SC;
  137. font-weight: 400;
  138. line-height: 42rpx;
  139. color: rgba(41, 138, 253, 1);
  140. text-align: center;
  141. margin-top: 40rpx;
  142. margin-left: 446rpx;
  143. }
  144. .replayItem {
  145. margin-top: 10rpx;
  146. }
  147. .replayContent {
  148. font-size: 24rpx;
  149. font-family: PingFang SC;
  150. font-weight: 400;
  151. color: rgba(51, 51, 51, 1);
  152. margin-top: 4rpx;
  153. }
  154. .replay {
  155. width: 586rpx;
  156. margin-top: 20rpx;
  157. background: rgba(247, 247, 247, 1);
  158. opacity: 1;
  159. border-radius: 8rpx;
  160. overflow: hidden;
  161. }
  162. .text {
  163. width: 100%;
  164. font-size: 32rpx;
  165. font-family: PingFang SC;
  166. font-weight: 400;
  167. color: rgba(51, 51, 51, 1);
  168. margin-top: 30rpx;
  169. }
  170. .img {
  171. width: 100%;
  172. margin-top: 10rpx;
  173. display: flex;
  174. flex-wrap: wrap;
  175. }
  176. .img image :nth-child(3n){
  177. margin-right: none;
  178. }
  179. .name {
  180. font-size: 32rpx;
  181. font-family: PingFang SC;
  182. font-weight: bold;
  183. color: rgba(41, 138, 253, 1);
  184. }
  185. .topBtn {
  186. width: 120rpx;
  187. height: 42rpx;
  188. background: rgba(255, 255, 255, 1);
  189. border: 2rpx solid rgba(204, 204, 204, 1);
  190. opacity: 1;
  191. border-radius: 22rpx;
  192. font-size: 20rpx;
  193. font-family: PingFang SC;
  194. font-weight: 400;
  195. color: rgba(204, 204, 204, 1);
  196. text-align: center;
  197. line-height: 42rpx;
  198. }
  199. .item {
  200. width: 702rpx;
  201. margin: 0 auto;
  202. border-bottom: 2rpx solid rgba(247, 247, 247, 1);
  203. display: flex;
  204. margin-top: 40rpx;
  205. }
  206. .left {
  207. width: 86rpx;
  208. height: 86rpx;
  209. }
  210. .right {
  211. width: 586rpx;
  212. margin-left: 30rpx;
  213. }
  214. </style>