k94314517
2024-05-21 12e8eb9e345adea19972c34df471b28b51fa71dd
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<template>
    <view class="main_app">
        <image src="../../../static/staff/yongche_bg.png" class="banner" mode="widthFix"></image>
        <view class="emyty"></view>
        <view class="content">
            <view class="title">选择目的地类别</view>
            <view class="item" @click="$jump('/pages/staff/vehicle/shinei')">
                <image src="../../../static/bg_shineiyongche@2x.png" class="img" mode="widthFix"></image>
                <view class="h1">室内用车</view>
                <view class="h2">URBAN AREA</view>
            </view>
            <view class="item" @click="$jump('/pages/staff/vehicle/shiwai')">
                <image src="../../../static/bg_shiwaiyongche@2x.png" class="img" mode="widthFix"></image>
                <view class="h1">室外用车</view>
                <view class="h2">SUBURB AREA</view>
            </view>
        </view>
    </view>
</template>
 
<script>
    export default {
        data() {
            return {
                param: {}
            };
        }
    }
</script>
 
<style lang="scss">
.main_app{
    .emyty{
        width: 100%;
        height: 218rpx;
    }
    .content{
        width: 690rpx;
        background: #FFFFFF;
        box-shadow: 0rpx 4rpx 20rpx 0rpx rgba(39,155,170,0.16);
        border-radius: 16rpx;
        padding: 60rpx 30rpx;
        .item{
            width: 630rpx;
            height: 200rpx;
            border-radius: 8rpx;
            margin-bottom: 30rpx;
            &:nth-last-child(1){
                margin-bottom: 0;
            }
            position: relative;
            padding: 40rpx;
            overflow: hidden;
            z-index: 1;
            .h1 {
                font-weight: 500;
                font-size: 32rpx;
                color: #222222;
                line-height: 48rpx;
                margin-bottom: 10rpx;
            }
            .h2 {
                font-size: 22rpx;
                color: #7b9da1;
                line-height: 34rpx;
            }
            .img {
                width: 100%;
                height: 100%;
                position: absolute;
                top: 0;
                left: 0;
                z-index: -1;
            }
        }
        .title{
            margin-bottom: 40rpx;
            font-weight: 500;
            font-size: 34rpx;
            color: #222222;
            line-height: 48rpx;
        }
    }
    .banner{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: -1;
    }
}
</style>