powerbank/pages/my.vue
2024-05-14 18:03:52 +08:00

43 lines
697 B
Vue

<template>
<view class="page">
<u-navbar title="维修申报" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
height='38'></u-navbar>
<view class="box">
</view>
</view>
</template>
<script>
export default {
data() {
return {
bgc:{
background: '#25CE88'
}
}
},
methods: {
}
}
</script>
<style lang="scss">
page {
// background: linear-gradient(180deg, #25CE88 0%, rgba(255, 255, 255, 0) 100%);
}
.page {
width: 750rpx;
position: fixed;
top: 0;
left: 0;
.box{
width: 750rpx;
height: 1440rpx;
background: #F4F5F7;
border-radius: 0rpx 0rpx 0rpx 0rpx;
}
}
</style>