You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.5 KiB
67 lines
1.5 KiB
<template> |
|
<view class="page-content my-bg"> |
|
<cu-custom class="main-totextbar bg-main-oil" :isBack="true" bgColor="bg-main-oil"> |
|
<block slot="backText">返回</block> |
|
<block slot="content">转入记录</block> |
|
</cu-custom> |
|
|
|
<view class="margin bg-white radius main-money "> |
|
<view class="padding-xs flex align-center" @tap="copy"> |
|
<view class="flex-sub text-center padding-top"> |
|
<view class="text-center">星油余额</view> |
|
<view class=" text-xxl padding-top-xs"> |
|
<text class="text-price text-red "> |
|
80.00 |
|
</text> |
|
</view> |
|
</view> |
|
</view> |
|
<view class="padding margin-left margin-right flex flex-direction"> |
|
<button class="cu-btn bg-main-oil oil-main-btn-color oil-main-color lg"> |
|
转入 |
|
</button> |
|
</view> |
|
</view> |
|
<view class="margin"> |
|
<view class="padding-top flex padding-left-xs padding-bottom"> |
|
<view class="flex-sub"> |
|
<text>最近的五笔交易</text> |
|
</view> |
|
<view class="flex-sub text-right padding-right-xs"> |
|
<text class="text-gray">更多</text> |
|
|
|
<text class="cuIcon-right text-gray"></text> |
|
</view> |
|
</view> |
|
<view class="cu-list menu"> |
|
<view class="cu-item"> |
|
<view class="content"> |
|
微信充值 |
|
</view> |
|
<view class="action"> |
|
¥ 0.20 |
|
</view> |
|
</view> |
|
</view> |
|
</view> |
|
</view> |
|
</template> |
|
|
|
<script> |
|
export default { |
|
data() { |
|
return { |
|
|
|
} |
|
}, |
|
methods: { |
|
|
|
} |
|
} |
|
</script> |
|
|
|
<style scoped> |
|
.page-content { |
|
min-height: 100%; |
|
} |
|
</style>
|
|
|