billingRules.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. <template>
  2. <view>
  3. <u-navbar title="计费规则" title-color="#101010" ></u-navbar>
  4. <view class="background">
  5. <!-- 单位 -->
  6. <view class="unit">
  7. <view class="title">
  8. 所属收款单位
  9. </view>
  10. <view class="value">
  11. 岑河物业公司
  12. </view>
  13. </view>
  14. <!-- 规则 -->
  15. <view class="rules">
  16. <view class="content">
  17. <view class="rule1">
  18. <view class="title">
  19. 用电分类
  20. </view>
  21. <view class="value">
  22. 高峰用电
  23. </view>
  24. <view class="value">
  25. 谷段用电
  26. </view>
  27. <view class="value title3">
  28. 平段用电
  29. </view>
  30. <view class="value">
  31. 尖峰用电
  32. </view>
  33. </view>
  34. <view class="rule2">
  35. <view class="title">
  36. 用电时段
  37. </view>
  38. <view class="value">
  39. 09:00-15:00
  40. </view>
  41. <view class="value">
  42. 23:00-07:00
  43. </view>
  44. <view class="value value3">
  45. <p>07:00-09:00</p>
  46. <p>15:00-20:00</p>
  47. <p>22:00-23:00</p>
  48. </view>
  49. <view class="value">
  50. 20:00-22:00
  51. </view>
  52. </view>
  53. <view class="rule3">
  54. <view class="title">
  55. 电度电价
  56. </view>
  57. <view class="value">
  58. 0.99元/度
  59. </view>
  60. <view class="value">
  61. 0.37元/度
  62. </view>
  63. <view class="value value4">
  64. 0.69元/度
  65. </view>
  66. <view class="value">
  67. 1.18元/度
  68. </view>
  69. </view>
  70. </view>
  71. <!-- 备注 -->
  72. <view class="remark">
  73. <view class="title">
  74. 备注说明:
  75. </view>
  76. <view class="value">
  77. <view class="item">1.计费规则仅展示租赁合同中的计算方式,最终扣费金额以账单中的实际扣费金额为准。
  78. </view>
  79. <view class="item">
  80. 2.本次租约有效期:2024年2月1日-2024年7月31日
  81. </view>
  82. </view>
  83. </view>
  84. </view>
  85. </view>
  86. </view>
  87. </template>
  88. <script>
  89. export default {
  90. data() {
  91. return {
  92. }
  93. },
  94. methods: {
  95. }
  96. }
  97. </script>
  98. <style lang="scss" scoped>
  99. .background{
  100. background: linear-gradient(180deg, rgba(22,119,255,1) 0%,rgba(22,119,255,0) 100%);
  101. height: 720rpx;
  102. padding-top: 24rpx;
  103. .unit{
  104. background-color: #fff;
  105. border-radius: 8px;
  106. padding: 32rpx;
  107. margin: 0 32rpx;
  108. .title{
  109. color: rgba(153,153,153,1);
  110. }
  111. .value{
  112. color: rgba(51,51,51,1);
  113. font-size: 40rpx;
  114. margin-top: 16rpx;
  115. font-weight: bold;
  116. }
  117. }
  118. }
  119. // 规则
  120. .rules{
  121. margin: 24rpx 32rpx 40rpx;
  122. background-color: #fff;
  123. padding-bottom: 24rpx;
  124. border-radius: 8px;
  125. .content{
  126. padding:24rpx;
  127. display: flex;
  128. text-align: center;
  129. .rule1{
  130. width: 200rpx;
  131. .title{
  132. line-height: 96rpx;
  133. color: rgba(51,51,51,1);
  134. font-size: 32rpx;
  135. font-weight: bold;
  136. }
  137. .value{
  138. color: rgba(51,51,51,1);
  139. line-height: 96rpx;
  140. font-weight: bold;
  141. }
  142. }
  143. .rule2,.rule3{
  144. width: 200rpx;
  145. .title{
  146. color: rgba(51,51,51,1);
  147. font-size: 32rpx;
  148. line-height: 96rpx;
  149. font-weight: bold;
  150. }
  151. .value{
  152. color: rgba(119,119,119,1);
  153. line-height: 96rpx;
  154. }
  155. }
  156. .title3{
  157. height: 144rpx;
  158. line-height: 144rpx !important;
  159. }
  160. .value3{
  161. height: 144rpx;
  162. p{
  163. line-height: 48rpx;
  164. }
  165. }
  166. .value4{
  167. height: 144rpx;
  168. line-height: 144rpx !important;
  169. }
  170. }
  171. // 备注
  172. .remark{
  173. padding: 40rpx 32rpx;
  174. margin: 0 24rpx;
  175. border-radius: 8px;
  176. background-color: rgba(242,244,246,1);
  177. color: rgba(16,16,16,1);
  178. font-size: 24rpx;
  179. line-height: 34rpx;
  180. .value{
  181. margin-top: 16rpx;
  182. }
  183. .item{
  184. margin-bottom: 8rpx;
  185. }
  186. }
  187. }
  188. </style>