alipay.vue 985 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <template>
  2. <view class="alipay">
  3. <view class="alipay_ul">
  4. <view class="alipay_li flex">
  5. <text>真实姓名</text>
  6. <input type="text" placeholder="请填写真实姓名" placeholder-style="color:#999999" />
  7. </view>
  8. <view class="alipay_li flex">
  9. <text>支付宝账号</text>
  10. <input type="text" placeholder="请填写支付宝账号" placeholder-style="color:#999999" />
  11. </view>
  12. </view>
  13. <button hover-class="hover-view" class="alipay_btn">提交</button>
  14. </view>
  15. </template>
  16. <script>
  17. export default {
  18. data() {
  19. return {
  20. };
  21. }
  22. }
  23. </script>
  24. <style lang="scss">
  25. .alipay_li {
  26. height: 88rpx;
  27. padding:0 30rpx;
  28. margin-top: 2rpx;
  29. background: #FFFFFF;
  30. text {
  31. font-size: 28rpx;
  32. }
  33. input {
  34. text-align: right;
  35. font-size: 28rpx;
  36. }
  37. }
  38. .alipay_btn {
  39. width: 690rpx;
  40. height: 98rpx;
  41. color: #333333;
  42. margin: 666rpx auto 0;
  43. background: #FFFFFF;
  44. box-shadow: 0rpx 0rpx 12rpx 0rpx rgba(220, 220, 220, 0.2);
  45. border-radius: 20rpx;
  46. }
  47. </style>