setbank.vue 936 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <template>
  2. <view class="page">
  3. <view class="u-flex u-row-center">
  4. <text class="title">暂未绑定银行卡</text>
  5. </view>
  6. <view class="u-flex u-row-center">
  7. <view class="btn" @click="bangding">
  8. 绑定银行卡
  9. </view>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. }
  18. },
  19. methods: {
  20. bangding() {
  21. uni.navigateTo({
  22. url: "/pagesD/bank-add"
  23. })
  24. },
  25. }
  26. }
  27. </script>
  28. <style scoped lang="scss">
  29. .page {
  30. padding: 0 74rpx;
  31. .title {
  32. font-size: 40rpx;
  33. font-family: PingFangSC-Medium, PingFang SC;
  34. font-weight: 500;
  35. color: #333333;
  36. margin-top: 114rpx;
  37. }
  38. .btn {
  39. width: 602rpx;
  40. height: 96rpx;
  41. background: #0C66C2;
  42. border-radius: 20rpx;
  43. font-size: 36rpx;
  44. font-family: PingFangSC-Medium, PingFang SC;
  45. font-weight: 500;
  46. color: #FFFFFF;
  47. line-height: 96rpx;
  48. text-align: center;
  49. margin-top: 110rpx;
  50. }
  51. }
  52. </style>