bht-app/src/App.vue

59 lines
934 B
Vue
Raw Normal View History

2025-05-22 09:59:54 +08:00
<!--
* @Author: XHC
* @Date: 2025-05-19 10:21:48
* @LastEditors: XHC
2025-05-22 15:05:43 +08:00
* @LastEditTime: 2025-05-22 14:51:18
2025-05-22 09:59:54 +08:00
* @Description:
-->
2025-05-19 11:59:51 +08:00
<script>
export default {
onLaunch: function () {
console.log('App Launch')
},
onShow: function () {
console.log('App Show')
},
onHide: function () {
console.log('App Hide')
},
}
</script>
2025-05-22 09:59:54 +08:00
<style lang="scss">
@import '@/static/icon/iconfont.css';
2025-05-19 11:59:51 +08:00
/*每个页面公共css */
2025-05-22 09:59:54 +08:00
uni-page-body {
2025-05-22 15:05:43 +08:00
// padding-bottom:var(--window-bottom)
2025-05-22 09:59:54 +08:00
}
.grey {
color: #808185;
}
.list-card {
.head {
font-weight: 700;
font-size: 29rpx;
.title {
display: inline-block;
height: 25rpx;
line-height: 25rpx;
2025-05-22 15:05:43 +08:00
padding-left: 15rpx;
2025-05-22 09:59:54 +08:00
border-left: 6rpx solid #0A61B9;
}
}
.num {
margin: 10rpx 0;
}
.info-box {
2025-05-22 15:05:43 +08:00
.info {
2025-05-22 09:59:54 +08:00
display: inline-block;
2025-05-22 15:05:43 +08:00
padding: 10rpx;
2025-05-22 09:59:54 +08:00
border-radius: 10rpx;
background: #EDF3FD;
margin-right: 20rpx;
font-size: 24rpx;
}
}
}
2025-05-19 11:59:51 +08:00
</style>