powerbank/pages/my.vue

43 lines
697 B
Vue
Raw Permalink Normal View History

2023-12-05 16:45:28 +08:00
<template>
2024-01-27 16:37:52 +08:00
<view class="page">
2024-05-11 10:57:53 +08:00
<u-navbar title="维修申报" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
height='38'></u-navbar>
<view class="box">
</view>
2023-12-05 16:45:28 +08:00
</view>
</template>
<script>
export default {
data() {
return {
2024-05-14 18:03:52 +08:00
bgc:{
background: '#25CE88'
}
2024-01-23 19:15:52 +08:00
}
},
methods: {
2024-05-11 10:57:53 +08:00
2024-01-23 19:15:52 +08:00
}
}
2023-12-05 16:45:28 +08:00
</script>
2024-05-11 10:57:53 +08:00
<style lang="scss">
page {
2024-05-14 18:03:52 +08:00
// background: linear-gradient(180deg, #25CE88 0%, rgba(255, 255, 255, 0) 100%);
2024-01-27 16:37:52 +08:00
}
2024-05-11 10:57:53 +08:00
.page {
width: 750rpx;
position: fixed;
top: 0;
left: 0;
.box{
2024-01-27 16:37:52 +08:00
width: 750rpx;
2024-05-11 10:57:53 +08:00
height: 1440rpx;
background: #F4F5F7;
border-radius: 0rpx 0rpx 0rpx 0rpx;
2024-01-27 16:37:52 +08:00
}
}
2024-05-11 10:57:53 +08:00
</style>