84 lines
1.3 KiB
Vue
84 lines
1.3 KiB
Vue
<template>
|
|
<view class="page">
|
|
<u-navbar :title="title" :border-bottom="false" :background="bgc" title-color='#000' title-size='36'
|
|
:title-bold='true' height='45' id="navbar">
|
|
</u-navbar>
|
|
<view class="tit">
|
|
<image src="https://api.ccttiot.com/smartmeter/img/static/ufvwKG3vcJYtbkf0Oeij" mode=""></image>
|
|
除螨设置
|
|
</view>
|
|
<view class="tit1">
|
|
<image src="https://api.ccttiot.com/smartmeter/img/static/utZh1saVjZgOBz3orDkL" mode=""></image>
|
|
间隔时长
|
|
</view>
|
|
<view class="set_li">
|
|
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
bgc: {
|
|
backgroundColor: " #F4FAF8",
|
|
},
|
|
title: "设置",
|
|
|
|
}
|
|
},
|
|
onLoad() {
|
|
|
|
},
|
|
onShow() {
|
|
|
|
},
|
|
methods: {
|
|
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
page {
|
|
background-color: #F4FAF8;
|
|
}
|
|
|
|
.page {
|
|
// position: relative;
|
|
width: 750rpx;
|
|
padding: 40rpx;
|
|
.tit{
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
align-items: center;
|
|
image{
|
|
margin-right: 22rpx;
|
|
width: 52rpx;
|
|
height: 52rpx;
|
|
|
|
}
|
|
font-weight: 600;
|
|
font-size: 36rpx;
|
|
color: #3D3D3D;
|
|
}
|
|
.tit1{
|
|
margin-top: 32rpx;
|
|
display: flex;
|
|
flex-wrap: nowrap;
|
|
align-items: center;
|
|
image{
|
|
margin-right: 18rpx;
|
|
width: 46rpx;
|
|
height: 46rpx;
|
|
|
|
}
|
|
font-weight: 400;
|
|
font-size: 32rpx;
|
|
color: #3D3D3D;
|
|
}
|
|
|
|
}
|
|
</style> |