Commit b688524f by 陈超

T

parent 97c7d09a
......@@ -20,7 +20,7 @@
padding: 0 !important;
}
</style>
<div id="app">
<div id="app" style="height: 100%;">
<div class="layout_v">
<van-sticky>
<div class="tabs_container">
......@@ -29,6 +29,15 @@
</div>
</div>
</van-sticky>
<van-list
v-model="loading"
:finished="finished"
finished-text="没有更多了"
@load="onLoad">
</van-list>
</div>
</div>
<!-- <div class="maskbox"></div> -->
......@@ -124,6 +133,8 @@
data: function() {
return {
tab: 0,
loading: false,
finished: false,
options: [{
title: '视频',
items: [1,2]
......@@ -145,6 +156,9 @@
methods: {
onTab: function(idx) {
this.tab = idx
},
onLoad: function() {
}
}
})
......
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