| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <template>
- <view class="content">
- <view class="box">
- <view class="wx">
- <text>微信号</text>
- <input type="text" value="" placeholder="请输入微信号" />
- </view>
- <view class="erweima">
- <text>微信收款码</text>
- <view class="img">
- <image src="../../static/user/erweima.png" mode=""></image>
- </view>
- </view>
- </view>
- <view class="button">
- 确认
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- };
- }
- }
- </script>
- <style lang="scss">
- page , .content{
- height: 100%;
- margin: 0;
- padding: 0;
-
- }
- .box{
- margin:20rpx 0 100rpx 0;
- width: 100%;
- background: #FFFFFF;
-
- .wx{
- border-bottom: #F0F0F0 solid 1rpx;
- padding: 20rpx 0 30rpx 0;
- display: flex;
- text{
- width: 150rpx;
- margin: 0 30rpx;
- }
- input{
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: #999999;
- line-height: 100rpx;
- }
- }
- .erweima{
- padding: 30rpx 0;
- display: flex;
- text{
- margin: 0 30rpx;
- width: 150rpx;
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: #333333;
-
- }
- .img{
- width: 160rpx;
- height: 160rpx;
- image{
- width: 100%;
- height: 100%;
- }
- }
- }
- }
- .button{
- margin: 0 auto;
- width: 560rpx;
- height: 80rpx;
- background: linear-gradient(0deg, #2E58FF, #32C6FF);
- border-radius: 40rpx;
- font-size: 30rpx;
- font-family: PingFangSC;
- font-weight: 500;
- color: #FFFFFF;
- line-height: 80rpx;
- text-align: center;
- }
- </style>
|