This commit is contained in:
TonyChyi
2024-12-27 22:44:32 +08:00
commit 0de9992474
23 changed files with 362 additions and 0 deletions

2
pages/index/index.js Normal file
View File

@@ -0,0 +1,2 @@
// index.js
Page({})

1
pages/index/index.json Normal file
View File

@@ -0,0 +1 @@
{}

6
pages/index/index.wxml Normal file
View File

@@ -0,0 +1,6 @@
<!--index.wxml-->
<scroll-view class="scrollarea" scroll-y type="list">
<view class="container">
Weixin
</view>
</scroll-view>

10
pages/index/index.wxss Normal file
View File

@@ -0,0 +1,10 @@
/**index.wxss**/
page {
height: 100vh;
display: flex;
flex-direction: column;
}
.scrollarea {
flex: 1;
overflow-y: hidden;
}