1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| <template>
| <view class="container">
| <navbar title = '巡检管理'></navbar>
| <view class="content"></view>
| 巡检管理
| </view>
| </template>
|
| <script setup>
|
| </script>
|
| <style lang="scss" scoped>
| .container{
| width:100%;
| box-sizing: border-box;
| .content{
| height:calc(100vh - 176rpx);
| background: linear-gradient(to bottom,#8BC1FC 0%,#D2F2FE 30%,#D2F2FE 100%);
| padding:30rpx 40rpx 100rpx;
| box-sizing: border-box;
| }
| }
|
| </style>
|
|