67 lines
1.3 KiB
Vue
67 lines
1.3 KiB
Vue
<script>
|
|
export default {
|
|
onLaunch: function() {
|
|
console.log('App Launch')
|
|
},
|
|
onShow: function() {
|
|
console.log('App Show')
|
|
},
|
|
onHide: function() {
|
|
console.log('App Hide')
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<view class="app-container">
|
|
</view>
|
|
</template>
|
|
|
|
<style>
|
|
/*每个页面公共css */
|
|
|
|
/* 引入 TheMiladiatorRegular 字体 */
|
|
@font-face {
|
|
font-family: 'TheMiladiatorRegular';
|
|
src: url('/static/fonts/The Miladiator Regular.ttf') format('truetype');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
/* 引入 ZaoZiGongFangJianHei-1 字体 */
|
|
@font-face {
|
|
font-family: 'ZaoZiGongFangJianHei-1';
|
|
src: url('/static/fonts/ZaoZiGongFangJianHei-1.ttf') format('truetype');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
/* 圆体 JDLTYuanTiJian.ttf 在部分 Android WebView 上报 OTS/cmap 解析失败,暂不 @font-face 加载,避免控制台告警与渲染异常 */
|
|
|
|
/* 全局字体设置 */
|
|
body {
|
|
font-family:
|
|
-apple-system,
|
|
BlinkMacSystemFont,
|
|
'PingFang SC',
|
|
'Hiragino Sans GB',
|
|
'Microsoft YaHei',
|
|
'Noto Sans SC',
|
|
sans-serif;
|
|
}
|
|
|
|
/* App 容器 */
|
|
.app-container {
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
position: relative;
|
|
}
|
|
|
|
.page-content {
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
}
|
|
</style>
|