25 lines
533 B
Vue
25 lines
533 B
Vue
<template>
|
|
<uni-card
|
|
:shadow="'0rpx 0rpx 10rpx 0rpx rgba(5,68,37,0.12)'"
|
|
:padding="'0px'"
|
|
:margin="'20px'"
|
|
:border="false"
|
|
>
|
|
<image
|
|
style="height: 680rpx"
|
|
:src="`${url}/static/img/vehicle/flow.png`"
|
|
mode="'aspectFit'"
|
|
></image>
|
|
</uni-card>
|
|
</template>
|
|
<script setup >
|
|
import { url } from "@/utils/data";
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
::v-deep .uni-card--shadow {
|
|
padding: 0px !important;
|
|
background: linear-gradient(0deg, #EAF6FF, #FFFFFF);
|
|
text-align: center;
|
|
}
|
|
</style>
|