This commit is contained in:
3321822538@qq.com 2024-06-04 14:50:30 +08:00
parent ca1ed4834f
commit 10b5790c94
21 changed files with 636 additions and 643 deletions

View File

@ -36,7 +36,7 @@
该设备还剩余时长{{expireTimeStr}}分钟
</view>
<view class="">
{{item.description}}
{{item.description == null ? '无' : item.description}}
</view>
<view class="wz">
联系客服2562356565
@ -46,7 +46,7 @@
<view class="tongyi">
<u-checkbox-group>
<u-checkbox v-model="checked" @change="checkboxChange" active-color="#8883F0 ">我已同意
<text>用户服务协议</text> </u-checkbox>
</u-checkbox><text></text>
</u-checkbox-group>
<view class="zf" @click="btnzhifu">
立即支付
@ -210,7 +210,9 @@
/deep/ .u-title {
padding-bottom: 22rpx;
}
/deep/ .u-checkbox__label{
margin-right: 0 !important;
}
// /deep/ .u-icon__icon{
// padding-bottom: 41rpx;
// }
@ -288,7 +290,7 @@
.title {
margin-top: 40rpx;
padding-left: 32rpx;
font-weight: 500;
font-weight: 600;
font-size: 40rpx;
color: #383838;
margin-bottom: 30rpx;
@ -311,6 +313,8 @@
text {
color: #638DFF;
height: 50rpx;
line-height: 50rpx;
}
.zf {

View File

@ -1,7 +1,9 @@
<template>
<view>
<u-navbar title="WIFI连接" :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff" title-size='36'
height='50'></u-navbar>
<!-- 样式 -->
<view class="container" style="margin-top: 100rpx;">
<view class="container" style="margin-top: 50rpx;">
<view class="device">
<span class="device-list-title">WIFI选择</span>
</view>
@ -18,19 +20,23 @@
<ul>
<li
v-if="(item.signalStrength < 1 ? (item.signalStrength * 100) : item.signalStrength) > 1 && (item.signalStrength < 1 ? (item.signalStrength * 100) : item.signalStrength) < 30">
<image src="https://api.ccttiot.com/smartmeter/img/static/uTvQ7JtgSsBsTY99SKrF" mode=""></image>
<image src="https://api.ccttiot.com/smartmeter/img/static/uTvQ7JtgSsBsTY99SKrF"
mode=""></image>
</li>
<li
v-if="(item.signalStrength < 1 ? (item.signalStrength * 100) : item.signalStrength) > 29 && (item.signalStrength < 1 ? (item.signalStrength * 100) : item.signalStrength) < 51">
<image src="https://api.ccttiot.com/smartmeter/img/static/uXM3mk2pJi73XeM9mVqG" mode=""></image>
<image src="https://api.ccttiot.com/smartmeter/img/static/uXM3mk2pJi73XeM9mVqG"
mode=""></image>
</li>
<li
v-if="(item.signalStrength < 1 ? (item.signalStrength * 100) : item.signalStrength) > 50 && (item.signalStrength < 1 ? (item.signalStrength * 100) : item.signalStrength) < 70">
<image src="https://api.ccttiot.com/smartmeter/img/static/uTTcLsrjxpw5asCMUZtR" mode=""></image>
<image src="https://api.ccttiot.com/smartmeter/img/static/uTTcLsrjxpw5asCMUZtR"
mode=""></image>
</li>
<li
v-if="(item.signalStrength < 1 ? (item.signalStrength * 100) : item.signalStrength) > 69">
<image src="https://api.ccttiot.com/smartmeter/img/static/uOa0lsRfyLqH7CEYrgXx" mode=""></image>
<image src="https://api.ccttiot.com/smartmeter/img/static/uOa0lsRfyLqH7CEYrgXx"
mode=""></image>
</li>
</ul>
</view>
@ -40,12 +46,16 @@
<view class="wz" style="color: #8883F0 ;">{{item.BSSID}}</view>
</view>
</view>
<image src="https://api.ccttiot.com/smartmeter/img/static/uLrArPv3OrIodtWZ3gri" mode="" class="pictwo" v-if="indexs == index">
<image src="https://api.ccttiot.com/smartmeter/img/static/uLrArPv3OrIodtWZ3gri" mode=""
class="pictwo" v-if="indexs == index">
</image>
</view>
</view>
<view class="button" @click="btnxyb">下一步</view>
<view class="buttons" @click="btnsd">手动输入WIFI</view>
<view class="annius" style="display: flex;justify-content: space-between;">
<view class="" @click="btnsd">手动输入WIFI</view>
<view class="" @click="btnxyb">下一步</view>
</view>
</view>
</view>
@ -83,7 +93,10 @@
videoflag: false, //flag
ssid: '', //wifi
signalStrengthflag: false,
objlist: {}
objlist: {},
bgc: {
backgroundColor: "#8883f0",
},
};
},
@ -128,7 +141,6 @@
}
that.signalStrengthflag = true
that.list = that.wifiList
console.log(that.list, '1010'); //
});
},
fail: function(err) {
@ -221,14 +233,16 @@
} else {
console.log('panduan2');
uni.navigateTo({
url: '/page_user/wifijoint/index?ssid=' + JSON.stringify(this.ssid) + '&objlist=' + JSON.stringify(this.objlist)
url: '/page_user/wifijoint/index?ssid=' + JSON.stringify(this.ssid) + '&objlist=' + JSON
.stringify(this.objlist)
})
}
},
btnsd() {
this.ssid = ''
uni.navigateTo({
url: '/page_user/wifijoint/index?objlist=' + JSON.stringify(this.objlist) + '&ssid=' + JSON.stringify(this.ssid)
url: '/page_user/wifijoint/index?objlist=' + JSON.stringify(this.objlist) + '&ssid=' + JSON
.stringify(this.ssid)
})
},
@ -263,51 +277,34 @@
}
li {
// width: 8rpx;
// position: absolute;
// bottom: 0;
// border-radius: 10px;
// background: rgba(0, 0, 0, .5);
image {
display: inline-block;
margin-top: 10rpx;
// padding-left: 30rpx;
// box-sizing: border-box;
width: 50rpx;
height: 46rpx;
}
}
// ul li:nth-child(1) {
// height: 10rpx;
// left: 0px;
// }
// ul li:nth-child(2) {
// height: 20rpx;
// left: 10px;
// }
// ul li:nth-child(3) {
// height: 30rpx;
// left: 20px;
// }
// ul li:nth-child(4) {
// height: 40rpx;
// left: 30px;
// }
// ul li:nth-child(5) {
// height: 50rpx;
// left: 40px;
// }
// ul li:nth-child(6) {
// height: 60rpx;
// left: 50px;
// }
.annius{
position: fixed;
align-items: center;
left: 50%;
transform: translateX(-50%);
bottom: 50rpx;
border-radius: 52rpx 52rpx 52rpx 52rpx;
font-weight: 700;
font-size: 20px;
width: 90%;
view{
color: #FFFFFF;
height: 96rpx;
border-radius: 30rpx;
line-height: 96rpx;
box-sizing: border-box;
width: 44%;
background-color: #8883F0 !important;
text-align: center;
}
}

