buddhism/pages/index/index.vue

40 lines
666 B
Vue
Raw Normal View History

2023-11-27 09:57:03 +08:00
<template>
2024-01-27 16:37:52 +08:00
<view class="page">
2025-07-28 10:53:56 +08:00
<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">
2024-01-27 16:37:52 +08:00
</u-navbar>
2025-07-28 10:53:56 +08:00
<image class="bj" src="https://api.ccttiot.com/smartmeter/img/static/uFwwZa2fwduQIMXcnGEa" mode=""></image>
2023-11-27 09:57:03 +08:00
</view>
</template>
<script>
export default {
data() {
return {
2024-01-27 16:37:52 +08:00
bgc: {
2025-07-28 10:53:56 +08:00
backgroundColor: "#8883f0",
2024-01-27 16:37:52 +08:00
},
2024-03-25 19:46:07 +08:00
2025-07-28 10:53:56 +08:00
}
2023-11-27 09:57:03 +08:00
},
methods: {
2024-03-25 19:46:07 +08:00
2023-11-27 09:57:03 +08:00
}
}
</script>
2024-01-27 16:37:52 +08:00
<style lang="scss">
2024-03-13 10:54:22 +08:00
page {
2025-07-28 10:53:56 +08:00
background-color: #fff;
2024-03-13 10:54:22 +08:00
}
2025-07-28 10:53:56 +08:00
.bj{
width: 100%;
height: 100vh;
position: fixed;
top: 0;
left: 0;
z-index: -1;
2024-01-27 16:37:52 +08:00
}
2025-07-28 10:53:56 +08:00
2024-03-13 10:54:22 +08:00
</style>