index.vue 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. <template>
  2. <view class="content">
  3. <view class="Homepage_header">
  4. <view class="Homepage_suspension">
  5. <view class="Suspension">
  6. <view class="online">
  7. <view><img src="@/static/index/repair-online.svg" alt="" style="margin-left: 5rpx;"></view>
  8. <view style="font-size: 20rpx;">线上保修</view>
  9. </view>
  10. <view class="record">
  11. <view><img src="@/static/index/check-review.svg" alt="" style="margin-left: 5rpx;"></view>
  12. <view style="font-size: 20rpx;">巡检记录</view>
  13. </view>
  14. <view class="withholding">
  15. <view><img src="@/static/index/reduce-record.svg" alt="" style="margin-left: 5rpx;"></view>
  16. <view style="font-size: 20rpx;">扣缴记录</view>
  17. </view>
  18. </view>
  19. </view>
  20. </view>
  21. <view class="pending">
  22. <view class="pending_middle">
  23. <view class="all">
  24. <view class="work">
  25. <span style="font-size: 30rpx;">工单待办</span>
  26. </view>
  27. <view class="processing">
  28. <view class="immediately">
  29. <span style="font-size: 25rpx; color: #5c8fff; ">立即处理</span>
  30. <u-icon name="arrow-right" color="#5c8fff" size="16rpx"></u-icon>
  31. </view>
  32. </view>
  33. </view>
  34. <view class="wait">
  35. <view>
  36. <view style="font-size: 30rpx;">待指派</view>
  37. <view style="text-align: center;">1</view>
  38. </view>
  39. <view>
  40. <view style="font-size: 30rpx;">待维修</view>
  41. <view style="text-align: center;">1</view>
  42. </view>
  43. <view>
  44. <view style="font-size: 30rpx;">已维修</view>
  45. <view style="text-align: center;">1</view>
  46. </view>
  47. </view>
  48. </view>
  49. </view>
  50. <view class="equipment">
  51. <view class="pending_middle">
  52. <view class="all">
  53. <view class="work">
  54. <span style="font-size: 30rpx;">设备异常</span>
  55. </view>
  56. <view class="processing">
  57. <view class="immediately">
  58. <span style="font-size: 25rpx; color: #5c8fff; ">立即查看</span>
  59. <u-icon name="arrow-right" color="#5c8fff" size="16rpx"></u-icon>
  60. </view>
  61. </view>
  62. </view>
  63. <view class="wait">
  64. <view>
  65. <view style="font-size: 30rpx;">异常总数</view>
  66. <view style="text-align: center;">0</view>
  67. </view>
  68. <view>
  69. <view style="font-size: 30rpx;">空调异常</view>
  70. <view style="text-align: center;">0</view>
  71. </view>
  72. <view>
  73. <view style="font-size: 30rpx;">水表异常</view>
  74. <view style="text-align: center;">0</view>
  75. </view>
  76. <view>
  77. <view style="font-size: 30rpx;">电表异常</view>
  78. <view style="text-align: center;">0</view>
  79. </view>
  80. </view>
  81. </view>
  82. </view>
  83. <view class="arrears">
  84. <view class="pending_middle">
  85. <view class="all">
  86. <view class="work">
  87. <span style="font-size: 30rpx;">欠费待收</span>
  88. </view>
  89. <view class="processing">
  90. <view class="immediately">
  91. <span style="font-size: 25rpx; color: #5c8fff; ">立即催收</span>
  92. <u-icon name="arrow-right" color="#5c8fff" size="16rpx"></u-icon>
  93. </view>
  94. </view>
  95. </view>
  96. <view class="type">
  97.  <table class="tr" style="width: 100%; border-color: #ccc; border-collapse: collapse;" border="1" cellspacing="0" cellpadding="0">
  98.           <tr>
  99.             <td>欠费类型</td>
  100.             <td>欠费租户数</td>
  101.              <td>累计欠费(元)</td>
  102.            
  103.           </tr>
  104.           <tr>
  105.             <td>水费</td>
  106.             <td>1.00</td>
  107.              <td>0.00</td>
  108.            
  109.           </tr>
  110. <tr>
  111.    <td>电费</td>
  112.    <td>1.00</td>
  113.    <td>0.00</td>
  114.  
  115. </tr>
  116. <tr>
  117.    <td>物业费</td>
  118.    <td>1.00</td>
  119.    <td>77796.00</td>
  120. </tr>
  121.   </table>
  122. </view>
  123. </view>
  124. </view>
  125. </view>
  126. </template>
  127. <script>
  128. export default {
  129. data() {
  130. return {
  131. tabbardata: 0,
  132. }
  133. },
  134. onLoad() {
  135. },
  136. methods: {
  137. }
  138. }
  139. </script>
  140. <style lang="scss">
  141. *{
  142. margin: 0;
  143. padding: 0;
  144. list-style: none;
  145. text-decoration: none;
  146. }
  147. .Homepage_header{
  148. width: 750rpx;
  149. height: 200rpx;
  150. background-color: #5c8fff;
  151. border-radius: 0px 0px 16px 16px;
  152. position: relative;
  153. display: flex;
  154. align-items: center;
  155. justify-content: center;
  156. }
  157. .Homepage_suspension{
  158. width: 650rpx;
  159. height: 200rpx;
  160. background-color: #fff;
  161. display: flex;
  162. align-items: center;
  163. justify-content: space-between;
  164. position: absolute;
  165. top: 100rpx;
  166. }
  167. .Suspension{
  168. width: 650rpx;
  169. // height: 200rpx;
  170. display: flex;
  171. align-items: center;
  172. justify-content: space-around;
  173. }
  174. .pending{
  175. width: 750rpx;
  176. height: 350rpx;
  177. // background-color: #ccc;
  178. display: flex;
  179. align-items: center;
  180. justify-content: center;
  181. position: relative;
  182. top: 50rpx;
  183. }
  184. .pending_middle{
  185. width: 650rpx;
  186. // height: 100px;
  187. // background-color: #fff;
  188. }
  189. .all{
  190. width: 100%;
  191. display: flex;
  192. align-items: center;
  193. justify-content: space-between;
  194. }
  195. .work{
  196. // padding-left: 20rpx;
  197. // padding-top: 2rpx;
  198. }
  199. .wait{
  200. width: 650rpx;
  201. display: flex;
  202. align-items: center;
  203. background-color: #fff;
  204. justify-content: space-around;
  205. padding-top: 30rpx;
  206. text-align: center;
  207. line-height: 60rpx;
  208. margin-top: 10rpx;
  209. }
  210. .immediately{
  211. display: flex;
  212. // padding-top: 2rpx;
  213. }
  214. .equipment{
  215. width: 750rpx;
  216. // height: 200rpx;
  217. display: flex;
  218. align-items: center;
  219. justify-content: center;
  220. position: relative;
  221. top: 20rpx;
  222. }
  223. .arrears{
  224. // width: 750rpx;
  225. // height: 350rpx;
  226. display: flex;
  227. flex: 1;
  228. align-items: center;
  229. justify-content: center;
  230. position: relative;
  231. top: 50rpx;
  232. }
  233. .type{
  234. display: flex;
  235. align-items: center;
  236. justify-content: space-around;
  237. text-align: center;
  238. flex: 1;
  239. margin-top: 10rpx;
  240. font-size: 30rpx;
  241. }
  242. tr{
  243. background-color: #fff;
  244. }
  245. </style>