bht-app/src/App.vue

62 lines
998 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
* @LastEditTime: 2025-05-21 16:01:48
* @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 {
padding-bottom:var(--window-bottom)
}
.grey {
color: #808185;
}
.list-card {
.head {
display: flex;
justify-content: space-between;
font-weight: 700;
font-size: 29rpx;
.title {
display: inline-block;
width: 400rpx;
height: 25rpx;
padding-left: 15rpx;
line-height: 25rpx;
border-left: 6rpx solid #0A61B9;
}
}
.num {
margin: 10rpx 0;
}
.info-box {
text {
display: inline-block;
padding: 5rpx;
border-radius: 10rpx;
background: #EDF3FD;
margin-right: 20rpx;
font-size: 24rpx;
}
}
}
2025-05-19 11:59:51 +08:00
</style>