confirmorder.vue 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. <template>
  2. <view class="">
  3. <view class="wab1 shu1">
  4. <view>晋 <text style="font-weight: bold;">RX4066</text> 的罚单缴费</view>
  5. <view class="binhao">
  6. <text>处罚决定书编号</text>
  7. <text>{{bianhao}}</text>
  8. </view>
  9. <view class="shu1 wab_data">
  10. <view class="heng">
  11. <text>处罚决定书编号</text>
  12. <text>{{bianhao}}</text>
  13. </view>
  14. <view class="heng">
  15. <text>车牌号</text>
  16. <text>晋RX4066</text>
  17. </view>
  18. <view class="heng">
  19. <text>认罚金额</text>
  20. <text>¥100</text>
  21. </view>
  22. <view class="heng">
  23. <text>电话号码</text>
  24. <text>18335592986</text>
  25. </view>
  26. <view class="heng">
  27. <text>认罚日期</text>
  28. <text>2021-09-28</text>
  29. </view>
  30. </view>
  31. <text style="font-size: 24rpx;color: #999999;text-align: center;cursor: pointer;">信息有误,点击返回编辑</text>
  32. </view>
  33. <view class="wab1 shu1" style="color: #607c92;font-size: 24rpx;">
  34. <text>
  35. <u-icon name="checkmark-circle-fill" color="#2979ff" class="icon_photo">
  36. </u-icon>四小时内办结,无需再跑车管所
  37. </text>
  38. <text>
  39. <u-icon name="checkmark-circle-fill" color="#2979ff" class="icon_photo">
  40. </u-icon>已为5000万+车主完成代办,品质值得信赖
  41. </text>
  42. </view>
  43. <view class="wab1 shu1 money wab_data">
  44. <view class="heng">
  45. <text>罚款金额</text>
  46. <text>¥100</text>
  47. </view>
  48. <view class="heng">
  49. <text>服务费</text>
  50. <text>¥15</text>
  51. </view>
  52. </view>
  53. <u-checkbox-group size="26">
  54. <u-checkbox v-model="item.checked" v-for="(item, index) in list" :key="index"
  55. :name="item.name">
  56. <view style="font-size: 24rpx;">
  57. {{item.name}}
  58. </view>
  59. </u-checkbox>
  60. </u-checkbox-group>
  61. <view class="flexd shu1">
  62. <view class="flexd_tishi heng2">
  63. <u-icon name="info-circle" color="#f1622a" class="icon_photo">
  64. </u-icon>罚单不及时办理将产生每天3%的滞纳金,请尽快办理
  65. </view>
  66. <view class="flexd_btn heng">
  67. <view class="heng2">
  68. <text>合计¥</text>
  69. <text>115</text>
  70. </view>
  71. <view class="heng1" @click="zhifu">
  72. 去支付
  73. </view>
  74. </view>
  75. </view>
  76. </view>
  77. </template>
  78. <script>
  79. export default {
  80. data() {
  81. return {
  82. bianhao: "1234562358652415",
  83. agree: false,
  84. list: [{
  85. name: '同意《罚款代缴服务协议》',
  86. checked: false,
  87. disabled: false
  88. }, ],
  89. }
  90. },
  91. onLoad() {
  92. this.bianhao = this.bianhao.substr(0, 4) + " " + this.bianhao.substr(4, 4) + " " + this.bianhao.substr(8, 4) +
  93. " " + this.bianhao.substr(12, 4);
  94. },
  95. methods: {
  96. }
  97. }
  98. </script>
  99. <style>
  100. page {
  101. background-color: #f4f3f8;
  102. padding: 10rpx 36rpx;
  103. box-sizing: border-box;
  104. }
  105. .wab1 {
  106. width: 100%;
  107. height: auto;
  108. background-color: #FFFFFF;
  109. box-shadow: 0 0 12rpx 0 #F2F2F2;
  110. border-radius: 20rpx;
  111. padding: 30rpx 40rpx;
  112. box-sizing: border-box;
  113. margin: 20rpx 0;
  114. }
  115. .shu1 {
  116. display: flex;
  117. flex-direction: column;
  118. justify-content: space-between;
  119. }
  120. .heng {
  121. display: flex;
  122. justify-content: space-between;
  123. align-items: center;
  124. }
  125. .heng1 {
  126. display: flex;
  127. align-items: center;
  128. justify-content: center;
  129. }
  130. .heng2 {
  131. display: flex;
  132. align-items: center;
  133. }
  134. .shu {
  135. display: flex;
  136. flex-direction: column;
  137. justify-content: space-between;
  138. align-items: center;
  139. }
  140. .binhao {
  141. margin: 20rpx 0;
  142. }
  143. .binhao>text {
  144. color: #2163ad;
  145. background: #3796ff26;
  146. padding: 10rpx;
  147. box-sizing: border-box;
  148. }
  149. .wab_data .heng>text:nth-child(1) {
  150. color: #6c6c6c;
  151. }
  152. .wab_data .heng>text:nth-child(2) {
  153. font-weight: bold;
  154. }
  155. .icon_photo {
  156. margin-right: 10rpx;
  157. }
  158. .flexd {
  159. height: auto;
  160. position: fixed;
  161. left: 36rpx;
  162. right:36rpx;
  163. bottom: 60rpx;
  164. background-color: #fffdee;
  165. border-bottom-left-radius: 60rpx;
  166. border-bottom-right-radius: 60rpx;
  167. }
  168. .flexd_btn{
  169. width: 100%;
  170. height: 100rpx;
  171. border-radius: 60rpx;
  172. box-shadow:0 6px 10px -6px #aaacac;
  173. }
  174. .flexd_btn>view:nth-child(1){
  175. width: 70%;
  176. height: 100%;
  177. background-color: #FFFFFF;
  178. border-top-left-radius: 60rpx;
  179. border-bottom-left-radius: 60rpx;
  180. font-weight: bold;
  181. font-size: 32rpx;
  182. padding: 0 40rpx;
  183. box-sizing: border-box;
  184. }
  185. .flexd_btn>view:nth-child(2){
  186. width: 30%;
  187. height: 100%;
  188. background-color: #007BFF;
  189. border-top-right-radius: 60rpx;
  190. border-bottom-right-radius: 60rpx;
  191. font-weight: bold;
  192. font-size: 36rpx;
  193. color: #FFFFFF;
  194. }
  195. .flexd_tishi{
  196. width: 100%;
  197. height: 60rpx;
  198. padding: 0 40rpx;
  199. box-sizing: border-box;
  200. color: #f1622a;
  201. font-size: 24rpx;
  202. }
  203. </style>