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.
|
|
<template> <view class="app-container"> <u-gap height="10rpx" bgColor="#F7F7F7"></u-gap> <view class="his-content"> <view class="his-item u-border-bottom"> <view class="hit-left"> <view class="his-name"> 流水号: 139812983213 </view> <view class="his-state"> 提现成功 </view> <view class="his-time"> 2023-11-28 15:45:39 </view> </view> <view class="hit-right"> -¥458.00 </view> </view> <view class="his-item u-border-bottom"> <view class="hit-left"> <view class="his-name"> 流水号: 139812983213 </view> <view class="his-state"> 提现成功 </view> <view class="his-time"> 2023-11-28 15:45:39 </view> </view> <view class="hit-right"> -¥458.00 </view> </view> <view class="his-item u-border-bottom"> <view class="hit-left"> <view class="his-name"> 流水号: 139812983213 </view> <view class="his-state"> 提现成功 </view> <view class="his-time"> 2023-11-28 15:45:39 </view> </view> <view class="hit-right"> -¥458.00 </view> </view> <view class="his-item u-border-bottom"> <view class="hit-left"> <view class="his-name"> 流水号: 139812983213 </view> <view class="his-state"> 提现成功 </view> <view class="his-time"> 2023-11-28 15:45:39 </view> </view> <view class="hit-right"> -¥458.00 </view> </view> </view> </view></template>
<script>export default { data() { return {
}; }}</script>
<style lang="scss">.his-content { padding: 0 30rpx;
.his-item { display: flex; justify-content: space-between; padding: 30rpx 0 30rpx;
.hit-left {
.his-name { color: #454545; font-size: 12px; line-height: 1.8; font-weight: bold; }
.his-state { color: #666; font-size: 12px; line-height: 1.8; }
.his-time { color: #999; font-size: 12px; line-height: 1.8; } }
.hit-right { height: 130rpx; line-height: 130rpx; font-size: 14px; color: #454545; font-weight: bold; } }
.u-border-bottom, .u-border-top { border-color: #eee !important; }}</style>
|