1 Star 0 Fork 28

hyy/weapp-template

forked from 宇泰/fast-mobile-app 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
App.vue 1.02 KB
一键复制 编辑 原始数据 按行查看 历史
宇泰 提交于 2020-10-17 17:47 . 优化调整
<script>
export default {
globalData: {
userInfo: null
},
onLaunch: function() {
console.log('App Launch');
},
onShow: function() {
console.log('App Show');
},
onHide: function() {
console.log('App Hide');
}
};
</script>
<style>
/*每个页面公共css */
/* #ifndef APP-PLUS-NVUE */
/* colorui */
@import "styles/colorui/main.css";
@import "styles/colorui/icon.css";
/* base */
@import './styles/base.css';
@import './styles/animate.css';
@import './styles/form.css';
@import './styles/colorui.adapter.css';
/* #endif */
uni-app {
max-width: 1120upx;
margin: 0 auto;
}
.page {
overflow-x: hidden;
min-height: 100vh;
}
uni-toast {
z-index: 10000;
}
@keyframes show {
0% {
transform: translateY(-50px);
}
60% {
transform: translateY(40upx);
}
100% {
transform: translateY(0px);
}
}
@-webkit-keyframes show {
0% {
transform: translateY(-50px);
}
60% {
transform: translateY(40upx);
}
100% {
transform: translateY(0px);
}
}
</style>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
微信
1
https://gitee.com/heyuyou/weapp-template.git
git@gitee.com:heyuyou/weapp-template.git
heyuyou
weapp-template
weapp-template
uniapp

搜索帮助