增加音乐,摇一摇,服务等页面

This commit is contained in:
cansnow
2026-02-15 19:41:13 +08:00
parent abd279e7a7
commit 271ec4b9c2
74 changed files with 14021 additions and 2 deletions
@@ -0,0 +1,52 @@
<template>
<view>
<u-navbar :is-back="false" title="" :border-bottom="false" :background="{background: '#ffffff'}">
<view class="slot-wrap">
<view @click="goback()">
<u-icon name="close" size="34" color="#606266"></u-icon>
</view>
</view>
</u-navbar>
<image class="page-image" src="/static/image/wx/wallet/linqiantong-page.jpg" mode="widthFix"></image>
</view>
</template>
<script>
export default {
data() {
return {
};
},
methods:{
handle(){
},
goback(){
uni.navigateBack();
}
}
}
</script>
<style lang="scss" scoped>
.slot-wrap {
display: flex;
align-items: center;
/* 如果您想让slot内容占满整个导航栏的宽度 */
flex: 1;
/* 如果您想让slot内容与导航栏左右有空隙 */
padding: 0 30rpx;
}
.page-image{
width: 100%;
margin-top: 30rpx;
}
</style>
<style>
page{
background-color: #ffffff;
}
</style>