会议通知时间选择
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div class="belong-to-me">
|
||||
<ai-top-fixed>
|
||||
<u-tabs :list="tabs" :is-scroll="false" :current="index" bar-width="88" :height="96" @change="change"></u-tabs>
|
||||
<u-tabs :list="tabs" :is-scroll="false" :current="index" bar-width="88" :height="96" @click="change"></u-tabs>
|
||||
</ai-top-fixed>
|
||||
<div class="body">
|
||||
<template v-if="list.length">
|
||||
@@ -54,9 +54,6 @@
|
||||
status: "加载更多",
|
||||
}
|
||||
},
|
||||
onLoad() {
|
||||
this.getList()
|
||||
},
|
||||
computed: {
|
||||
tabs() {
|
||||
return [
|
||||
@@ -100,12 +97,16 @@
|
||||
})
|
||||
},
|
||||
change(e) {
|
||||
this.index = e
|
||||
this.index = e.index
|
||||
this.current = 1
|
||||
this.getList()
|
||||
},
|
||||
},
|
||||
|
||||
created() {
|
||||
this.getList()
|
||||
},
|
||||
|
||||
onReachBottom() {
|
||||
this.current = this.current + 1;
|
||||
this.getList()
|
||||
|
||||
Reference in New Issue
Block a user