1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <template>
- <u-popup :show="show" :round="36" mode="bottom" @close="close">
- <view class="bind_device">
- <div class="top adfacjb">
- <div class="pre adffcacjc" @tap="scanBind">
- <image src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/05/29/7c56ff85-0a0d-43f4-90dc-6559423e1eec.png"></image>
- <text>扫码绑定设备</text>
- </div>
- <div class="pre adffcacjc" @tap="wifiBind">
- <image src="https://transcend.ringzle.com/xiaozhi-app/profile/2025/05/29/b45bc4e9-effb-4045-adce-98b14f3f6e8a.png"></image>
- <text>配网并绑定设备</text>
- </div>
- </div>
- <div class="close">
- <u-icon name="close" color="#5C5C5C" size="50" @tap="close"></u-icon>
- </div>
- </view>
- </u-popup>
- </template>
- <script>
- export default {
- data(){
- return {
- show:false
- }
- },
- methods:{
- close(){
- this.show = false;
- },
- scanBind(){
- this.show = false;
- let that = this;
- uni.scanCode({
- success: (res) => {
- let result = JSON.parse(res.result);
- if(res.errMsg==='scanCode:ok'){
- that.$api.post('/device/bind',{
- ...result,
- "type": "",
- "userId": 0,
- "agentId": ""
- }).then(res=>{
- if(res.data.code!==0) return that.$showToast(res.data.msg)
- uni.navigateTo({
- url:'/pagesMy/scanResult?deviceId='+res.data.data
- })
- })
- }
- }
- })
- },
- wifiBind(){
- this.show = false;
- uni.navigateTo({
- url:'/pagesMy/deviceAdd'
- })
- },
- }
- }
- </script>
- <style scoped lang="less">
- .bind_device{
- width: 100%;
- padding: 74rpx 74rpx 20rpx;
- box-sizing: border-box;
- .top{
- .pre{
- width: calc(50% - 51rpx);
- image{
- width: 110rpx;
- height: 110rpx;
- }
- text{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 28rpx;
- color: #111111;
- line-height: 32rpx;
- text-align: center;
- margin-top: 24rpx;
- }
- }
- }
- .close{
- width: 100%;
- margin-top: 113rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- }
- </style>
|