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