This commit is contained in:
2019-12-28 10:13:48 +08:00
parent fa782d2a51
commit 4140d8e8d6
6 changed files with 53 additions and 37 deletions

View File

@@ -4,7 +4,9 @@ Component({
* 组件的属性列表
*/
properties: {
money:String,
date:String,
time:String
},
/**

View File

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

View File

@@ -4,7 +4,7 @@ Component({
* 组件的属性列表
*/
properties: {
money:String
},
/**

View File

@@ -1,7 +1,7 @@
<view class="yuetop">
<view class="all">总资产</view>
<view class="money">
<text>615.96</text>
<text>{{money}}</text>
<text class="chong">充值</text>
</view>
</view>