This commit is contained in:
asd
2019-12-14 17:01:16 +08:00
parent 1256593190
commit 07523dbbec
41 changed files with 860 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
// components/yue/yuedetail/yuedetai;.js
Component({
/**
* 组件的属性列表
*/
properties: {
},
/**
* 组件的初始数据
*/
data: {
},
/**
* 组件的方法列表
*/
methods: {
}
})

View File

@@ -0,0 +1,4 @@
{
"component": true,
"usingComponents": {}
}

View File

@@ -0,0 +1,23 @@
.yuedetail {
width: 100%;
height: 100rpx;
border-bottom: 2rpx solid #EEEEEE;
display: flex;
justify-content: space-between;
.left {
font-size: 28rpx;
margin-left: 30rpx;
.date {
color: #666666;
}
.time {
color: #999999;
margin-top: 5rpx;
}
}
.right {
color: #333333;
font-size: 36rpx;
margin-right: 30rpx;
}
}

View File

@@ -0,0 +1,7 @@
<view class="yuedetail">
<view class="left">
<view class="date">2017-02-21</view>
<view class="time">17:23:25</view>
</view>
<view class="right">-1234.00</view>
</view>

View File

@@ -0,0 +1,27 @@
.yuedetail {
width: 100%;
height: 100rpx;
border-bottom: 2rpx solid #EEEEEE;
display: flex;
justify-content: space-between;
}
.yuedetail .left {
font-size: 28rpx;
margin-left: 30rpx;
}
.yuedetail .left .date {
color: #666666;
}
.yuedetail .left .time {
color: #999999;
margin-top: 5rpx;
}
.yuedetail .right {
color: #333333;
font-size: 36rpx;
margin-right: 30rpx;
}