View File

@ -1,6 +1,6 @@
<template>
<view class="pages">
<u-navbar title="添加设备" :border-bottom="false" :background="bgc" title-color='#262B37' title-size='38'
<u-navbar title="添加设备" :border-bottom="false" :background="bgc" title-size='38' title-color='#fff' back-icon-color="#fff"
height='50'></u-navbar>
<view class="title">
<text>设备列表</text>
@ -76,7 +76,10 @@
gps: {},
mac: '',
status: false,
storeId:''
storeId:'',
bgc: {
backgroundColor: "#8883f0",
},
}
},
onLoad(option) {
@ -140,24 +143,16 @@
case xBlufi.XBLUFI_TYPE.TYPE_GET_DEVICE_LISTS:
if (options.result) {
let devicesarr = options.data
console.log(devicesarr,100100);
// console.log(devicesarr,100100);
devicesarr.forEach(device => {
const mac = device.name.substring(6);
if (device.name.substring(0, 4) == "CTKG") {
// this.$u.get(`/app/device/${mac}/isBind`, data).then((res) => {
// if (res.data == false) {
this.devicesList.push(device);
console.log(this.devicesList);
let uniqueDevicesList = Array.from(new Set(this.devicesList));
// this.devicesList
this.devicesList = uniqueDevicesList;
// }
// })
}
});
}
break;
@ -314,28 +309,6 @@
console.error('获取位置信息失败:', error);
that.gps.lat = 0;
that.gps.lon = 0;
// that.$u.put(`/app/device/bind/${that.mac}`, that.gps).then((res) => {
// if (res.code == 200) {
// uni.showToast({
// title: '',
// icon: 'none',
// duration: 2000
// });
// uni.removeStorageSync('mac');
// // setTimeout(()=>{
// // uni.switchTab({
// // url:'/pages/index/index'
// // })
// // },)
// } else {
// // setTimeout(()=>{
// // uni.switchTab({
// // url:'/pages/index/index'
// // })
// // },)
// }
// })
//
}
})
@ -420,7 +393,7 @@
.title {
margin-bottom: 84rpx;
margin-top: 50rpx;
image {
display: inline-block;
width: 48rpx;

View File

@ -1,6 +1,6 @@
<template>
<view class="page">
<u-navbar title="添加设备" :border-bottom="false" :background="bgc" title-color='#262B37' title-size='38'
<u-navbar title="添加设备" :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff" title-size='38'
height='50'></u-navbar>
<text class="title">IOS WIFI连接教程</text>
<text class="wb">系统检测到您为苹果手机需进wiFi设置页获取最新WIFI后返回</text>
@ -18,7 +18,10 @@
options: '',
deviceId: '',
name: '',
videosrc:'https://lxnapi.ccttiot.com/FjAFeRSQNx3FUuU6eH61dHAconzA'
videosrc:'https://lxnapi.ccttiot.com/FjAFeRSQNx3FUuU6eH61dHAconzA',
bgc: {
backgroundColor: "#8883f0",
},
}
},
onLoad(option) {
@ -42,10 +45,10 @@
padding: 0 20rpx;
box-sizing: border-box;
padding-top: 50rpx;
padding-bottom: 30rpx;
// padding-bottom: 30rpx;
.title {
font-size: 80rpx;
font-size: 60rpx;
color: #666;
}
@ -53,34 +56,28 @@
color: #666;
display: block;
font-size: 34rpx;
margin-top: 30rpx;
margin-top: 10rpx;
}
.wifivideo {
// width: 100%;
margin-top: 30rpx;
margin-top: 10rpx;
width: 100%;
height: 63vh;
padding-bottom: 56.25%;
position: relative;
text-align: center;
// position: relative;
video {
// width: 100%;
// height: 90vh;
border-radius: 20rpx;
position: absolute;
width: 100%;
height: 100%;
// position: absolute;
width: 90%;
height: 63vh;
object-fit: cover;
}
}
}
button {
// position: fixed;
// left: 50%;
// transform: translateX(-50%);
// bottom: 50rpx;
//margin-top: -100rpx;
padding: 10rpx 0;
box-sizing: border-box;
background-color: #8883F0;

View File

@ -21,11 +21,10 @@
<text class="shen">上报时间</text> <text class="qian">{{item.createTime}}</text>
</view>
</view>
<view class="" style="width: 448rpx;height: 448rpx;margin: auto;margin-top: 100rpx;text-align: center;"
v-if="showflag">
<image style="width: 448rpx;height: 448rpx;"
<view class="" v-if="showflag" style="width: 100%;height: 200rpx;margin: auto;margin-top: 170rpx;text-align: center;">
<image style="width: 200rpx;height: 200rpx;"
src="https://api.ccttiot.com/smartmeter/img/static/uZFUpcz0YZZ4f4RjvGg2" mode=""></image>
<view class="" style="font-size: 30rpx;color: #ccc;margin-top: 30rpx;">暂无更多故障记录...</view>
<view class="" style="font-size: 28rpx;color: #808080;margin-top: 30rpx;">暂无更多故障记录...</view>
</view>
</view>
</view>

View File

@ -37,10 +37,10 @@
</view>
</view>
<view class="" v-if="showflag" style="width: 448rpx;height: 448rpx;margin: auto;margin-top: 170rpx;text-align: center;">
<image style="width: 448rpx;height: 448rpx;"
<view class="" v-if="showflag" style="width: 100%;height: 200rpx;margin: auto;margin-top: 170rpx;text-align: center;">
<image style="width: 200rpx;height: 200rpx;"
src="https://api.ccttiot.com/smartmeter/img/static/uZFUpcz0YZZ4f4RjvGg2" mode=""></image>
<view class="" style="font-size: 36rpx;color: #808080;margin-top: 30rpx;">暂无更多订单记录...</view>
<view class="" style="font-size: 28rpx;color: #808080;margin-top: 30rpx;">暂无更多订单记录...</view>
</view>
</view>

View File

@ -79,7 +79,7 @@
<!-- 选择省市区 -->
<u-picker v-model="regionshow" mode="region" @confirm="btnregions"></u-picker>
<!-- 营业时间 -->
<u-picker mode="time" v-model="show" :params="params" @confirm="btnyy"></u-picker>
<u-picker mode="time" v-model="show" default-time="00:00" :params="params" @confirm="btnyy"></u-picker>
</view>
</view>

View File

@ -45,11 +45,10 @@
</view>
</view>
<view class="" style="width: 448rpx;height: 448rpx;margin: auto;margin-top: 100rpx;text-align: center;"
v-if="showflag">
<image style="width: 448rpx;height: 448rpx;"
<view class="" v-if="showflag" style="width: 100%;height: 200rpx;margin: auto;margin-top: 170rpx;text-align: center;">
<image style="width: 200rpx;height: 200rpx;"
src="https://api.ccttiot.com/smartmeter/img/static/uZFUpcz0YZZ4f4RjvGg2" mode=""></image>
<view class="" style="font-size: 30rpx;color: #ccc;margin-top: 30rpx;">暂无更多店铺...</view>
<view class="" style="font-size: 28rpx;color: #808080;margin-top: 30rpx;">暂无更多店铺...</view>
</view>
</view>

View File

@ -37,11 +37,10 @@
</view>
</view>
</view>
<view class="" style="width: 448rpx;height: 448rpx;margin: auto;margin-top: 100rpx;text-align: center;"
v-if="showflag">
<image style="width: 448rpx;height: 448rpx;"
<view class="" v-if="showflag" style="width: 100%;height: 200rpx;margin: auto;margin-top: 170rpx;text-align: center;">
<image style="width: 200rpx;height: 200rpx;"
src="https://api.ccttiot.com/smartmeter/img/static/uZFUpcz0YZZ4f4RjvGg2" mode=""></image>
<view class="" style="font-size: 30rpx;color: #ccc;margin-top: 30rpx;">该店铺暂无设备...</view>
<view class="" style="font-size: 28rpx;color: #808080;margin-top: 30rpx;">暂无更多设备...</view>
</view>
</view>
</view>

View File

@ -16,7 +16,7 @@
<view class="listval">
<view class="tit"> 营业时间</view>
<view class="but"
style="display: flex;justify-content: space-between;padding: 15rpx 10rpx;box-sizing: border-box;">
style="display: flex;justify-content: space-between;padding: 15rpx 20rpx;box-sizing: border-box;">
<!-- <input type="text" placeholder="请输入营业时间" v-model="yetime" /> -->
<view class="" style="font-size: 28rpx;color: #666;" @click="btnyinye(1)">{{ksyy}}</view>
--
@ -79,7 +79,7 @@
<!-- 选择省市区 -->
<u-picker v-model="regionshow" mode="region" @confirm="btnregions"></u-picker>
<!-- 营业时间 -->
<u-picker mode="time" v-model="show" :params="params" @confirm="btnyy"></u-picker>
<u-picker mode="time" v-model="show" default-time="00:00" :params="params" @confirm="btnyy"></u-picker>
</view>
</view>

View File

@ -3,7 +3,6 @@
<u-navbar title="附近共享" :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff"
title-size='44' height='50'></u-navbar>
<view class="dtxs">
<!-- <map class='map' :latitude="latitude" :longitude="longitude" @markertap="handleMarkerClick" :markers="covers" :show-location="true" :scale="mapScale"/> -->
<map class='map' id="map" :latitude="latitude" :longitude="longitude" @markertap="handleMarkerClick"
:show-location="true" :markers="covers" :scale="mapScale" />
</view>
@ -368,6 +367,7 @@
left: 30rpx;
z-index: 99;
width: 100%;
image {
width: 210rpx;
height: 74rpx !important;

View File

@ -153,10 +153,10 @@
.list {
width: 680rpx;
height: 654rpx;
height: 640rpx;
background: #FFFFFF;
margin-top: 46rpx;
border-radius: 20rpx;
border-radius: 15rpx;
padding: 10rpx 32rpx;
box-sizing: border-box;
overflow: hidden;
@ -187,7 +187,7 @@
vertical-align: middle;
margin-right: 10rpx;
}
margin-top: 20rpx;
width: 100%;
text-align: center;
font-weight: 500;

View File

@ -3,7 +3,7 @@
<u-navbar title="套餐列表" :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff" title-size='36'
height='50'></u-navbar>
<view class="box">
<u-swipe-action :show="item.show" :index="index" v-for="(item, index) in list" :key="index" @click="click(item)" @open="open" :options="options">
<u-swipe-action :show="item.show" :index="index" v-for="(item, index) in list" :key="item.suitId" @click="click(item)" @open="open" :options="options">
<view class="boxlist" @click="btnedit(item)">
<view class="toptime">
<text>{{item.name}}{{item.value}}分钟</text> <text>{{item.price}}</text>
@ -38,7 +38,10 @@
backgroundColor: '#dd524d'
}
}],
deviceId:''
deviceId:'',
bgc: {
backgroundColor: "#8883f0",
},
};
},
onLoad(option) {
@ -65,7 +68,6 @@
},
click(item) {
console.log(item);
this.$u.delete(`/app/suit/${item.suitId}`).then((res) => {
if (res.code == 200) {
this.$u.toast(`删除成功`);
@ -75,7 +77,7 @@
},
open(index) {
// this.list[index].show = true;
this.list[index].show = true
this.list.map((val, idx) => {
if (index != idx) this.list[idx].show = false;
})
@ -97,15 +99,12 @@
padding-bottom: 22rpx;
}
page {
background: linear-gradient(180deg, #8883F0 0%, rgba(255, 255, 255, 0) 100%);
background: #F4F5F7;
}
.page {
width: 750rpx;
position: fixed;
top: 0;
left: 0;
padding-bottom: 400rpx;
.box {
width: 750rpx;
height: 1440rpx;

View File

@ -107,6 +107,7 @@
padding-bottom: 22rpx;
}
page {
background: #F4F5F7;
// background: linear-gradient(180deg, #8883F0 0%, rgba(255, 255, 255, 0) 100%);
}

View File

@ -1,18 +1,22 @@
<template>
<view class="page">
<u-navbar title="地图模式" :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff" title-size='44' height='50'></u-navbar>
<u-navbar title="地图模式" :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff"
title-size='44' height='50'></u-navbar>
<view class="dtxs">
<map class='map' id="map" :latitude="latitude" :longitude="longitude" @markertap="handleMarkerClick"
:show-location="true" :markers="covers" :scale="mapScale" />
</view>
<view class="listbox" v-if="falga">
<view class="moshi">
<image src="https://api.ccttiot.com/smartmeter/img/static/udwYRUCox5uxQ8nHfvST" mode="" @click="btndt(1)"></image>
<image src="https://api.ccttiot.com/smartmeter/img/static/u7yxUJZqgPzESeI4tmiz" mode="" @click="btndt(2)" v-if="isMch"></image>
<image src="https://api.ccttiot.com/smartmeter/img/static/uqv3e5ThWL8DqrRNBfoA" mode=""
@click="btndt(1)"></image>
<image src="https://api.ccttiot.com/smartmeter/img/static/u7yxUJZqgPzESeI4tmiz" mode=""
@click="btndt(2)" v-if="isMch"></image>
</view>
<view class="saoyisao">
<view @click="scanQRCode">
<image src="https://api.ccttiot.com/smartmeter/img/static/uBh15vzRx6gV0wRQj7gi" mode=""></image><text>扫一扫</text>
<image src="https://api.ccttiot.com/smartmeter/img/static/uBh15vzRx6gV0wRQj7gi" mode=""></image>
<text>扫一扫</text>
</view>
</view>
</view>
@ -27,10 +31,12 @@
{{listobj.name}}
</view>
<view class="cenb">
<image src="https://api.ccttiot.com/smartmeter/img/static/uHK2aJHvzEm3nbOPwpdr" mode=""></image> {{listobj.address}}
<image src="https://api.ccttiot.com/smartmeter/img/static/uHK2aJHvzEm3nbOPwpdr" mode=""></image>
{{listobj.address}}
</view>
<view class="cenc">
共享时间{{listobj.businessTimeStart}}-{{listobj.businessTimeEnd}} <text class="bu">{{listobj.availableDeviceCount}}台可共享</text>
共享时间{{listobj.businessTimeStart}}-{{listobj.businessTimeEnd}} <text
class="bu">{{listobj.availableDeviceCount}}台可共享</text>
</view>
</view>
</view>
@ -44,10 +50,12 @@
</view>
<view class="anniu">
<view class="" @click="mapFun">
<image style="height: 39rpx;width: 38rpx;" class="picsm" src="https://api.ccttiot.com/smartmeter/img/static/u9Z7DXlWfjJtIrq5OEty" mode=""></image> 到这去
<image style="height: 41rpx;width: 38rpx;" class="picsm"
src="https://api.ccttiot.com/smartmeter/img/static/u9Z7DXlWfjJtIrq5OEty" mode=""></image> 到这去
</view>
<view class="" style="color: #fff;background-color: #8883F0;" @click="scanQRCode">
<image class="picsm" src="https://api.ccttiot.com/smartmeter/img/static/uvrsmSxGunHTI9S51ujn" mode=""></image> 扫一扫
<image class="picsm" src="https://api.ccttiot.com/smartmeter/img/static/uvrsmSxGunHTI9S51ujn"
mode=""></image> 扫一扫
</view>
</view>
</view>
@ -111,9 +119,8 @@
},
fail: (error) => {
console.error('获取地图缩放级别失败:', error);
// ...
},
});
})
},
addMarkersWithoutLabels() {
this.listmap.forEach((item) => {
@ -157,12 +164,11 @@
if (charCode >= 0x4e00 && charCode <= 0x9fa5) {
chineseLength++;
} else if (/[a-zA-Z]/.test(name[i])) { //
englishLength = englishLength+0.3; // 1
// console.log(englishLength);
englishLength = englishLength + 0.3; // 0.3
}
}
const totalLength = chineseLength + englishLength * 2; //
return -totalLength * 6.5; // anchorX -7
return -totalLength * 6.5; // anchorX -6.5
},
scanQRCode() {
@ -234,12 +240,12 @@
uni.getLocation({
type: 'wgs84',
success: (res) => {
// console.log('', res);
this.jinweidu = res.longitude + ',' + res.latitude
this.latitude = Number(res.latitude.toFixed(5)) - 0.005
this.longitude = Number(res.longitude.toFixed(5)) + 0.005
//
this.$u.get("/app/store/listNearBy?center=" + this.jinweidu + '&radius=' + 1000).then(res => {
this.$u.get("/app/store/listNearBy?center=" + this.jinweidu + '&radius=' + 1000).then(
res => {
if (res.code == 200) {
this.listmap = res.data
// res.rowslatitudelongitude
@ -327,15 +333,17 @@
/deep/ .u-title {
padding-bottom: 22rpx;
}
/deep/ .u-icon__icon {
padding-bottom: 22rpx;
}
/deep/ .map {
width: 100%;
height: 100%;
}
page {
// background-color: ;
background: linear-gradient(180deg, #D9D8FF 0%, rgba(255, 255, 255, 0) 100%);
border-radius: 0rpx 0rpx 0rpx 0rpx;
}
@ -345,6 +353,7 @@
position: fixed;
top: 0;
left: 0;
.list_item {
position: fixed;
bottom: 84rpx;
@ -358,6 +367,7 @@
margin: auto;
padding: 46rpx 40rpx;
box-sizing: border-box;
.chakan {
display: flex;
justify-content: space-between;
@ -368,39 +378,41 @@
box-sizing: border-box;
background: #D9D8FF;
border-radius: 8rpx 8rpx 8rpx 8rpx;
// opacity: 0.5;
margin-top: 10rpx;
view {
font-size: 28rpx;
color: #8883F0;
}
}
.anniu {
display: flex;
justify-content: space-between;
margin-top: 20rpx;
view {
width: 300rpx;
height: 82rpx;
line-height: 82rpx;
line-height: 80rpx;
border-radius: 45rpx 45rpx 45rpx 45rpx;
border: 2rpx solid #8883F0;
text-align: center;
font-weight: 500;
font-size: 36rpx;
color: #8883F0;;
color: #8883F0;
;
}
}
.list {
display: flex;
// margin-top: 44rpx;
padding-bottom: 16rpx;
.pic {
width: 150rpx;
height: 150rpx;
// background-color: #D9D8FF;
border-radius: 20rpx;
// margin-right: 28rpx;
image {
width: 150rpx;
height: 150rpx;
@ -409,21 +421,24 @@
border-radius: 20rpx;
}
}
.cen {
// margin-right: 140rpx;
margin-left: 20rpx;
.cena {
font-weight: 500;
font-size: 30rpx;
color: #3D3D3D;
line-height: 38rpx;
}
.cenb {
font-weight: 400;
font-size: 24rpx;
color: #3D3D3D;
line-height: 32rpx;
margin-top: 14rpx;
image {
display: inline-block;
width: 22rpx;
@ -431,19 +446,21 @@
margin-right: 6rpx;
}
}
.cenc {
font-weight: 400;
font-size: 24rpx;
color: #3D3D3D;
line-height: 32rpx;
margin-top: 14rpx;
text {
display: inline-block;
padding: 4rpx 18rpx;
box-sizing: border-box;
// border: 1px solid #ccc;
border-radius: 20rpx;
}
.bu {
margin-left: 32rpx;
background: #D9D8FF;
@ -451,12 +468,15 @@
}
}
}
.right {
padding-top: 40rpx;
image {
width: 40rpx;
height: 40rpx;
}
text {
display: block;
font-weight: 400;
@ -467,6 +487,7 @@
}
}
}
.picsm {
width: 48rpx;
height: 48rpx;
@ -475,6 +496,7 @@
margin-bottom: 10rpx;
margin-right: 10rpx;
}
.dtxs {
width: 100%;
height: 100vh;
@ -483,6 +505,7 @@
left: 0;
z-index: -1;
}
.listbox {
background: #FFFFFF;
border-radius: 64rpx 64rpx 0 0;
@ -493,8 +516,10 @@
position: fixed;
bottom: 0;
left: 0;
.saoyisao {
margin-top: 44rpx;
view {
border-radius: 54rpx 54rpx 54rpx 54rpx;
text-align: center;
@ -503,6 +528,7 @@
background: linear-gradient(90deg, #8883F0 0%, #837EEB 100%);
line-height: 102rpx;
margin: auto;
image {
width: 56rpx;
height: 56rpx;
@ -511,6 +537,7 @@
margin-bottom: 12rpx;
margin-right: 10rpx;
}
text {
font-weight: 500;
font-size: 40rpx;
@ -518,16 +545,19 @@
}
}
}
.moshi {
position: fixed;
bottom: 210rpx;
left: 30rpx;
z-index: 99;
image {
width: 210rpx;
height: 74rpx;
}
}
.title {
border-radius: 64rpx 64rpx 0 0;
display: flex;
@ -548,6 +578,7 @@
}
}
.active {
border-bottom: 10rpx solid #D9D8FF;
border-radius: 7rpx;

View File

@ -20,10 +20,10 @@
</view>
<view class="mid_right">
<view class="mid_top">
{{ deviceInfo.deviceName }}
{{ deviceInfo.deviceName == null ? '' : deviceInfo.deviceName }}
</view>
<view class="mid_bot">
<view class="txt" v-if="deviceInfo">S/N码{{ deviceInfo.deviceNo }}</view>
<view class="txt" v-if="deviceInfo">S/N码{{ deviceInfo.deviceNo == null ? '' : deviceInfo.deviceNo }}</view>
<div class="tip" v-if="deviceInfo.onlineStatus==1">在线</div>
<div class="tip" v-if="deviceInfo.onlineStatus==0">离线</div>
<div class="tip" v-if="deviceInfo.powerStatus==0">断电</div>
@ -59,7 +59,7 @@
</view>
<view class="cont" style="text-align: center;">
<view class="tit">
{{timeday}}
{{timeday == null ? 0 : timeday}}
</view>
<view class="txt">
剩余分钟
@ -72,15 +72,15 @@
<view class="tit">实时</view>
<view class="cont_box">
<view class="cont">
<view class="top">{{deviceInfo.realTimePower}}KW</view>
<view class="top">{{deviceInfo.realTimePower == null ? '' : deviceInfo.realTimePower}}KW</view>
<view class="bot">实时功率</view>
</view>
<view class="cont" style="width: 70rpx;">
<view class="top">{{deviceInfo.electricity}}A</view>
<view class="top">{{deviceInfo.electricity == null ? '' : deviceInfo.electricity}}A</view>
<view class="bot">电流</view>
</view>
<view class="cont" style="width: 110rpx;">
<view class="top">{{deviceInfo.voltage}}V</view>
<view class="top">{{deviceInfo.voltage == null ? '' : deviceInfo.voltage}}V</view>
<view class="bot">电压</view>
</view>
@ -166,7 +166,6 @@
return {
bgc: {
backgroundColor: "#8883f0",
},
ec: {
lazyLoad: true
@ -558,9 +557,9 @@
}
}
})
} else if (res.code == 500) {
} else if (res.msg == '设备编号和mac不能同时为空') {
uni.showToast({
title: '该设备已被绑定',
title: '设备不在线,未找到设备',
icon: 'none',
duration: 2000
});

View File

@ -20,11 +20,10 @@
</view>
</view>
<view class="" style="width: 448rpx;height: 448rpx;margin: auto;margin-top: 100rpx;text-align: center;"
v-if="showflag">
<image style="width: 448rpx;height: 448rpx;"
<view class="" v-if="showflag" style="width: 100%;height: 200rpx;margin: auto;margin-top: 170rpx;text-align: center;">
<image style="width: 200rpx;height: 200rpx;"
src="https://api.ccttiot.com/smartmeter/img/static/uZFUpcz0YZZ4f4RjvGg2" mode=""></image>
<view class="" style="font-size: 30rpx;color: #ccc;margin-top: 30rpx;">暂无更多收支记录...</view>
<view class="" style="font-size: 28rpx;color: #808080;margin-top: 30rpx;">暂无更多收支记录...</view>
</view>
</view>

View File

@ -1,5 +1,8 @@
<template>
<view class="container" style="margin-top: 100rpx;">
<view class="">
<u-navbar title="WIFI连接" :border-bottom="false" :background="bgc" title-color='#fff' back-icon-color="#fff" title-size='36'
height='50'></u-navbar>
<view class="container">
<view class="device">
<span class="device-list-title">WIFI连接</span>
</view>
@ -29,6 +32,8 @@
</uni-section>
</view>
</view>
</view>
</template>
<script>
@ -44,6 +49,9 @@ export default {
objlist: '',
statusflag: false,
status: 'loading',
bgc: {
backgroundColor: "#8883f0",
},
}
},
@ -100,8 +108,7 @@ export default {
funListenDeviceMsgEvent: function(options) {
let that = this;
switch (options.type) {
case xBlufi.XBLUFI_TYPE.TYPE_STATUS_CONNECTED:
{
case xBlufi.XBLUFI_TYPE.TYPE_STATUS_CONNECTED: {
console.log('状态', options.result)
uni.showModal({
title: '很抱歉提醒你!',
@ -135,7 +142,6 @@ export default {
uni.hideLoading();
uni.showModal({
title: '温馨提示',
// content: `${options.data.ssid}`,
content: `连接成功`,
showCancel: false,
success: function(res) {
@ -214,7 +220,6 @@ export default {
</script>
<style lang="less">
.containers {
width: 100%;
height: 100vh;
@ -228,8 +233,8 @@ export default {
.pwd,
.name {
text {
color: rgba(189, 188, 188, 1);
font-size: 12px;
color: #3D3D3D;
font-size: 32rpx;
margin-top: 30rpx;
display: block;
line-height: 30rpx;
@ -254,10 +259,10 @@ export default {
}
.device-list-title {
color: #999;
color: #50565a;
font-size: 96rpx;
font-family: SourceHanSansCN;
margin-top: 100rpx;
// margin-top: 100rpx;
}
.text_3 {

View File

@ -22,7 +22,7 @@
</view>
<view class="fd">
<view class="fd_top">
<view class="fd_da">
<view class="fd_da" @touchstart="touchStart" @touchmove="touchMove" @touchend="touchEnd">
<view class="fd_lt" :style="{ transform: `translateX(${-curtitidx * 100 }rpx)`}">
<view class="fd_tit" v-for="(item,index) in groupLists" :key="index"
:class="index==curtitidx?'act1':''" @click="changeidx(index)">
@ -69,15 +69,20 @@
</view>
</view>
<swiper class="swiper" style="height: 100%;margin-top: 20rpx;" :current='curtitidx' @change="swiperchange" @scrolltolower="onReachBottom">
<swiper class="swiper" style="height: 100%;margin-top: 20rpx;" :current='curtitidx' @change="swiperchange"
@scrolltolower="onReachBottom">
<swiper-item v-for="(item,index) in groupLists" :key="index">
<view style="width: 100%;padding-top: 300rpx;text-align: center;font-size: 32rpx;font-weight: 400;color: #808080;" class="" v-if="shujuflag">
<image style="width: 432rpx;height: 432rpx;display: block;padding-left: 100rpx;margin-bottom: 30rpx;" src="https://api.ccttiot.com/smartmeter/img/static/unju6N2PoHUv2pyLegfV" mode=""></image>
该店铺暂无设备...
<view class="" v-if="shujuflag"
style="width: 100%;height: 200rpx;margin: auto;margin-top: 230rpx;text-align: center;">
<image style="width: 200rpx;height: 200rpx;"
src="https://api.ccttiot.com/smartmeter/img/static/uZFUpcz0YZZ4f4RjvGg2" mode=""></image>
<view class="" style="font-size: 28rpx;color: #808080;margin-top: 30rpx;">该店铺暂无设备...</view>
</view>
<view class="swiper-item ">
<view class="card_box" @click="todetail(item.deviceId)"
v-for="(item,index) in wateringList" :key="index">
<view class="card_box" @click="todetail(item.deviceId)" v-for="(item,index) in wateringList"
:key="index">
<view class="card">
<view class="card_left">
<view class="card_left_tit">
@ -101,7 +106,8 @@
</view>
</view>
<view class="card_right">
<image v-if="item.customPicture" :src="item.customPicture" mode="" style="border-radius: 20rpx;"></image>
<image v-if="item.customPicture" :src="item.customPicture" mode=""
style="border-radius: 20rpx;"></image>
<image v-else :src="item.picture" mode=""></image>
</view>
</view>
@ -190,7 +196,6 @@
noMoreData: false,
total: 0,
shujuflag: false,
}
},
onLoad() {
@ -244,12 +249,6 @@
},
methods: {
tocz() {
this.showtip = false
uni.navigateTo({
@ -776,9 +775,11 @@
/deep/ .u-title {
padding-bottom: 22rpx;
}
/deep/ .u-icon__icon {
padding-bottom: 22rpx;
}
page {
background-color: #F7FAFE;
height: 100%;
@ -1250,10 +1251,7 @@
flex-wrap: nowrap;
// justify-content: space-between;
align-items: center;
// position: fixed;
// top: 220rpx;
// left: 50%;
// transform: translateX(-50%);
.fd_da {
width: 600rpx;
// overflow-x: scroll;
@ -1263,23 +1261,22 @@
-ms-overflow-style: none;
/* 去除IE和Edge的默认滚动条 */
scrollbar-width: none;
/* 去除Firefox的默认滚动条 */
&::-webkit-scrollbar {
display: none;
}
.fd_lt {
width: 100vh;
// width: 100vh;
display: flex;
transition: transform 0.3s ease;
.fd_tit {
// width: 40%;
text-align: center;
// width: 100%;
padding: 0 10rpx;
padding: 0 15rpx;
box-sizing: border-box;
// margin-right: 20rpx;
font-size: 36rpx;
font-size: 34rpx;
font-weight: 400;
color: #666;
@ -1288,6 +1285,7 @@
}
.act1 {
font-size: 36rpx !important;
font-weight: 700 !important;
color: #000000 !important;
}
@ -1316,6 +1314,7 @@
}
}
.shebei {
width: 750rpx;
height: 100vh;
@ -1329,11 +1328,13 @@
}
.swiper {
// height: 100vh;
.swiper-item {
height: 100vh;
overflow-y: auto;
padding-bottom: 660rpx;
.card_box {
margin-top: 34rpx;
display: flex;

View File

@ -8,15 +8,12 @@
<view class="fdpage" style="padding-bottom: 200rpx;">
<view class="top_box">
<view class="userinfo">
<!-- <view class="img">
<image src="https://api.ccttiot.com/smartmeter/img/static/uGvS4RQvbw7OOfhzy6xf" mode=""></image>
</view> -->
<view class="info">
<view class="username">
{{userinfo.nickName}}
{{userinfo.nickName == null ? '' : userinfo.nickName}}
</view>
<view class="num">
{{userinfo.storeCount}}间店铺
{{userinfo.storeCount == null ? '' : userinfo.storeCount}}间店铺
</view>
</view>
</view>
@ -29,7 +26,7 @@
<view class="txt" style="font-size: 24rpx;">
</view>
{{userinfo.balance}}
{{userinfo.balance == null ? '' : userinfo.balance}}
</view>
<view class="bot">
钱包余额

View File

@ -305,7 +305,7 @@
const timer = setTimeout(() => {
clearTimeout(timer);
}, 500);
},
}
})
},
@ -481,21 +481,16 @@
.dateactive {
background: #E1F3ED;
}
page {
// background-color: ;
background: linear-gradient(180deg, #8883F0 10%, rgba(255, 255, 255, 0) 100%);
border-radius: 0rpx 0rpx 0rpx 0rpx;
}
.page {
width: 750rpx;
padding-left: 34rpx;
padding-right: 34rpx;
box-sizing: border-box;
height: 100%;
//
.tip_box {
position: fixed;
left: 72rpx;
@ -802,8 +797,6 @@
justify-content: space-between;
padding: 30rpx 50rpx;
box-sizing: border-box;
// padding-top: 20rpx;
// padding-bottom: 24rpx;
.gr {
text-align: center;