帧视界壹通告,付费看视频的微信小程序
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.

60 lines
1.1 KiB

11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
11 months ago
  1. <template>
  2. <view class="addBankCard">
  3. <!--顶部导航栏-->
  4. <navbar leftClick @leftClick="$utils.navigateBack" title="推广详情"/>
  5. <!--添加银行卡页面-->
  6. <view class="addBankCard-container">
  7. <view class="addBankCard-title">为保证您的资金安全请绑定账户本人的银行卡</view>
  8. <view class="cardNumberTitle">
  9. <view >卡号</view>
  10. <view>
  11. <uv-icon name="camera" color="#2979ff" size="28"></uv-icon>
  12. </view>
  13. </view>
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return {};
  21. }
  22. }
  23. </script>
  24. <style lang="scss" scoped>
  25. * {
  26. box-sizing: border-box;
  27. margin: 0;
  28. padding: 0;
  29. }
  30. .addBankCard {
  31. padding: 20rpx;
  32. .addBankCard-title{
  33. color:#C6C7CB;
  34. }
  35. .addBankCard-container {
  36. display: flex;
  37. flex-direction: column;
  38. align-items: center;
  39. justify-content: flex-start;
  40. width: 100%;
  41. }
  42. .cardNumberTitle {
  43. display: flex;
  44. justify-content: space-between;
  45. align-items: center;
  46. padding: 10rpx;
  47. width: 100%;
  48. height: 20%;
  49. box-sizing: border-box;
  50. }
  51. }
  52. </style>