| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186 |
- <template>
- <view class="content">
- <image src="../../static/img/index/index.png" mode="" class="bg"></image>
- <view class="box">
- <view class="discounts">
- <image src="../../static/img/index/youhui1.png" mode="" class="discounts1"></image>
- <view class="money">
- ¥<text>{{price}}</text>
- </view>
- <view class="baodan" @click="baodan()">
- <image src="../../static/img/index/baodan1.png" mode=""></image>
- </view>
- </view>
- <view class="earnings-box">
- <image src="../../static/img/index/vip.png" mode="" class="earnings"></image>
- <view class="text-box">
- <view class="textDetail" v-for="(item,index) in revenueList">
- <view class="textDetail-title">
- {{index<2?(index+1)+"层收益":(index+1)+"层收益(黑钻VIP会员专属)"}}
- </view>
- <view class="textDetail-content">{{item}}</view>
- </view>
- </view>
- </view>
- <view class="discounts">
- <image src="../../static/img/index/youhui1.png" mode="" class="discounts1"></image>
- <view class="money">
- ¥<text>{{price}}</text>
- </view>
- <view class="baodan" @click="baodan()">
- <image src="../../static/img/index/baodan1.png" mode=""></image>
- </view>
- </view>
- <view class="earnings-box">
- <image src="../../static/img/index/vip.png" mode="" class="earnings"></image>
- <view class="text-box">
- <view class="textDetail" v-for="(item,index) in revenueList">
- <view class="textDetail-title">
- {{index<2?(index+1)+"层收益":(index+1)+"层收益(黑钻VIP会员专属)"}}
- </view>
- <view class="textDetail-content">{{item}}</view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- mapState
- } from 'vuex';
- export default {
- components: {},
- data() {
- return {
- price: 20000,
- price1: 4000,
- revenueList: [
- "5人x2000元=1万元",
- "25人x2000元=5万元",
- "125人x2000元=25万元 ",
- "625人x2000元=125万元",
- "3125人x2000元=625万元 ",
- "15625人x2000元=3125万元 ",
- "78125人x2000元=1.5625亿元"
- ]
- }
- },
- methods: {
- baodan() {
- console.log("aaaaa ");
- uni.navigateTo({
- url
- })
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- page {
- padding: 0;
- margin: 0;
- // width: 750rpx;
- height: 100%;
- }
- .content {
- display: flex;
- position: relative;
- flex-direction: column;
- .bg {
- position: absolute;
- width: 100%;
- height: 6000rpx;
- }
- .box{
- margin-top: 1480rpx;
- }
- .discounts {
- margin: 0 30rpx;
- display: flex;
- justify-content: center;
- position: relative;
- width: 690rpx;
- height: 890rpx;
- .discounts1 {
- width: 100%;
- height: 100%;
- }
- .money {
- margin: 0 auto;
- display: flex;
- justify-content: center;
- align-items: center;
- top: 0;
- margin-top: 250rpx;
- font-size: 36rpx;
- font-family: Source Han Sans CN;
- font-weight: bold;
- color: #C63535;
- line-height: 30rpx;
- position: absolute;
- text {
- font-size: 116rpx;
- font-family: Source Han Sans CN;
- font-weight: 800;
- color: #C63535;
- line-height: 115rpx;
- }
- }
- .baodan {
- position: absolute;
- top: 690rpx;
- width: 300rpx;
- height: 80rpx;
- image {
- width: 100%;
- height: 100%;
- }
- }
- }
- .earnings-box {
- position: relative;
- margin: 40rpx 30rpx;
- width: 690rpx;
- height: 1140rpx;
- .earnings {
- width: 100%;
- height: 100%;
- }
- .text-box {
- position: absolute;
- top: 184rpx;
- left: 110rpx;
- .textDetail {
- padding-bottom: 69rpx;
- .textDetail-title {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #4E2C0E;
- line-height: 30rpx;
- padding-bottom: 10rpx;
- }
- .textDetail-content {
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: bold;
- color: #4E2C0E;
- line-height: 30rpx;
- }
- }
- }
- }
- }
- </style>
|