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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
| <script setup>
| function navTo(){
| uni.navigateTo({
| url:'/pages/address/index'
| })
| }
| </script>
| <template>
| <view class="container">
| <navbar title = '预约下单'></navbar>
| <view class="content">
| <view class="add-address" @click="navTo()">地址管理</view>
| </view>
| </view>
| </template>
|
| <style lang="scss">
| .container{
| width: 100%;
| height: 100vh;
| .content{
| width: 100%;
| height:calc(100vh - 176rpx);
| background:linear-gradient(to top,#FFFFFF,#E8EFFF);
| .add-address{
| width: 100%;
| padding-right:32rpx;
| box-sizing:border-box;
| height:94rpx;
| line-height:60rpx;
| font-size:26rpx;
| font-weight:600;
| color: #5EA1FA;
| display: flex;
| justify-content: flex-end;
| }
| }
| }
| </style>
|
|