Files
im/pages/user/service/wallet_sub_page/fenfu-page.vue
T
2026-02-15 19:41:13 +08:00

56 lines
1.1 KiB
Vue

<template>
<view class="container">
<!-- <u-navbar :is-back="false" title="" :border-bottom="false" :background="{background: 'rgb(99,200,98)'}">
<view class="slot-wrap">
<view @click="goback()">
<u-icon name="close" size="34" color="#ffffff"></u-icon>
</view>
</view>
</u-navbar> -->
<image style="height: 100%;width: 100%;" src="/static/image/wx/wallet/fen-fu-page.jpg"></image>
</view>
</template>
<script>
export default {
data() {
return {
};
},
methods:{
goback(){
uni.navigateBack();
}
}
}
</script>
<style lang="scss" scoped>
.slot-wrap {
display: flex;
align-items: center;
/* 如果您想让slot内容占满整个导航栏的宽度 */
flex: 1;
/* 如果您想让slot内容与导航栏左右有空隙 */
padding: 0 30rpx;
}
.container{
width: 100%;
height: 100%;
}
.page-image{
width: 100%;
height: 100%;
}
</style>
<style>
/*page{
width: 100%;
height: 100%;
background-image: url('/static/image/wx/wallet/fen-fu-page.jpg');
background-repeat: no-repeat;
background-size: 100% 100%;
} */
</style>