no message
This commit is contained in:
@@ -54,6 +54,11 @@
|
|||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
}
|
}
|
||||||
|
.flex-c-lr{
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
justify-content: space-between;
|
||||||
|
}
|
||||||
.flex-c{
|
.flex-c{
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|||||||
+18
-1
@@ -5,6 +5,13 @@
|
|||||||
<view class="contract-view">
|
<view class="contract-view">
|
||||||
<image src="@/static/new/jia_bg.png" class="jia-img"></image>
|
<image src="@/static/new/jia_bg.png" class="jia-img"></image>
|
||||||
<view class="box-panel" style="margin-top:384rpx">
|
<view class="box-panel" style="margin-top:384rpx">
|
||||||
|
<view class="box-top flex-r-lr" style="margin-bottom:48rpx;">
|
||||||
|
<view class="flex-c-lr" v-for="(item,index) in tList" :key="index"
|
||||||
|
style="align-items: center;width:40%;">
|
||||||
|
<text class="text-48 text-zu1 text-bold">{{item.text}}</text>
|
||||||
|
<text class="text-28 text-zu1">{{item.value}}</text>
|
||||||
|
</view>
|
||||||
|
</view>
|
||||||
<view class="box-list flex-r-lr" style="align-items: center;"
|
<view class="box-list flex-r-lr" style="align-items: center;"
|
||||||
v-for="(item,index) in topList" :key="item.text">
|
v-for="(item,index) in topList" :key="item.text">
|
||||||
<text class="text-28 text-zu1">{{item.text}}</text>
|
<text class="text-28 text-zu1">{{item.text}}</text>
|
||||||
@@ -46,7 +53,7 @@
|
|||||||
</view>
|
</view>
|
||||||
<!-- (2)转盘抽奖获得 -->
|
<!-- (2)转盘抽奖获得 -->
|
||||||
</view>
|
</view>
|
||||||
<DownPopup></DownPopup>
|
<!-- <DownPopup :show="true"></DownPopup> -->
|
||||||
</view>
|
</view>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@@ -56,12 +63,17 @@ import Header from '@/components/common/header.vue';
|
|||||||
import TopSafe from '@/components/common/top-safe.nvue'
|
import TopSafe from '@/components/common/top-safe.nvue'
|
||||||
import DownPopup from '@/components/common/down-popup.vue';
|
import DownPopup from '@/components/common/down-popup.vue';
|
||||||
import { getContractList,signContract } from '@/api/contract.js'
|
import { getContractList,signContract } from '@/api/contract.js'
|
||||||
|
|
||||||
import func from '@/utils/func.js';
|
import func from '@/utils/func.js';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: { Header,TopSafe,DownPopup },
|
components: { Header,TopSafe,DownPopup },
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
tList:[
|
||||||
|
{text:'100',value:'锁仓TBC'},
|
||||||
|
{text:'100',value:'剩余加速包'}
|
||||||
|
],
|
||||||
topList:[
|
topList:[
|
||||||
{text:'已获得加速包次数',value:'100'},
|
{text:'已获得加速包次数',value:'100'},
|
||||||
{text:'已释放TBC数量',value:'20000'},
|
{text:'已释放TBC数量',value:'20000'},
|
||||||
@@ -153,6 +165,11 @@ export default {
|
|||||||
border-radius: 36rpx;
|
border-radius: 36rpx;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
.box-top{
|
||||||
|
width:100%;
|
||||||
|
height:86rpx;
|
||||||
|
min-height:86rpx;
|
||||||
|
}
|
||||||
.box-list{
|
.box-list{
|
||||||
width:100%;
|
width:100%;
|
||||||
min-height:84rpx;
|
min-height:84rpx;
|
||||||
|
|||||||
Reference in New Issue
Block a user