confirmorder.vue 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. <template>
  2. <view class="">
  3. <service-widget @btnClick="btn_click"></service-widget>
  4. <view class="wab1 shu1">
  5. <view>晋 <text style="font-weight: bold;">RX4066</text> 的罚单缴费</view>
  6. <view class="binhao">
  7. <text>处罚决定书编号</text>
  8. <text>{{bianhao}}</text>
  9. </view>
  10. <view class="shu1 wab_data">
  11. <view class="heng">
  12. <text>处罚决定书编号</text>
  13. <text>{{bianhao}}</text>
  14. </view>
  15. <view class="heng">
  16. <text>车牌号</text>
  17. <text>晋RX4066</text>
  18. </view>
  19. <view class="heng">
  20. <text>认罚金额</text>
  21. <text>¥100</text>
  22. </view>
  23. <view class="heng">
  24. <text>电话号码</text>
  25. <text>18335592986</text>
  26. </view>
  27. <view class="heng">
  28. <text>认罚日期</text>
  29. <text>2021-09-28</text>
  30. </view>
  31. </view>
  32. <text style="font-size: 24rpx;color: #999999;text-align: center;cursor: pointer;">信息有误,点击返回编辑</text>
  33. </view>
  34. <view class="wab1 shu1" style="color: #607c92;font-size: 24rpx;">
  35. <text>
  36. <u-icon name="checkmark-circle-fill" color="#2979ff" class="icon_photo">
  37. </u-icon>四小时内办结,无需再跑车管所
  38. </text>
  39. <text>
  40. <u-icon name="checkmark-circle-fill" color="#2979ff" class="icon_photo">
  41. </u-icon>已为5000万+车主完成代办,品质值得信赖
  42. </text>
  43. </view>
  44. <view class="wab1 shu1 money wab_data">
  45. <view class="heng">
  46. <text>罚款金额</text>
  47. <text>¥100</text>
  48. </view>
  49. <view class="heng">
  50. <text>服务费</text>
  51. <text>¥15</text>
  52. </view>
  53. </view>
  54. <u-checkbox-group size="26">
  55. <u-checkbox v-model="item.checked" v-for="(item, index) in list" :key="index" :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. btn_click() {
  97. uni.navigateTo({
  98. url: '/pages/chat/chat'
  99. })
  100. },
  101. }
  102. }
  103. </script>
  104. <style>
  105. page {
  106. background-color: #f4f3f8;
  107. padding: 10rpx 36rpx;
  108. box-sizing: border-box;
  109. }
  110. .wab1 {
  111. width: 100%;
  112. height: auto;
  113. background-color: #FFFFFF;
  114. box-shadow: 0 0 12rpx 0 #F2F2F2;
  115. border-radius: 20rpx;
  116. padding: 30rpx 40rpx;
  117. box-sizing: border-box;
  118. margin: 20rpx 0;
  119. }
  120. .shu1 {
  121. display: flex;
  122. flex-direction: column;
  123. justify-content: space-between;
  124. }
  125. .heng {
  126. display: flex;
  127. justify-content: space-between;
  128. align-items: center;
  129. }
  130. .heng1 {
  131. display: flex;
  132. align-items: center;
  133. justify-content: center;
  134. }
  135. .heng2 {
  136. display: flex;
  137. align-items: center;
  138. }
  139. .shu {
  140. display: flex;
  141. flex-direction: column;
  142. justify-content: space-between;
  143. align-items: center;
  144. }
  145. .binhao {
  146. margin: 20rpx 0;
  147. }
  148. .binhao>text {
  149. color: #2163ad;
  150. background: #3796ff26;
  151. padding: 10rpx;
  152. box-sizing: border-box;
  153. }
  154. .wab_data .heng>text:nth-child(1) {
  155. color: #6c6c6c;
  156. }
  157. .wab_data .heng>text:nth-child(2) {
  158. font-weight: bold;
  159. }
  160. .icon_photo {
  161. margin-right: 10rpx;
  162. }
  163. .flexd {
  164. height: auto;
  165. position: fixed;
  166. left: 36rpx;
  167. right: 36rpx;
  168. bottom: 60rpx;
  169. background-color: #fffdee;
  170. border-bottom-left-radius: 60rpx;
  171. border-bottom-right-radius: 60rpx;
  172. }
  173. .flexd_btn {
  174. width: 100%;
  175. height: 100rpx;
  176. border-radius: 60rpx;
  177. box-shadow: 0 6px 10px -6px #aaacac;
  178. }
  179. .flexd_btn>view:nth-child(1) {
  180. width: 70%;
  181. height: 100%;
  182. background-color: #FFFFFF;
  183. border-top-left-radius: 60rpx;
  184. border-bottom-left-radius: 60rpx;
  185. font-weight: bold;
  186. font-size: 32rpx;
  187. padding: 0 40rpx;
  188. box-sizing: border-box;
  189. }
  190. .flexd_btn>view:nth-child(2) {
  191. width: 30%;
  192. height: 100%;
  193. background-color: #007BFF;
  194. border-top-right-radius: 60rpx;
  195. border-bottom-right-radius: 60rpx;
  196. font-weight: bold;
  197. font-size: 36rpx;
  198. color: #FFFFFF;
  199. }
  200. .flexd_tishi {
  201. width: 100%;
  202. height: 60rpx;
  203. padding: 0 40rpx;
  204. box-sizing: border-box;
  205. color: #f1622a;
  206. font-size: 24rpx;
  207. }
  208. </style>