You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

reissuePay.vue 3.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <template>
  2. <!-- <navBar title="补办ETC卡"></navBar> -->
  3. <view class="oderPage">
  4. <view class="from">
  5. <view class="content_top">
  6. <image :src="`${$imgUrl}equipmentService/card1.png`" mode=""></image>
  7. <view class="title">
  8. <view class="row1">更换ETC设备</view>
  9. <view class="row2">图片仅供参考,以实际产品为准</view>
  10. </view>
  11. </view>
  12. <view class="from_item">
  13. <text>设备价格</text>
  14. <text class="row2"> <text style="font-size: 25rpx;">¥</text>130<text
  15. style="font-size:25rpx;">.00</text></text>
  16. </view>
  17. <view class="from_item">
  18. <text>服务费</text>
  19. <text class="row2" style="color: #FF8000;"> <text style="font-size: 25rpx;">¥</text>0<text
  20. style="font-size:25rpx;">.00</text></text>
  21. </view>
  22. <view class="from_item" style="margin-bottom: 30rpx;">
  23. <text>快递费</text>
  24. <text class="row2" style="color: #FF8000;"> <text style="font-size: 25rpx;">¥</text>0<text
  25. style="font-size:25rpx;">.00</text></text>
  26. </view>
  27. <view class="hr">
  28. </view>
  29. <view class="from_item" style="margin:30rpx 0 0 0;">
  30. <text>合计</text>
  31. <text class="row2"> <text style="font-size: 25rpx;">¥</text>0<text
  32. style="font-size:25rpx;">.00</text></text>
  33. </view>
  34. </view>
  35. <button class="submit">支付</button>
  36. </view>
  37. </template>
  38. <script setup lang="ts">
  39. import navBar from "./components/nav-bar.vue"
  40. import {
  41. ref,
  42. reactive
  43. } from "vue";
  44. // 单选数据列表
  45. const radiolist1 = reactive([{
  46. name: '营业点自提',
  47. disabled: false
  48. },
  49. {
  50. name: '邮寄',
  51. disabled: false
  52. },
  53. ], )
  54. let show = ref(false)
  55. // 单选
  56. const radioChange = (n) => {
  57. console.log('radioChange', n);
  58. if (n == '卡退费') {
  59. flag.value = true
  60. console.log(flag.value);
  61. } else {
  62. flag.value = false
  63. console.log(flag.value);
  64. }
  65. }
  66. </script>
  67. <style>
  68. page {
  69. width: 100%;
  70. height: 100%;
  71. display: flex;
  72. flex-direction: column;
  73. background-color: #F3F3F3;
  74. }
  75. </style>
  76. <style lang="scss" scoped>
  77. .oderPage {
  78. flex: 1;
  79. width: 100%;
  80. .from {
  81. background-color: #fff;
  82. margin-top: 20rpx;
  83. padding: 30rpx;
  84. .content_top {
  85. display: flex;
  86. margin-bottom: 50rpx;
  87. .title {
  88. margin-left: 30rpx;
  89. display: flex;
  90. flex-direction: column;
  91. justify-content: center;
  92. .row1 {
  93. font-size: 30rpx;
  94. font-family: Microsoft YaHei;
  95. font-weight: 400;
  96. color: #333333;
  97. margin-bottom: 20rpx;
  98. }
  99. .row2 {
  100. font-size: 24rpx;
  101. font-family: Microsoft YaHei;
  102. font-weight: 400;
  103. color: #999999;
  104. }
  105. }
  106. image {
  107. width: 140rpx;
  108. height: 130rpx;
  109. }
  110. }
  111. .hr {
  112. width: 100%;
  113. height: 1rpx;
  114. background: #DCDCDC;
  115. }
  116. .from_item {
  117. display: flex;
  118. flex-wrap: nowrap;
  119. justify-content: space-between;
  120. align-items: center;
  121. font-size: 28rpx;
  122. font-family: Microsoft YaHei;
  123. font-weight: 400;
  124. color: #333333;
  125. margin-bottom: 60rpx;
  126. .row2 {
  127. font-size: 32rpx;
  128. font-family: Microsoft YaHei;
  129. font-weight: 600;
  130. color: #000000;
  131. }
  132. }
  133. }
  134. }
  135. .submit {
  136. width: 670rpx;
  137. height: 80rpx;
  138. background: linear-gradient(-90deg, #43A1E0 0%, #13E7C1 100%);
  139. box-shadow: 0rpx 4rpx 11rpx 1rpx rgba(223,223,223,0.5);
  140. border-radius: 40rpx;
  141. font-size: 32rpx;
  142. font-family: Microsoft YaHei;
  143. font-weight: 400;
  144. color: #FFFFFF;
  145. line-height: 80rpx;
  146. margin-top: 60rpx;
  147. }
  148. </style>