smartmeter-app/pages/userpage/switchs.vue

58 lines
894 B
Vue
Raw Normal View History

2024-03-25 19:46:07 +08:00
<template>
<view class="pages">
<u-navbar title="设备列表" :border-bottom="false" :background="bgc" title-color='#262B37' title-size='48' height='100'></u-navbar>
<view class="titleadd">
<view class="title"> 点击切换设备 </view>
<view class="add"> + </view>
</view>
<view class="list">
</view>
</view>
</template>
<script>
export default {
data() {
return {
bgc: {
backgroundColor: "#F7FAFE",
},
}
},
onLoad() {
},
methods: {
}
}
</script>
<style lang="scss">
page {
background-color: #F7FAFE !important;
}
.pages {
padding: 0 40rpx;
box-sizing: border-box;
}
.titleadd{
display: flex;
justify-content: space-between;
padding: 0 12rpx;
box-sizing: border-box;
.title{
font-size: 36rpx;
color: #000000;
line-height: 50rpx;
}
.add{
font-size: 68rpx;
line-height: 50rpx;
}
}
</style>