30 lines
378 B
Vue
30 lines
378 B
Vue
<template>
|
|
<view>
|
|
<navBar leftText="科锐国际(300662.SZ)"></navBar>
|
|
<image class="topBg absolute" src="/static/image/mine/myTopBg.png" mode="widthFix"></image>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="less">
|
|
.topBg
|
|
{
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: auto;
|
|
}
|
|
</style>
|