first commit

This commit is contained in:
编码猿
2024-09-27 02:06:13 +08:00
commit 852d94fbb9
36760 changed files with 3274413 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<template>
<view>
</view>
</template>
<script>
export default {
data() {
return {
id: null
}
},
onLoad(option) {
this.id = option.id
},
methods: {
}
}
</script>
<style>
</style>

View File

@@ -0,0 +1,31 @@
<template>
<view class="home">
<h2>首页</h2>
</view>
</template>
<script>
export default {
data() {
return {
}
},
onLoad() {
},
created() {
// this.getIndex();
},
methods: {
async getIndex() {
let res = await this.$http.home.index();
console.log(res);
}
}
}
</script>
<style lang="less" scoped>
@import "@/assets/less/page/Home.less";
</style>

View File

@@ -0,0 +1,26 @@
<template>
<view>
</view>
</template>
<script>
export default {
data() {
return {
id: null
}
},
onLoad(option) {
this.id = option.id
console.log(this.id);
},
methods: {
}
}
</script>
<style>
</style>