buddhism/pages/index/index.vue

49 lines
783 B
Vue
Raw Normal View History

2023-11-27 09:57:03 +08:00
<template>
2025-08-14 11:22:53 +08:00
<view class="page">
<u-navbar
:is-back="false"
title="首页"
:border-bottom="false"
back-icon-color="000"
:background="bgc"
title-color="#fff"
title-size="36"
height="36"
id="navbar"
>
</u-navbar>
<image
class="bj"
src="https://api.ccttiot.com/smartmeter/img/static/uFwwZa2fwduQIMXcnGEa"
mode=""
></image>
</view>
2023-11-27 09:57:03 +08:00
</template>
<script>
2025-08-14 11:22:53 +08:00
export default {
data() {
return {
bgc: {
backgroundColor: '#8883f0',
},
}
},
methods: {},
}
2023-11-27 09:57:03 +08:00
</script>
2024-01-27 16:37:52 +08:00
<style lang="scss">
2025-08-14 11:22:53 +08:00
page {
background-color: #fff;
}
.bj {
width: 100%;
height: 100vh;
position: fixed;
top: 0;
left: 0;
z-index: -1;
}
</style>