24 lines
438 B
Vue
24 lines
438 B
Vue
|
|
<template>
|
||
|
|
<u-navbar :is-back="false" title="" class="sty-nav">
|
||
|
|
<view class="slot-wrap">
|
||
|
|
<u-image
|
||
|
|
width="100%"
|
||
|
|
height="100%"
|
||
|
|
src="/static/images/u14.png"
|
||
|
|
mode="aspectFit"
|
||
|
|
></u-image>
|
||
|
|
</view>
|
||
|
|
</u-navbar>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<style lang="scss" scope>
|
||
|
|
.sty-nav /deep/ .u-slot-content {
|
||
|
|
height: 100%;
|
||
|
|
.slot-wrap {
|
||
|
|
width: 100%;
|
||
|
|
height: 100%;
|
||
|
|
background: #ffffff;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</style>
|