| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <template>
- <view class="content">
- <view class="jg" style="height: 20rpx;"></view>
- <view class="user-info">
- <view class="money">300</view>
- <view class="can-move">
- 可转账通证
- </view>
- </view>
- <view class="to-user">
- <view class="to-tit">
- 收款人账户
- </view>
- <input type="text" v-model="touser_id" placeholder="请输入收款人账户"/>
- </view>
- <view class="to-user">
- <view class="to-tit">
- 转账数量
- </view>
- <input type="text" v-model="touser_num" placeholder="请输入转账数量"/>
- </view>
- <view class="btn">
- 提交申请
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- .user-info {
- width: 750rpx;
- height: 139rpx;
- background: #FFFFFF;
- text-align: center;
- .money {
- padding-top: 25rpx;
- font-size: 42rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #333333;
- }
- .can-move {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #666666;
- }
- }
- .to-user {
- margin-top: 20rpx;
- width: 750rpx;
- height: 160rpx;
- background: #FFFFFF;
- padding: 36rpx 25rpx;
- .to-tit {
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: #333333;
- padding-bottom: 25rpx;
- }
- }
- .btn {
-
- width: 630rpx;
- line-height: 90rpx;
- margin: auto;
- margin-top: 120rpx;
- background: #ff4c4c;
- border-radius: 10rpx;
- font-size: 36rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #FFFFFF;
- text-align: center;
- }
- </style>
|