Files
happy-life-star/UniApp/pages/device-connect/index.uvue
T
2025-08-11 23:18:31 +08:00

25 lines
710 B
Plaintext

<template>
<view class="container">
<image class="hero" src="/static/devices/search_illustration.png" mode="widthFix"></image>
<view class="status">
<image class="bt" src="/static/devices/bluetooth_off.png"></image>
<text>未连接</text>
</view>
<button class="btn-primary">搜索设备</button>
</view>
</template>
<script>
export default {}
</script>
<style>
.container { padding: 32rpx; }
.hero { width: 100%; margin-bottom: 24rpx; }
.status { display: flex; align-items: center; gap: 12rpx; margin-bottom: 24rpx; }
.bt { width: 40rpx; height: 40rpx; }
.btn-primary { background: #007AFF; color: #fff; border-radius: 12rpx; height: 88rpx; line-height: 88rpx; }
</style>