| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <template>
- <view class="content">
- <view class="box">
- <view class="">当前连接:YThuwai</view>
-
- </view>
- </view>
- </template>
- <script setup>
- import { ref, onMounted } from "vue";
- import { onShow } from "@dcloudio/uni-app";
- const list = ref([
-
- ])
- onMounted(()=>{
- // uni.getConnectedWifi({
- // success:(res)=>{
- // console.log('res',res)
- // }
- // })
- // uni.getWifiList({
- // success:(res)=>{
- // console.log('res',res)
- // },
- // fail: (err) => {
- // console.log('err',err)
- // }
- // })
- })
- </script>
- <style lang="scss" scoped>
- .content{
- height: 100vh;
- padding: 28rpx;
- background: linear-gradient(to bottom, #a9d4ff, #cce6ff);
- }
- .box{
- background-color: #fff;
- border-radius: 30rpx;
- height: 95vh;
- padding: 30rpx 28rpx;
- }
- </style>
|