25 lines
366 B
Vue
25 lines
366 B
Vue
<template>
|
|
<view>
|
|
<navBar leftText="平安银行(000001)" :hideNavBg="true"></navBar>
|
|
<image class="topBg absolute" src="/static/image/index/conceptTopBg.png" mode="widthFix"></image>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup>
|
|
|
|
</script>
|
|
|
|
<style lang="less">
|
|
page
|
|
{
|
|
background-color: #070707;
|
|
}
|
|
.topBg
|
|
{
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
</style>
|