kaiguan-zfb/page_fenbao/device/wifivideo.vue

107 lines
2.1 KiB
Vue
Raw Permalink Normal View History

2024-05-25 14:39:16 +08:00
<template>
<view class="page">
2024-11-21 17:51:50 +08:00
<u-navbar title="添加设备" :border-bottom="false" :background="bgc" title-color='#000' back-icon-color="000" title-size='38'
2024-05-25 14:39:16 +08:00
height='50'></u-navbar>
<text class="title">IOS WIFI连接教程</text>
<text class="wb">系统检测到您为苹果手机需进wiFi设置页获取最新WIFI后返回</text>
<view class="wifivideo">
<video :src="videosrc"></video>
</view>
<button @click="btnxyb">下一步</button>
</view>
</template>
<script>
export default {
data() {
return {
options: '',
deviceId: '',
name: '',
2024-06-04 14:50:30 +08:00
videosrc:'https://lxnapi.ccttiot.com/FjAFeRSQNx3FUuU6eH61dHAconzA',
bgc: {
2024-11-21 17:51:50 +08:00
backgroundColor: "#fff",
2024-06-04 14:50:30 +08:00
},
2024-05-25 14:39:16 +08:00
}
},
2024-07-17 17:59:51 +08:00
// 分享到好友(会话)
onShareAppMessage: function () {
return {
title: '创想物联',
path: '/pages/shouye/index'
}
},
// 分享到朋友圈
onShareTimeline: function () {
return {
title: '创想物联',
query: '',
path: '/pages/shouye/index'
}
},
2024-05-25 14:39:16 +08:00
onLoad(option) {
console.log(option, 'opopop')
this.deviceId = option.deviceId
this.name = option.name
},
methods: {
btnxyb() {
uni.navigateTo({
url: '/page_components/wifilist/index?deviceId=' + this.deviceId + '&name=' + this.name
})
}
}
}
</script>
<style lang="less">
.page {
width: 100%;
padding: 0 20rpx;
box-sizing: border-box;
padding-top: 50rpx;
2024-06-04 14:50:30 +08:00
// padding-bottom: 30rpx;
2024-05-25 14:39:16 +08:00
.title {
2024-06-04 14:50:30 +08:00
font-size: 60rpx;
2024-05-25 14:39:16 +08:00
color: #666;
}
.wb {
color: #666;
display: block;
font-size: 34rpx;
2024-06-04 14:50:30 +08:00
margin-top: 10rpx;
2024-05-25 14:39:16 +08:00
}
.wifivideo {
// width: 100%;
2024-06-04 14:50:30 +08:00
margin-top: 10rpx;
2024-05-25 14:39:16 +08:00
width: 100%;
height: 63vh;
padding-bottom: 56.25%;
2024-06-04 14:50:30 +08:00
text-align: center;
// position: relative;
2024-05-25 14:39:16 +08:00
video {
border-radius: 20rpx;
2024-06-04 14:50:30 +08:00
// position: absolute;
width: 90%;
height: 63vh;
2024-05-25 14:39:16 +08:00
object-fit: cover;
}
}
}
button {
padding: 10rpx 0;
box-sizing: border-box;
background-color: #8883F0;
border-radius: 20rpx;
font-weight: 700;
font-size: 20px;
width: 100%;
color: #fff;
margin-top: 30rpx;
}
</style>