SEC_Warehouse/pages/device/add.vue

40 lines
733 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>