Commit 567d66da by 陈超

A

parent bd642b7a
...@@ -977,3 +977,7 @@ div::-webkit-scrollbar { ...@@ -977,3 +977,7 @@ div::-webkit-scrollbar {
padding: 0.5rem 0.75rem; padding: 0.5rem 0.75rem;
background:rgba(251,255,247,1); background:rgba(251,255,247,1);
} }
.widthraw_list_item {
padding: 1.25rem 0.75rem;
}
\ No newline at end of file
...@@ -8,6 +8,18 @@ ...@@ -8,6 +8,18 @@
<span class="text_12_400 color_999999">提现总金额:</span> <span class="text_12_400 color_999999">提现总金额:</span>
<span class="text_12_400 color_primary">¥154</span> <span class="text_12_400 color_primary">¥154</span>
</div> </div>
<van-list
v-model="loading"
:finished="finished"
finished-text="没有更多了"
@load="onLoad">
<div class="layout_h_b widthraw_list_item">
<span class="text_14_400 color_333333">2020-01-02 15:35</span>
<span class="text_14_600 color_primary">-¥220.00</span>
</div>
</van-list>
</div> </div>
</div> </div>
...@@ -16,11 +28,16 @@ ...@@ -16,11 +28,16 @@
el: "#app", el: "#app",
data: function() { data: function() {
return { return {
loading: false,//加载时置为true
finished: false,//加载完毕时置为true,为false时自动到底加载更多,
items: []
} }
}, },
created:function(){ created:function(){
$("#preloader").hide(); $("#preloader").hide();
},
onLoad: function() {
} }
}) })
</script> </script>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment