| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <template>
- <view class="page">
- <view class="flex-row justify-between top">
- <view class="flex-col justify-start item">
- <view class="flex-row justify-center">
- <image class="image" src="/static/order/ud16.png"></image>
- </view>
- <view class="title">
- <text>奖励金额</text>
- </view>
- <view class="title1">
- <text>¥1122</text>
- </view>
- </view>
- <view class="flex-col justify-start item1">
- <view class="flex-row justify-center">
- <image class="image" src="/static/order/ud15.png"></image>
- </view>
- <view class="title">
- <text>注册人数</text>
- </view>
- <view class="title1">
- <text>11552</text>
- </view>
- </view>
- </view>
- <!-- <view class="btn" @click="goStatisticalPanel">-->
- <!-- <text>去提现</text>-->
- <!-- </view>-->
- </view>
- </template>
- <script>
- export default {
- components: {
- },
- data() {
- return {
- };
- },
- onLoad() {
- },
- methods: {
- goStatisticalPanel(){
- uni.navigateTo({
- url:'/myPages/statisticalPanel/index'
- })
- }
- }
- }
- </script>
- <style scoped lang="scss">
- @import '../../common/css/common.css';
- @import './index.rpx.scss';
- </style>
|