Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

refund.vue 5.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. <template>
  2. <view class="upload-box">
  3. <view class="head-tips">
  4. 检测到您的ETC卡中还剩余额<text>100.00</text>元,我们将于<text>14</text>个工作日争议期后退回到您的银行卡中,这里将收集您的收款信,具体金额可能会出现增多或减少得情况,敬请谅解!
  5. </view>
  6. <u-form :model="form" ref="myForm" :error-type="errorType">
  7. <view class="from">
  8. <view class="title">
  9. 请输入退费信息
  10. </view>
  11. <u-form-item prop="phone">
  12. <view class="from_item">
  13. <text style="color: #777777;"><text style="color: red;">*</text>联系人姓名:</text>
  14. <u-input v-model="form.phone" class="input" />
  15. </view>
  16. </u-form-item>
  17. <u-form-item prop="phone">
  18. <view class="from_item">
  19. <text style="color: #777777;"><text style="color: red;">*</text>手机号:</text>
  20. <u-input v-model="form.phone" class="input" />
  21. </view>
  22. </u-form-item>
  23. <u-form-item prop="phone">
  24. <view class="from_item">
  25. <text style="color: #777777;"><text style="color: red;">*</text>开户行:</text>
  26. <u-input v-model="form.phone" class="input" />
  27. </view>
  28. </u-form-item>
  29. <u-form-item prop="phone">
  30. <view class="from_item">
  31. <text style="color: #777777;"><text style="color: red;">*</text>退费银行卡号:</text>
  32. <u-input v-model="form.phone" class="input" />
  33. </view>
  34. </u-form-item>
  35. </view>
  36. </u-form>
  37. <button class="submit" @click="toPage()">下一步</button>
  38. </view>
  39. </template>
  40. <script lang="ts" setup>
  41. import {
  42. reactive,
  43. ref
  44. } from "vue"
  45. import {
  46. navTo
  47. } from "@/utils/utils"
  48. // 表单数据
  49. const form = reactive({
  50. // orderNumber: '2141543454545',
  51. // carId: '贵A12345',
  52. // oldCardId: '',
  53. // status: "",
  54. // receiving: "营业点自提",
  55. // name: '许珅',
  56. // phone: '',
  57. // region: '',
  58. // address: '',
  59. // zipCode: '',
  60. // remark: ''
  61. })
  62. // 单选数据列表
  63. const radiolist1 = reactive([{
  64. name: '寄回',
  65. disabled: false
  66. },
  67. {
  68. name: '不寄回',
  69. disabled: false
  70. },
  71. ], )
  72. const show = ref(false)
  73. const showPicker = function() {
  74. show.value = true
  75. }
  76. // 确定地区
  77. const confirm = (e) => {
  78. console.log(e);
  79. form.region = e.province.name + e.city.name + e.area.name
  80. }
  81. const toPage = () => {
  82. navTo('/subpackage/after-sale/to-bookkeeping-card/base-change-people')
  83. // uni.showModal({
  84. // confirmText: '寄回',
  85. // cancelText: '不寄回',
  86. // success: function(res) {
  87. // if (res.confirm) {
  88. // console.log('用户点击确定');
  89. // navTo('/subpackage/after-sale/ETC-log-off/log-off-result')
  90. // } else if (res.cancel) {
  91. // console.log('用户点击取消');
  92. // navTo('/subpackage/after-sale/ETC-log-off/etc-log-off-pay')
  93. // }
  94. // }
  95. // });
  96. }
  97. </script>
  98. <style>
  99. page {
  100. width: 100%;
  101. height: 100%;
  102. background-color: #FFFFFF;
  103. }
  104. </style>
  105. <style lang="scss" scoped>
  106. .upload-box {
  107. // width: 100%;
  108. padding: 30rpx;
  109. .head-tips {
  110. text-indent: 2rem;
  111. font-size: 26rpx;
  112. font-family: Microsoft YaHei;
  113. font-weight: 400;
  114. color: #666666;
  115. line-height: 50rpx;
  116. margin-bottom: 45rpx;
  117. text {
  118. color: #FF8000;
  119. }
  120. }
  121. .upload-card {
  122. margin-bottom: 70rpx;
  123. height: 260rpx;
  124. background: #FFFFFF;
  125. box-shadow: 0rpx 4rpx 13rpx 3rpx rgba(223, 223, 223, 0.8);
  126. border-radius: 20rpx;
  127. padding: 30rpx;
  128. display: flex;
  129. justify-content: space-between;
  130. .card-left {
  131. .item1 {
  132. font-size: 34rpx;
  133. font-family: Microsoft YaHei;
  134. font-weight: 400;
  135. color: #000000;
  136. margin-bottom: 30rpx;
  137. }
  138. .item2 {
  139. font-size: 24rpx;
  140. font-family: Microsoft YaHei;
  141. font-weight: 400;
  142. color: #999999;
  143. margin-bottom: 30rpx;
  144. }
  145. .item3 {
  146. width: 110rpx;
  147. height: 40rpx;
  148. background: #ECFBF8;
  149. /* opacity: 0.2; */
  150. border-radius: 6rpx;
  151. font-size: 20rpx;
  152. font-family: Microsoft YaHei;
  153. font-weight: 400;
  154. text-align: center;
  155. line-height: 40rpx;
  156. color: #0A8F8A;
  157. }
  158. }
  159. image {
  160. width: 295rpx;
  161. height: 188rpx;
  162. }
  163. }
  164. .from {
  165. background-color: #fff;
  166. margin-top: 30rpx;
  167. // padding: 0 30rpx;
  168. ::v-deep .u-form-item {
  169. padding: 0;
  170. line-height: normal;
  171. .u-form-item__message {
  172. margin-bottom: 12rpx
  173. }
  174. }
  175. .title {
  176. font-size: 30rpx;
  177. font-family: Microsoft YaHei;
  178. font-weight: 400;
  179. color: #000000;
  180. margin: 38rpx 0;
  181. }
  182. .from_item {
  183. display: flex;
  184. flex-wrap: nowrap;
  185. justify-content: space-between;
  186. align-items: center;
  187. height: 80rpx;
  188. border-bottom: 1rpx solid #DCDCDC;
  189. ::v-deep .input {
  190. text-align: right;
  191. flex: 1;
  192. background: transparent;
  193. input {
  194. text-align: right;
  195. }
  196. }
  197. }
  198. .from_item1 {
  199. display: flex;
  200. flex-wrap: nowrap;
  201. flex-direction: column;
  202. justify-content: space-between;
  203. padding: 30rpx;
  204. border-bottom: #DCDCDC 1px solid;
  205. input {
  206. text-align: right;
  207. }
  208. .textarea {
  209. background-color: #F1F1F1;
  210. width: 100%;
  211. border-radius: 20rpx;
  212. margin-top: 10rpx;
  213. text-indent: 1rem;
  214. height: 180rpx;
  215. padding: 20rpx;
  216. box-sizing: border-box;
  217. }
  218. }
  219. }
  220. .submit{
  221. height: 80rpx;
  222. background: linear-gradient(-90deg, #43A1E0 0%, #13E7C1 100%);
  223. border-radius: 40rpx;
  224. font-size: 32rpx;
  225. font-family: Microsoft YaHei;
  226. font-weight: 400;
  227. color: #FFFFFF;
  228. line-height: 80rpx;
  229. margin: 60rpx auto;
  230. }
  231. }
  232. </style>