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
View File
@@ -0,0 +1,2 @@
// index.js
Page({})
+1
View File
@@ -0,0 +1 @@
{}
+6
View File
@@ -0,0 +1,6 @@
<!--index.wxml-->
<scroll-view class="scrollarea" scroll-y type="list">
<view class="container">
Weixin
</view>
</scroll-view>
+10
View File
@@ -0,0 +1,10 @@
/**index.wxss**/
page {
height: 100vh;
display: flex;
flex-direction: column;
}
.scrollarea {
flex: 1;
overflow-y: hidden;
}