SEC_Warehouse/pages/device/add.vue

38 lines
583 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<template>
<view class="page page-base">
<view class="card card-base">
<text class="title">添加设备静态</text>
<text class="desc">这里用于后续接入设备连接流程例如蓝牙/Wi-Fi 配网</text>
</view>
</view>
</template>
<script>
export default {}
</script>
<style>
@import '@/styles/common.css';
.page {
padding: 24rpx;
}
.card {
padding: 28rpx;
}
.title {
display: block;
font-size: 36rpx;
font-weight: 700;
margin-bottom: 16rpx;
}
.desc {
color: #666666;
font-size: 30rpx;
line-height: 1.8;
}
</style>