From 69a1b3bf45738f048361ee4ccb6bdc64fce35720 Mon Sep 17 00:00:00 2001
From: MrShi <1878285526@qq.com>
Date: 星期三, 12 三月 2025 11:31:46 +0800
Subject: [PATCH] 更新
---
h5/pages/staff/vehicle/index.vue | 128 ++++++++++++++++++++++++++++++++++++++++++
1 files changed, 128 insertions(+), 0 deletions(-)
diff --git a/h5/pages/staff/vehicle/index.vue b/h5/pages/staff/vehicle/index.vue
new file mode 100644
index 0000000..4fe0ceb
--- /dev/null
+++ b/h5/pages/staff/vehicle/index.vue
@@ -0,0 +1,128 @@
+<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">
+ <text>甯傚唴鐢ㄨ溅</text>
+ <image
+ src="@/static/ic_enter_shinei@2x.png"
+ class="icon"
+ mode="widthFix"
+ ></image>
+ </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">
+ <text>甯傚鐢ㄨ溅</text>
+ <image
+ src="@/static/ic_enter_shiwai@2x.png"
+ class="icon"
+ mode="widthFix"
+ ></image>
+ </view>
+ <view class="h2">SUBURB AREA</view>
+ </view>
+ </view>
+ </view>
+</template>
+
+<script>
+export default {
+ data() {
+ return {
+ param: {}
+ }
+ },
+ onLoad() {
+ uni.setStorageSync('ywinfo',{})
+ }
+}
+</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: 600;
+ font-size: 32rpx;
+ color: #222222;
+ line-height: 48rpx;
+ margin-bottom: 10rpx;
+ display: flex;
+ align-items: center;
+ .icon{
+ width: 32rpx;
+ margin-left: 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: 600;
+ font-size: 34rpx;
+ color: #222222;
+ line-height: 48rpx;
+ text-align: center;
+ }
+ }
+ .banner {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ z-index: -1;
+ }
+}
+</style>
--
Gitblit v1.9.3