初始化(包含登录模块)

This commit is contained in:
2024-03-29 17:37:48 +08:00
commit 1bcb13ce7a
1306 changed files with 152772 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
<template>
<view class="uni-swiper-page">
<text>Tab View {{ pid}}</text>
</view>
</template>
<script>
export default {
props: {
pid: {
type: [Number, String],
default: ''
}
},
data() {
return {
dataList: []
}
},
created() {},
methods: {
loadData() {
// 首次激活时被调用
},
clear() {
// 释放数据时被调用,参考 swiper-list 缓存配置
this.dataList.length = 0;
}
}
}
</script>
<style scoped>
.uni-swiper-page {
flex: 1;
flex-direction: column;
position: absolute;
left: 0;
top: 0;
right: 0;
bottom: 0;
align-items: center;
justify-content: center;
}
</style>