bank-add.vue 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. <template>
  2. <view class="bank-add u-flex-col u-col-center">
  3. <view class="" style="text-align: left;width: 100%;">
  4. 只能绑定与实名账号一致的用户的银行卡
  5. </view>
  6. <view class="back">
  7. <view class="" style="margin-bottom: 40rpx;">
  8. <u-input placeholder="请输入银行卡卡号" border="none" style="margin-bottom: 40rpx;" v-model="bank_no">
  9. <u--text text="银行卡号" color="#000" slot="prefix" margin="0 3px 0 0" style="width: 188rpx;"></u--text>
  10. </u-input>
  11. </view>
  12. <view class="" style="margin-bottom: 40rpx;">
  13. <u-input placeholder="请输入开户行" border="none" v-model="bank_name">
  14. <u--text text="开户行" color="#000" slot="prefix" margin="0 3px 0 0" style="width: 188rpx;"></u--text>
  15. </u-input>
  16. </view>
  17. <view class="" style="margin-bottom: 40rpx;" >
  18. <u-input placeholder="请输入持卡人姓名" border="none" v-model="bank_user">
  19. <u--text text="持卡人姓名" color="#000" slot="prefix" margin="0 3px 0 0"
  20. style="width: 188rpx;"></u--text>
  21. </u-input>
  22. </view>
  23. <view class="" style="margin-bottom: 40rpx;">
  24. <u-input placeholder="请输入银行预留号码" border="none" v-model="bank_mobile">
  25. <u--text text="手机号" color="#000" slot="prefix" margin="0 3px 0 0" style="width: 188rpx;"></u--text>
  26. </u-input>
  27. </view>
  28. <view class="" style="margin-bottom: 40rpx;">
  29. <u-input placeholder="请输入验证码" border="none" v-model="code">
  30. <u--text text="验证码" color="#000" slot="prefix" margin="0 3px 0 0" style="width: 188rpx;"></u--text>
  31. </u-input>
  32. </view>
  33. </view>
  34. <view class="add-btn" @click="save">
  35. 保存
  36. </view>
  37. </view>
  38. </template>
  39. <script>
  40. import {
  41. setBank
  42. } from "@/units/inquire.js"
  43. export default {
  44. data() {
  45. return {
  46. bank_name: "",
  47. bank_no: "",
  48. bank_user: "",
  49. bank_mobile: "",
  50. code: ""
  51. }
  52. },
  53. onLoad() {
  54. },
  55. methods: {
  56. save() {
  57. if (!this.bank_name) {
  58. this.$u.toast('请填写银行名称')
  59. return
  60. }
  61. if (!this.bank_no) {
  62. this.$u.toast('请填写银行卡号')
  63. return
  64. }
  65. if (!this.bank_user) {
  66. this.$u.toast('请填写持卡人姓名')
  67. return
  68. }
  69. if (!thisbank_mobile) {
  70. this.$u.toast('请填写银行预留号码')
  71. return
  72. }
  73. if (!thiscode) {
  74. this.$u.toast('请输入验证码')
  75. return
  76. }
  77. uni.showLoading({
  78. mask: true,
  79. title: "请稍后"
  80. })
  81. setBank({
  82. bank_name: this.bank_name,
  83. bank_no: this.bank_no,
  84. bank_user: this.bank_user,
  85. bank_mobile: this.bank_mobile,
  86. code:this.code
  87. }).then(res => {
  88. this.$u.toast(res.msg)
  89. if (res.code == 1) {
  90. setTimeout(() => {
  91. uni.navigateBack()
  92. }, 800)
  93. }
  94. })
  95. }
  96. }
  97. }
  98. </script>
  99. <style lang="scss">
  100. .bank-add {
  101. background: #F3F3F3;
  102. height: 100vh;
  103. padding: 20rpx 32rpx 0;
  104. box-sizing: border-box;
  105. .back {
  106. width: 686rpx;
  107. height: 442rpx;
  108. background: #FFFFFF;
  109. border-radius: 20rpx;
  110. padding: 36rpx 24rpx;
  111. box-sizing: border-box;
  112. margin-top: 20rpx;
  113. }
  114. .add-btn{
  115. height: 92rpx;
  116. background: #0C66C2;
  117. border-radius: 20rpx;
  118. margin-top:60rpx ;
  119. width: 100%;
  120. font-size: 36rpx;
  121. font-family: PingFangSC-Medium, PingFang SC;
  122. font-weight: 500;
  123. color: #FFFFFF;
  124. line-height: 92rpx;
  125. text-align: center;
  126. }
  127. }
  128. </style>
  129. <style scoped>
  130. ::v-deep .u-text__value {
  131. width: 188rpx;
  132. }
  133. </style>