|
@@ -0,0 +1,59 @@
|
|
|
+<template>
|
|
|
+ <div class="page_item">
|
|
|
+ <van-image
|
|
|
+ width="120"
|
|
|
+ height="40"
|
|
|
+ class="jiaotonglogo"
|
|
|
+ :src="jiaotonglogo"
|
|
|
+ />
|
|
|
+ <van-image width="313" height="30" class="chepai" :src="chepaifour" />
|
|
|
+ <van-image width="305" height="30" class="fourtitle1" :src="fourtitle1" />
|
|
|
+ <van-image width="308" height="56" class="fourtitle2" :src="fourtitle2" />
|
|
|
+ <van-image width="292" height="27" class="fourtitle4" :src="fourtitle4" />
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+<script setup>
|
|
|
+// import { onMounted, reactive } from "vue";
|
|
|
+import jiaotonglogo from '../../../assets/img/logo1.png';
|
|
|
+import chepaifour from '@/assets/img/chepaifour.png';
|
|
|
+import fourtitle1 from '@/assets/img/fourtitle1.png';
|
|
|
+import fourtitle2 from '@/assets/img/fourtitle2.png';
|
|
|
+import fourtitle4 from '@/assets/img/fourtitle4.png';
|
|
|
+</script>
|
|
|
+<style scoped>
|
|
|
+.page_item {
|
|
|
+ width: 100%;
|
|
|
+ height: 100%;
|
|
|
+ position: relative;
|
|
|
+ background-image: url(../../../assets/img/chezhubg.jpg);
|
|
|
+ background-size: 100% 100%;
|
|
|
+ background-repeat: no-repeat;
|
|
|
+}
|
|
|
+
|
|
|
+.chepai {
|
|
|
+ top: 158px;
|
|
|
+ left: 28px;
|
|
|
+ position: absolute;
|
|
|
+}
|
|
|
+.fourtitle1 {
|
|
|
+ top: 227px;
|
|
|
+ left: 33px;
|
|
|
+ position: absolute;
|
|
|
+}
|
|
|
+.fourtitle2 {
|
|
|
+ top: 287px;
|
|
|
+ left: 34px;
|
|
|
+ position: absolute;
|
|
|
+}
|
|
|
+.fourtitle4 {
|
|
|
+ top: 453px;
|
|
|
+ left: 41px;
|
|
|
+ position: absolute;
|
|
|
+}
|
|
|
+
|
|
|
+.jiaotonglogo {
|
|
|
+ position: absolute;
|
|
|
+ top: 22px;
|
|
|
+ right: 27px;
|
|
|
+}
|
|
|
+</style>
|