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.

refund.vue 5.0KB

2 yıl önce
2 yıl önce
2 yıl önce
2 yıl önce
2 yıl önce
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  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. }
  84. </script>
  85. <style>
  86. page {
  87. width: 100%;
  88. height: 100%;
  89. background-color: #FFFFFF;
  90. }
  91. </style>
  92. <style lang="scss" scoped>
  93. .upload-box {
  94. // width: 100%;
  95. padding: 30rpx;
  96. .head-tips {
  97. text-indent: 2rem;
  98. font-size: 26rpx;
  99. font-family: Microsoft YaHei;
  100. font-weight: 400;
  101. color: #666666;
  102. line-height: 50rpx;
  103. margin-bottom: 45rpx;
  104. text {
  105. color: #FF8000;
  106. }
  107. }
  108. .upload-card {
  109. margin-bottom: 70rpx;
  110. height: 260rpx;
  111. background: #FFFFFF;
  112. box-shadow: 0rpx 4rpx 13rpx 3rpx rgba(223, 223, 223, 0.8);
  113. border-radius: 20rpx;
  114. padding: 30rpx;
  115. display: flex;
  116. justify-content: space-between;
  117. .card-left {
  118. .item1 {
  119. font-size: 34rpx;
  120. font-family: Microsoft YaHei;
  121. font-weight: 400;
  122. color: #000000;
  123. margin-bottom: 30rpx;
  124. }
  125. .item2 {
  126. font-size: 24rpx;
  127. font-family: Microsoft YaHei;
  128. font-weight: 400;
  129. color: #999999;
  130. margin-bottom: 30rpx;
  131. }
  132. .item3 {
  133. width: 110rpx;
  134. height: 40rpx;
  135. background: #ECFBF8;
  136. /* opacity: 0.2; */
  137. border-radius: 6rpx;
  138. font-size: 20rpx;
  139. font-family: Microsoft YaHei;
  140. font-weight: 400;
  141. text-align: center;
  142. line-height: 40rpx;
  143. color: #0A8F8A;
  144. }
  145. }
  146. image {
  147. width: 295rpx;
  148. height: 188rpx;
  149. }
  150. }
  151. .from {
  152. background-color: #fff;
  153. margin-top: 30rpx;
  154. // padding: 0 30rpx;
  155. ::v-deep .u-form-item {
  156. padding: 0;
  157. line-height: normal;
  158. .u-form-item__message {
  159. margin-bottom: 12rpx
  160. }
  161. }
  162. .title {
  163. font-size: 30rpx;
  164. font-family: Microsoft YaHei;
  165. font-weight: 400;
  166. color: #000000;
  167. margin: 38rpx 0;
  168. }
  169. .from_item {
  170. display: flex;
  171. flex-wrap: nowrap;
  172. justify-content: space-between;
  173. align-items: center;
  174. height: 80rpx;
  175. border-bottom: 1rpx solid #DCDCDC;
  176. ::v-deep .input {
  177. text-align: right;
  178. flex: 1;
  179. background: transparent;
  180. input {
  181. text-align: right;
  182. }
  183. }
  184. }
  185. .from_item1 {
  186. display: flex;
  187. flex-wrap: nowrap;
  188. flex-direction: column;
  189. justify-content: space-between;
  190. padding: 30rpx;
  191. border-bottom: #DCDCDC 1px solid;
  192. input {
  193. text-align: right;
  194. }
  195. .textarea {
  196. background-color: #F1F1F1;
  197. width: 100%;
  198. border-radius: 20rpx;
  199. margin-top: 10rpx;
  200. text-indent: 1rem;
  201. height: 180rpx;
  202. padding: 20rpx;
  203. box-sizing: border-box;
  204. }
  205. }
  206. }
  207. .submit{
  208. height: 80rpx;
  209. background: linear-gradient(-90deg, #43A1E0 0%, #13E7C1 100%);
  210. border-radius: 40rpx;
  211. font-size: 32rpx;
  212. font-family: Microsoft YaHei;
  213. font-weight: 400;
  214. color: #FFFFFF;
  215. line-height: 80rpx;
  216. margin: 60rpx auto;
  217. }
  218. }
  219. </style>