添加UniApp

This commit is contained in:
2025-08-11 23:18:31 +08:00
parent 2f3d39fb00
commit 42cc8cf2e2
61 changed files with 1237 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
<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>