细节优化
parent
0111ed9930
commit
fa8ea72b44
|
|
@ -236,7 +236,7 @@
|
|||
|
||||
.plugins-realstore-data-list .item .address-distance {
|
||||
right: 20rpx;
|
||||
bottom: 42rpx;
|
||||
bottom: 18rpx;
|
||||
}
|
||||
|
||||
.plugins-realstore-data-list .item .icon-list {
|
||||
|
|
|
|||
|
|
@ -24,8 +24,8 @@
|
|||
<block v-for="(fv, fi) in content_list" :key="fi">
|
||||
<view class="single-text margin-top-xs">
|
||||
<text class="cr-grey-9 margin-right-main">{{ fv.name }}:</text>
|
||||
<text class="cr-black fw-b">{{ item[fv.field] }}</text>
|
||||
<text v-if="(fv.unit || null) != null" class="cr-grey fw-b">{{ fv.unit }}</text>
|
||||
<text class="cr-black">{{ item[fv.field] }}</text>
|
||||
<text v-if="(fv.unit || null) != null" class="cr-grey">{{ fv.unit }}</text>
|
||||
</view>
|
||||
</block>
|
||||
</navigator>
|
||||
|
|
|
|||
|
|
@ -4,16 +4,15 @@
|
|||
<scroll-view :scroll-y="true" class="scroll-box" @scrolltolower="scroll_lower" lower-threshold="60">
|
||||
<view class="padding-horizontal-main padding-top-main" :class="select_ids.length > 0 ? 'page-bottom-fixed' : ''">
|
||||
<view v-for="(item, index) in data_list" :key="index" class="item padding-main border-radius-main oh bg-white spacing-mb">
|
||||
<view class="base oh br-b-dashed padding-bottom-main">
|
||||
<iconfont
|
||||
class="margin-right-sm pr top-md"
|
||||
:name="select_ids.indexOf(item.id) != -1 ? 'icon-zhifu-yixuan' : 'icon-zhifu-weixuan'"
|
||||
size="34rpx"
|
||||
:color="select_ids.indexOf(item.id) != -1 ? '#E22C08' : '#999'"
|
||||
data-type="node"
|
||||
:data-value="item.id"
|
||||
@tap="selected_event"
|
||||
></iconfont>
|
||||
<view class="base oh br-b-dashed padding-bottom-main">
|
||||
<view class="dis-inline-block va-m" data-type="node":data-value="item.id" @tap="selected_event">
|
||||
<iconfont
|
||||
class="margin-right-sm pr top-md"
|
||||
:name="select_ids.indexOf(item.id) != -1 ? 'icon-zhifu-yixuan' : 'icon-zhifu-weixuan'"
|
||||
size="34rpx"
|
||||
:color="select_ids.indexOf(item.id) != -1 ? '#E22C08' : '#999'"
|
||||
></iconfont>
|
||||
</view>
|
||||
<text class="cr-grey-9 va-m">{{ item.add_time }}</text>
|
||||
</view>
|
||||
<view class="content margin-top">
|
||||
|
|
|
|||
|
|
@ -25,8 +25,10 @@
|
|||
<view>有效(元)</view>
|
||||
<text class="fw-b effective">{{ is_price_show ? user_wallet.normal_money || '0.00' : '***' }}</text>
|
||||
</view>
|
||||
<view class="flex-row">
|
||||
<iconfont :name="is_price_show ? 'icon-wodeqianbao-eye' : 'icon-wodeqianbao-eyeclo2'" size="44rpx" @tap="price_change"></iconfont>
|
||||
<view class="flex-row">
|
||||
<view @tap="price_change">
|
||||
<iconfont :name="is_price_show ? 'icon-wodeqianbao-eye' : 'icon-wodeqianbao-eyeclo2'" size="44rpx"></iconfont>
|
||||
</view>
|
||||
<view class="margin-left-xxxl" data-value="/pages/plugins/wallet/payment-code/payment-code" @tap="url_event">
|
||||
<iconfont name="icon-wdhy-erweima" size="44rpx"></iconfont>
|
||||
</view>
|
||||
|
|
@ -43,7 +45,7 @@
|
|||
<text class="give">{{ is_price_show ? user_wallet.give_money || '0.00' : '***' }}</text>
|
||||
</view>
|
||||
</view>
|
||||
<view class="transfer-accounts cr-white va-m round flex-row align-c" data-value="/pages/plugins/wallet/transfer/transfer" @tap="url_event">
|
||||
<view v-if="(data_base || null) != null && (data_base.is_enable_transfer || 0) == 1" class="transfer-accounts cr-white va-m round flex-row align-c" data-value="/pages/plugins/wallet/transfer/transfer" @tap="url_event">
|
||||
<iconfont name="icon-transfer" size="28rpx" class="transfer-icon"></iconfont>
|
||||
<text class="margin-left-xs">转账</text>
|
||||
</view>
|
||||
|
|
|
|||
Loading…
Reference in New Issue