更换版本

This commit is contained in:
2024-01-22 18:48:00 +08:00
parent 9f65ea8fd9
commit 00e6dcaec0
1158 changed files with 70609 additions and 51780 deletions

View File

@@ -0,0 +1,12 @@
var n;
(n = getApp()),
Page({
data: { text: "微擎我的" },
onLoad: function (o) {
n.util.footer(this);
},
onReady: function () {},
onShow: function () {},
onHide: function () {},
onUnload: function () {},
});

View File

@@ -0,0 +1,7 @@
<view class="container">
<view class="textContainer">
<text class="textStyle">{{text}}</text>
</view>
</view>
<import src="/we7/pages/templates/footer.wxml"></import>
<template is="footerWx" data="{{...tabBar}}"></template>

View File

@@ -0,0 +1,16 @@
.container {
box-sizing: border-box;
height: 100%;
justify-content: space-between;
padding: 200rpx 0;
}
.container,
.textStyle {
align-items: center;
display: -webkit-flex;
display: flex;
flex-direction: column;
}
.textContainer {
margin-top: 200px;
}