会议通知时间选择

This commit is contained in:
wanglei
2021-11-19 11:12:47 +08:00
parent 69e3eda6e5
commit e4d0f6aa98
5 changed files with 53 additions and 43 deletions

View File

@@ -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()