开关
This commit is contained in:
parent
7f65dc2afe
commit
5a88ee7ace
|
@ -151,7 +151,9 @@
|
|||
</view>
|
||||
</view>
|
||||
<view v-if="swindleflag" class="" style="width: 100%;height: 100vh;position: fixed;top: 0;left: 0;background-color: #000;opacity: .5;z-index: 98;"></view>
|
||||
|
||||
<view class="mask" v-if="masksss">
|
||||
|
||||
</view>
|
||||
|
||||
|
||||
</view>
|
||||
|
@ -175,6 +177,7 @@
|
|||
expireTimeStr: '',
|
||||
zfobj: {},
|
||||
orderno: '',
|
||||
masksss:false,
|
||||
id: '',
|
||||
czflag: false,
|
||||
sytime: 0,
|
||||
|
@ -561,7 +564,7 @@
|
|||
this.getPhoneNumber()
|
||||
this.telslag = true
|
||||
}else {
|
||||
// this.zhifuflag = true
|
||||
this.zhifuflag = true
|
||||
this.getzhifu()
|
||||
}
|
||||
},
|
||||
|
|
|
@ -6,12 +6,12 @@
|
|||
<view class="container" style="margin-top: 50rpx;">
|
||||
<view class="device">
|
||||
<span class="device-list-title">WIFI选择</span>
|
||||
<view class="">
|
||||
当前WIFI配网:{{objlist.wifi}}
|
||||
<view class="" v-if="objlist.wifi">
|
||||
该设备已成功连接WIFI:{{objlist.wifi}}
|
||||
</view>
|
||||
</view>
|
||||
<view class="flex-row items-center flex-1 group" style="display: flex;justify-content: space-between;align-items: center;">
|
||||
<view class="text_3 ml-3">请选择您需要连接的2.4GwiFi名称</view>
|
||||
<view class="text_3 ml-3" style="width: 350rpx;flex-wrap: wrap;">本设备只支持2.4G-WIFI网络 暂不支持5G-WIFI</view>
|
||||
<view class="text_3 ml-3" style="color: #8883F0;display: flex;justify-content: space-between;align-items: center;" @click="btnwifi">
|
||||
<image class="sximg" src="https://api.ccttiot.com/smartmeter/img/static/uhhg02VV44LLPaDJDJO2" mode="aspectFit" :style="{ transform: 'rotate(' + rotateDegree + 'deg)' }" ></image>
|
||||
<text>刷新</text> </view>
|
||||
|
@ -19,7 +19,7 @@
|
|||
|
||||
<!-- wifi列表 -->
|
||||
<view class="wifilist">
|
||||
<view class="bd" v-for="(item,index) in list" :key="index" @click="btnqhwifi(index,item)"
|
||||
<view class="bd" v-for="(item,index) in 10" :key="index" @click="btnqhwifi(index,item)"
|
||||
v-if="signalStrengthflag">
|
||||
<view class="bdbox">
|
||||
<view class="box">
|
||||
|
@ -1096,7 +1096,7 @@
|
|||
}
|
||||
|
||||
.wifilist {
|
||||
margin-top: 80rpx;
|
||||
// margin-top: 80rpx;
|
||||
|
||||
.bd {
|
||||
display: flex;
|
||||
|
@ -1110,7 +1110,7 @@
|
|||
padding-right: 60rpx;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, .1);
|
||||
border-radius: 10rpx;
|
||||
margin-top: 50rpx;
|
||||
margin-top: 20rpx;
|
||||
|
||||
.picone {
|
||||
width: 58rpx;
|
||||
|
|
|
@ -63,9 +63,11 @@
|
|||
<text class="shen">使用度数</text><text class="qian">{{Number(detailobj.suitEndEle).toFixed(2) - Number(detailobj.suitStartEle).toFixed(2)}}度</text>
|
||||
</view>
|
||||
<view class="nav" v-else>
|
||||
<text class="shen">套餐时长</text><text class="qian">{{detailobj.suitTime == undefined ? '--' : detailobj.suitTime}}
|
||||
<text v-if="detailobj.suitTimeUnit == 1">天</text> <text v-if="detailobj.suitTimeUnit == 2">时</text> <text v-if="detailobj.suitTimeUnit == 3">分钟</text> <text v-if="detailobj.suitTimeUnit == 4">秒</text>
|
||||
<text class="shen">套餐时长</text>
|
||||
<text class="qian" v-if="detailobj.suitFeeType == 1 || detailobj.suitFeeType == 2">{{detailobj.suitPrice == undefined ? '' : detailobj.suitPrice + '元'}}/{{detailobj.suitTime == undefined ? '--' : detailobj.suitTime}}
|
||||
<text v-if="detailobj.suitTimeUnit == 1">天</text> <text v-if="detailobj.suitTimeUnit == 2">时</text> <text v-if="detailobj.suitTimeUnit == 3">分钟</text> <text v-if="detailobj.suitTimeUnit == 4">秒</text>
|
||||
</text>
|
||||
<text class="qian" v-else>--</text>
|
||||
</view>
|
||||
<view class="nav">
|
||||
<text class="shen">套餐金额</text><text class="qian">¥{{detailobj.money == undefined ? '--' : detailobj.money}}</text>
|
||||
|
@ -90,9 +92,9 @@
|
|||
<text class="shen">共计</text><text class="qian">¥{{detailobj.money == undefined ? '--' : detailobj.money}}</text>
|
||||
</view> -->
|
||||
</view>
|
||||
<!-- <view class="pic" @click="btnad">
|
||||
<image :src="imgad" mode="aspectFit" class="pic"></image>
|
||||
</view> -->
|
||||
<view class="pic" @click="btntel">
|
||||
联系商家客服
|
||||
</view>
|
||||
</view>
|
||||
<!-- 退款弹窗 -->
|
||||
<view class="tanc" v-if="maskflag">
|
||||
|
@ -171,7 +173,21 @@
|
|||
}
|
||||
})
|
||||
},
|
||||
|
||||
btntel(){
|
||||
uni.makePhoneCall({
|
||||
phoneNumber: this.detailobj.mchMobile,
|
||||
success: function(res) {
|
||||
console.log('拨打电话成功', res)
|
||||
},
|
||||
fail: function(err) {
|
||||
console.error('拨打电话失败', err)
|
||||
uni.showToast({
|
||||
title: '拨打电话失败',
|
||||
icon: 'none'
|
||||
})
|
||||
}
|
||||
})
|
||||
},
|
||||
btnqd(){
|
||||
if(this.inptext > this.detailobj.money){
|
||||
uni.showToast({
|
||||
|
@ -376,9 +392,13 @@
|
|||
box-sizing: border-box;
|
||||
.pic{
|
||||
width: 680rpx;
|
||||
text-align: center;
|
||||
font-size: 36rpx;
|
||||
font-weight: 600;
|
||||
color: red;
|
||||
height: 238rpx;
|
||||
margin: auto;
|
||||
margin-top: 36rpx;
|
||||
margin-top: 56rpx;
|
||||
border-radius: 30rpx;
|
||||
}
|
||||
.listxq{
|
||||
|
|
|
@ -187,7 +187,7 @@
|
|||
<view class="cont" @click="qrFun">
|
||||
<view class="top">
|
||||
<image style="width: 44rpx;height: 44rpx;"
|
||||
src="https://api.ccttiot.com/smartmeter/img/static/uMdtTPOmGVJqcYIQvnUj" mode="aspectFit">
|
||||
src="https://api.ccttiot.com/smartmeter/img/static/uGjm0qpPFeDJZ2hUFexi" mode="aspectFit">
|
||||
</image>
|
||||
<view class="bot">设备二维码</view>
|
||||
</view>
|
||||
|
|
|
@ -244,6 +244,15 @@
|
|||
}
|
||||
},
|
||||
onShow() {
|
||||
wx.openBluetoothAdapter({
|
||||
success: function (res) {
|
||||
console.log('蓝牙适配器初始化成功');
|
||||
// 你可以在这里继续调用其他蓝牙相关的API
|
||||
},
|
||||
fail: function (err) {
|
||||
console.error('蓝牙适配器初始化失败,可能是因为没有权限', err);
|
||||
}
|
||||
})
|
||||
this.logins()
|
||||
this.getad()
|
||||
this.getzf()
|
||||
|
|
Loading…
Reference in New Issue
Block a user