Commit 567d66da by 陈超

A

parent bd642b7a
......@@ -976,4 +976,8 @@ div::-webkit-scrollbar {
.widthraw_list_top {
padding: 0.5rem 0.75rem;
background:rgba(251,255,247,1);
}
.widthraw_list_item {
padding: 1.25rem 0.75rem;
}
\ No newline at end of file
......@@ -8,6 +8,18 @@
<span class="text_12_400 color_999999">提现总金额:</span>
<span class="text_12_400 color_primary">¥154</span>
</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>
......@@ -16,11 +28,16 @@
el: "#app",
data: function() {
return {
loading: false,//加载时置为true
finished: false,//加载完毕时置为true,为false时自动到底加载更多,
items: []
}
},
created:function(){
$("#preloader").hide();
},
onLoad: function() {
}
})
</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