123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <template>
- <view class="content">
- <view class="tx-wrap">
- <view class="tx-tit">
- 提现股权
- </view>
- <input type="digit" v-model="txnum" placeholder="请输入提现股权" class="tx-inp" placeholder-class="tx-inp-p">
- <view class="gq-detail">
- <view class="">
- 可提现: (股权)
- </view>
- <view class="right" @click="">
- 全部提现
- </view>
- </view>
- <view class="tx-btn" @click="gqtx">
- 提现
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- txnum: ''
- }
- },
- onLoad() {
- },
- onShow() {
- },
- onReachBottom() {
- },
- onReady() {
- },
- methods: {
- gqtx() {
-
- }
- }
- }
- </script>
- <style lang="scss">
- .content {
- padding-top: 1rpx;
- }
- .tx-wrap {
- width: 700rpx;
- // height: 420rpx;
- padding: 20rpx 0 50rpx 0;
- margin: 19rpx auto;
- background-color: #fff;
- border-radius: 20rpx;
- // display: flex;
- // flex-direction: color;
- .tx-tit {
- margin: auto;
- width: 660rpx;
- font-size: 32rpx;
- color: #333;
- font-weight: bold;
- border-bottom: 1px solid #eee;
- line-height: 87rpx;
- }
- .tx-inp {
- display: block;
- width: 660rpx;
- height: 114rpx;
- font-size: 56rpx;
- font-weight: bold;
- color: #000;
- // padding-left: 20rpx;
- border-bottom: 1rpx solid #eee;
- margin: auto;
- }
- .tx-inp-p {
- font-size: 36rpx;
- }
- .gq-detail {
- display: flex;
- justify-content: space-between;
- padding:20rpx;
- font-size: 28rpx;
- .left {
-
- }
- .right {
- color: #d74f3a;
- }
- }
- .tx-btn {
- width: 660rpx;
- height: 70rpx;
- line-height: 70rpx;
- background-color: #ec643e;
- color: #fff;
- font-size: 32rpx;
- text-align: center;
- margin: 30rpx auto 0;
- border-radius: 35rpx;
- }
- }
- </style>
|