| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- <template>
- <view class="conversionIntegral">
- <view class="header">
- <text>实时汇率</text><br>
- <text>1USDT≈XXXX积分</text>
- </view>
- <view class="title">
- <view class="title-t">
- 兑换币种
- </view>
- </view>
- <view class="content">
- <text>兑出币种</text>
- <view class="it">
- <view class="left">
- <image src="../../static/icon/logo.png"></image>
- USDT
- </view>
- <view class="center">
- <image src="../../static/icon/sd1.png" mode=""></image>
- </view>
- <view class="right">
- <input type="number" value="" placeholder="请输入需要兑换的数量" />
- </view>
- </view>
- <view class="img">
- <image src="../../static/img/change.png" mode=""></image>
- </view>
- <view class="it">
- <view class="left">
- <image src="../../static/icon/jf.png"></image>
- 积分
- </view>
- <view class="center2">
- <image src="../../static/icon/sd2.png" mode=""></image>
- </view>
- <view class="right">
- <text>0.00</text>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- </script>
- <style lang="scss" scoped>
- .conversionIntegral {
- .header {
- background-color: #fff;
- padding: 30rpx;
- text:nth-child(1) {
- color: #0F253A;
- font-size: 28rpx;
- }
- text:nth-child(3) {
- color: #6D7C88;
- font-size: 25rpx;
- }
- }
- .title {
- background-color: #fff;
- padding: 30rpx;
- margin-bottom: 1rpx;
- .title-t {
- font-weight: Medium;
- padding: 0 15rpx;
- color: #333333;
- border-left: solid 2rpx #75EFFA;
- }
- }
- .content {
- background-color: #fff;
- padding: 30rpx;
- text {
- font-size: 25rpx;
- }
- .img {
- text-align: center;
- image {
- width: 80rpx;
- height: 80rpx;
- }
- }
- .it {
- position: relative;
- padding: 80rpx 20rpx;
- display: flex;
- justify-content: space-between;
- .left {
- font-family: PingFang-SC-Medium;
- font-weight: 500;
- color: #0F253A;
- font-size: 30rpx;
- image {
- margin-right: 20rpx;
- margin-bottom: -13rpx;
- width: 60rpx;
- height: 60rpx;
- }
- }
- .center {
- position: absolute;
- right: 400rpx;
- // font-weight: bold;
- padding-top: 10rpx;
- image {
- width: 20rpx;
- height: 15rpx;
- }
- }
- .center2 {
- padding-top: 10rpx;
- position: absolute;
- right: 390rpx;
- image {
- width: 35rpx;
- height: 42rpx;
- }
- }
- .right {
- padding: 10rpx 0;
- width: 340rpx;
- border-bottom: solid 1rpx #ECECEC;
- color: #6D7C88;
- font-size: 28rpx;
- input {
- font-size: 28rpx;
- }
- text {
- }
- }
- }
- }
- }
- </style>
|