|
|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<view class="rake">
|
|
|
- <view class="item" v-for="(ls,index) in list">
|
|
|
+ <view class="item" v-for="(ls,index) in list" v-if="ls.stock != 0">
|
|
|
<view class="top">
|
|
|
<view class="info-title">
|
|
|
<image :src="ls.logo" mode=""></image>
|
|
|
@@ -12,11 +12,11 @@
|
|
|
<view class="base-info">
|
|
|
<view class="info-item">
|
|
|
<view class="tit">单价</view>
|
|
|
- <view class="val">{{ +ls.cost_money }}/{{ ls.get_money_type === 'FIL' ? 'FIL' : ls.get_money_type === 'BZZ' ? '节点' : 'T' }}</view>
|
|
|
+ <view class="val">{{ +ls.cost_money }}{{ls.cost_money_type}}/{{ ls.get_money_type === 'BZZ' ? '节点' : 'T' }}</view>
|
|
|
</view>
|
|
|
<view class="info-item">
|
|
|
<view class="tit">有效算力</view>
|
|
|
- <view class="val">{{ ls.step }} {{ ls.get_money_type === 'FIL' ? 'T' : ls.get_money_type === 'BZZ' ? '节点' : 'T' }}</view>
|
|
|
+ <view class="val">{{ ls.step }} {{ ls.get_money_type === 'BZZ' ? '节点' : 'T' }}</view>
|
|
|
</view>
|
|
|
<view class="info-item">
|
|
|
<view class="tit">周期</view>
|
|
|
@@ -30,10 +30,10 @@
|
|
|
<text @click="+ls.lower_service_ratio<= +mList[index].user_service_ratio ? '': set(index,ls,0)" :class="{'black':+ls.lower_service_ratio<= +mList[index].user_service_ratio }">设置</text>
|
|
|
|
|
|
</view>
|
|
|
- <view class="btn">
|
|
|
+<!-- <view class="btn">
|
|
|
佣金:{{ls.award_ratio*1}}%
|
|
|
<text @click="ls.lower_award_ratio*1 < mList[index].award_ratio*1 ? set(index,ls,1):''" :class="{'black':+ls.lower_award_ratio >= +mList[index].award_ratio }">设置</text>
|
|
|
- </view>
|
|
|
+ </view> -->
|
|
|
</view>
|
|
|
|
|
|
</view>
|
|
|
@@ -273,14 +273,15 @@ page {
|
|
|
background: #ffffff;
|
|
|
border-radius: 0px 0px 10rpx 10rpx;
|
|
|
display: flex;
|
|
|
- // justify-content: flex-end;
|
|
|
- justify-content: space-between;
|
|
|
+ justify-content: flex-end;
|
|
|
+ // justify-content: space-between;
|
|
|
align-items: center;
|
|
|
padding-right: 20rpx;
|
|
|
.btn {
|
|
|
// display: flex;
|
|
|
-
|
|
|
- text {
|
|
|
+ padding-left: 10rpx;
|
|
|
+ text {
|
|
|
+
|
|
|
display: inline-block;
|
|
|
width: 108rpx;
|
|
|
height: 39rpx;
|