| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <template>
- <view class="page">
- <view class="flex-col">
- <view class="flex-row justify-center">
- <image class="image" src="/static/order/ud16.png"></image>
- </view>
- <view class="amount flex-row justify-center">
- <text>奖励金额</text>
- </view>
- <view class="unmber flex-row justify-center">
- <text>¥1122</text>
- </view>
- <view class="inputView flex-row justify-start">
- <text class="symbol">¥</text>
- <view class="flex-col justify-center input">
- <input type="digit" placeholder="请输入提现金额"/>
- </view>
- </view>
- <view class="btn">
- <text>立即提现</text>
- </view>
- </view>
- <view class="flex-col outView">
- <view class="flex-row justify-between">
- <view class="flex-col leftView">
- <view class="num">
- <text>¥45000</text>
- </view>
- <view class="date">
- <text>2023-12-02 12:12:44</text>
- </view>
- </view>
- <view class="flex-row state">
- <text>已同意</text>
- </view>
- </view>
- <view class="remark">
- <text>经过审核,由于你最近不规范行为,拒绝此次提现申请。</text>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- components: {
- },
- data() {
- return {
- };
- },
- onLoad() {
- },
- methods: {
- }
- }
- </script>
- <style scoped lang="scss">
- @import '../../common/css/common.css';
- @import './index.rpx.scss';
- </style>
|