wx.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <template>
  2. <view class="content">
  3. <view class="box">
  4. <view class="wx">
  5. <text>微信号</text>
  6. <input type="text" value="" placeholder="请输入微信号" />
  7. </view>
  8. <view class="erweima">
  9. <text>微信收款码</text>
  10. <view class="img">
  11. <image src="../../static/user/erweima.png" mode=""></image>
  12. </view>
  13. </view>
  14. </view>
  15. <view class="button">
  16. 确认
  17. </view>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. data() {
  23. return {
  24. };
  25. }
  26. }
  27. </script>
  28. <style lang="scss">
  29. page , .content{
  30. height: 100%;
  31. margin: 0;
  32. padding: 0;
  33. }
  34. .box{
  35. margin:20rpx 0 100rpx 0;
  36. width: 100%;
  37. background: #FFFFFF;
  38. .wx{
  39. border-bottom: #F0F0F0 solid 1rpx;
  40. padding: 20rpx 0 30rpx 0;
  41. display: flex;
  42. text{
  43. width: 150rpx;
  44. margin: 0 30rpx;
  45. }
  46. input{
  47. font-size: 28rpx;
  48. font-family: PingFang SC;
  49. font-weight: 400;
  50. color: #999999;
  51. line-height: 100rpx;
  52. }
  53. }
  54. .erweima{
  55. padding: 30rpx 0;
  56. display: flex;
  57. text{
  58. margin: 0 30rpx;
  59. width: 150rpx;
  60. font-size: 30rpx;
  61. font-family: PingFang SC;
  62. font-weight: 400;
  63. color: #333333;
  64. }
  65. .img{
  66. width: 160rpx;
  67. height: 160rpx;
  68. image{
  69. width: 100%;
  70. height: 100%;
  71. }
  72. }
  73. }
  74. }
  75. .button{
  76. margin: 0 auto;
  77. width: 560rpx;
  78. height: 80rpx;
  79. background: linear-gradient(0deg, #2E58FF, #32C6FF);
  80. border-radius: 40rpx;
  81. font-size: 30rpx;
  82. font-family: PingFangSC;
  83. font-weight: 500;
  84. color: #FFFFFF;
  85. line-height: 80rpx;
  86. text-align: center;
  87. }
  88. </style>