Liuyi
2024-09-30 6479fb873fc2dcd9d8418b10f355c825b64b82eb
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<script setup>
    function navTo(){
        uni.navigateTo({
            url:'/pages/preSendWater/index'
        })
    }
</script>
<template>
    <view class="container">
        <navbar title = '送水到家'></navbar>
        <view class="content">
            <view class="nav-container">
                <view class="nav-title">
                    <view class="title-one" @click="navTo()">立即预约</view>
                    <view class="title-text">待配送</view>
                    <view class="title-text">已完成</view>
                </view>
                <view class="main1"></view>
            </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);
            .nav-container{
                height: 160rpx;
                width:100%;
                padding: 20rpx 0;
                box-sizing: border-box;
                .nav-title{
                    width: 100%;
                    background: #FFF;
                    padding: 0 32rpx;
                    box-sizing: border-box;
                    height: 120rpx;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    .title-one{
                        height: 60rpx;
                        width: 160rpx;
                        background: #DEEDFF;
                        border: 2rpx solid #4AA3FF;
                        text-align: center;
                        line-height:60rpx;
                        border-radius:24rpx;
                        font-weight: 300;
                        font-size: 28rpx;
                        color: #007EFF;
                    }
                    .title-text{
                        font-weight: 300;
                        font-size: 28rpx;
                        color: #000000;
                        width:120rpx;
                        height:88rpx;
                        text-align: center;
                        line-height:88rpx;
                        border-bottom:6rpx solid #226AC9;
                    }
                }
            }
            
        }
    }       
</style>