You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
778 B
Vue
39 lines
778 B
Vue
<script>
|
|
export default {
|
|
onLaunch: function() {
|
|
console.log(`\n %c 鹿和 %c https://sa0.online/ \n\n`, 'color: #ffffff; background: #fd6b60; padding:5px 0;',
|
|
'color: #fd6b60;background: #ffffff; padding:5px 0;')
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
/*每个页面公共css */
|
|
@import '@/uni_modules/uni-scss/index.scss';
|
|
/* #ifndef APP-NVUE */
|
|
@import '@/static/customicons.css';
|
|
|
|
// 设置整个项目的背景色
|
|
page {
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
/* #endif */
|
|
.bottom_blank_wrapper {
|
|
height: calc(20rpx + var(--safe-area-inset-bottom));
|
|
}
|
|
|
|
.top_blank_wrapper::after {
|
|
content: ".";
|
|
}
|
|
|
|
.top_blank_wrapper {
|
|
height: 0;
|
|
width: 100%;
|
|
opacity: 0;
|
|
}
|
|
|
|
.navbar_blank_wrapper {
|
|
height: calc(100rpx + var(--safe-area-inset-top));
|
|
}
|
|
</style> |