Zlpt_Portal_h5/src/App.vue

48 lines
679 B
Vue
Raw Normal View History

2024-12-13 15:30:11 +08:00
<script>
export default {
onLaunch: function () {},
onShow: function () {},
onHide: function () {},
2024-12-13 15:30:11 +08:00
}
</script>
<style lang="scss">
/*每个页面公共css */
page {
width: 100%;
height: 100%;
font-size: 14px;
background-color: $uni-bg-color-grey;
}
view,
navigator,
input,
scroll-view {
box-sizing: border-box;
}
button::after {
border: none;
}
swiper,
scroll-view {
flex: 1;
height: 100%;
overflow: hidden;
}
:deep(.van-nav-bar__content) {
background-color: #75aea4;
.van-nav-bar__text {
color: #333;
}
}
.ellipsis {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
2024-12-13 15:30:11 +08:00
</style>