1504 lines
30 KiB
Vue
1504 lines
30 KiB
Vue
<template>
|
|
<view class="content contentBg">
|
|
<custom-navbar :title="Status.navTitle" :showBack="true" color="#FFFFFF"
|
|
:rightIcon="Status.isRightIconVisible ? '/static/images/common/shape.png' : ''"
|
|
@right-click="gotoShare"></custom-navbar>
|
|
<view :style="{ paddingTop: Status.navBarHeight + 'px' }">
|
|
<view class="eq">
|
|
<view class="leftImg" @click.stop="previewImg(device.devicePic ? device.devicePic : formData.img)">
|
|
<image class="img" :src="device.devicePic ? device.devicePic : formData.img" mode="aspectFit">
|
|
</image>
|
|
</view>
|
|
<view class="rightTxt">
|
|
<view class="row">
|
|
<image class="img" src="/static/images/6155/DeviceDetail/battry.png" mode="aspectFit"></image>
|
|
<view class="txt">
|
|
<view class="bigTxt">{{ formData.sta_battery }}%</view>
|
|
<view class="smallTxt">电量</view>
|
|
</view>
|
|
</view>
|
|
<view class="row">
|
|
<image class="img" src="/static/images/6155/DeviceDetail/time.png" mode="aspectFit"></image>
|
|
<view class="txt">
|
|
<view class="bigTxt">{{ formData.sta_system ? dic.sta_system[formData.sta_system] : "" }}
|
|
</view>
|
|
<view class="smallTxt">设备状态</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="eqinfo">
|
|
<view class="item">
|
|
<text class="lbl">设备名称</text>
|
|
<text class="value">{{ device.deviceName }}</text>
|
|
</view>
|
|
<view class="item">
|
|
<text class="lbl">IMEI</text>
|
|
<text class="value">{{ device.deviceImei }}</text>
|
|
</view>
|
|
<view class="item">
|
|
<text class="lbl">设备状态</text>
|
|
<text class="value">{{ formData.sta_system ? dic.sta_system[formData.sta_system] : "" }}</text>
|
|
</view>
|
|
<view class="item">
|
|
<text class="lbl">定位信息</text>
|
|
<text class="value">{{ device.deviceMac }}</text>
|
|
</view>
|
|
</view>
|
|
<view class="lampMode">
|
|
<view class="sosContent">
|
|
<view class="btnSos openSos center" :class="{ active: formData.sta_SOSType === 1 }"
|
|
@click="sosSetting(1)">
|
|
{{ formData.sta_SOSType === 1 ? '报警中' : '强制报警' }}
|
|
</view>
|
|
<view class="btnSos closeSos center" @click="sosSetting(0)">解除</view>
|
|
</view>
|
|
</view>
|
|
<view class="warn">
|
|
<view class="header" @click="setUsrToggle()">
|
|
<text>
|
|
报警模式
|
|
</text>
|
|
<uni-icons color="#ffffffde" size="20" :type="Status.usrToggle ? 'up' : 'down'">
|
|
</uni-icons>
|
|
</view>
|
|
<view class="warnBody">
|
|
<view class="modeSetting">
|
|
<view class="arrow" @click.stop="openVolume(item, index)" v-if="item.show"
|
|
v-for="item, index in dic.sta_VoiceType" :class="{
|
|
'active': formData.sta_VoiceType === item.key,
|
|
'displayNone': !Status.usrToggle && index > 3
|
|
}">
|
|
<view class="outCircle">
|
|
<view class="item">
|
|
<view class="text">{{ item.name }}</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="lamp">
|
|
<view class="title">
|
|
<text>语音播报</text>
|
|
</view>
|
|
</view>
|
|
<view class="lampMode">
|
|
<view class="mode fleft " v-on:click.stop="openVolume(null, '8')"
|
|
:class="{ 'active': formData.sta_VoiceType === '8' }">
|
|
<view class="leftImg">
|
|
<image class="img" :class="{ 'displayNone': formData.sta_VoiceType === '8' }"
|
|
src="/static/images/common/play.png" mode="aspectFit"></image>
|
|
<image class="img" :class="{ 'displayNone': formData.sta_VoiceType !== '8' }"
|
|
src="/static/images/common/pauseActive.png" mode="aspectFit"></image>
|
|
</view>
|
|
<view class="rightTxt">
|
|
<text class="bigTxt">播放语音</text>
|
|
</view>
|
|
</view>
|
|
|
|
<view class="mode fleft marginLeft" v-on:click.stop="audioManager()">
|
|
<view class="leftImg">
|
|
<image class="img" src="/static/images/common/uploadCloud.png" mode="aspectFit"></image>
|
|
</view>
|
|
<view class="rightTxt">
|
|
<text class="bigTxt">语音管理</text>
|
|
</view>
|
|
</view>
|
|
<view class="clear"></view>
|
|
</view>
|
|
<view class="lamp">
|
|
<view class="title">
|
|
<text>警示灯</text>
|
|
</view>
|
|
</view>
|
|
<view class="lampMode">
|
|
<view class="mode fleft " v-for="item, index in dic.sta_LightType" :class="{
|
|
'active': formData.sta_LightType === item.key,
|
|
'marginLeft': index % 2 === 1,
|
|
'displayNone': !item.show
|
|
}" v-on:click.stop="lightTypeSet(item, index)">
|
|
<view class="leftImg">
|
|
<image class="img" :class="{ 'displayNone': formData.sta_LightType === item.key }"
|
|
src="/static/images/100/light.png" mode="aspectFit"></image>
|
|
<image class="img" :class="{ 'displayNone': formData.sta_LightType !== item.key }"
|
|
src="/static/images/100/lightActive.png" mode="aspectFit"></image>
|
|
</view>
|
|
<view class="rightTxt">
|
|
<text class="bigTxt">{{ item.name }}</text>
|
|
</view>
|
|
</view>
|
|
<view class="clear"></view>
|
|
</view>
|
|
<view class="warn" style="padding-bottom: 20rpx;">
|
|
<view class="header">
|
|
<text>调节</text>
|
|
</view>
|
|
<view class="header paddingTop0">
|
|
<text class="sliderTxt">亮度</text>
|
|
<text class="sliderVal">{{ formData.sta_LightDimmer }}%</text>
|
|
</view>
|
|
<view class="slider-container">
|
|
<slider min="10" max="100" step="10" :disabled="false" :value="formData.sta_LightDimmer"
|
|
activeColor="#bbe600" backgroundColor="#686767" block-size="20" block-color="#ffffffde"
|
|
@change="onBrightnessChanging" @changing="onBrightnessChanging" class="custom-slider" />
|
|
</view>
|
|
<view class="line"></view>
|
|
<view class="header paddingTop0">
|
|
<text class="sliderTxt">频率</text>
|
|
<text class="sliderVal">{{ formData.sta_LightFreq }}HZ</text>
|
|
</view>
|
|
|
|
<view class="slider-container">
|
|
<slider min="0.5" max="10" step="0.5" :disabled="false" :value="formData.sta_LightFreq"
|
|
activeColor="#bbe600" backgroundColor="#686767" block-size="20" block-color="#ffffffde"
|
|
@change="onFreqChanging" @changing="onFreqChanging" class="custom-slider" />
|
|
|
|
</view>
|
|
<view class="line"></view>
|
|
<view class="header paddingTop0">
|
|
<text class="sliderTxt">音量</text>
|
|
<text class="sliderVal">{{ formData.sta_VoiceVolume }}</text>
|
|
</view>
|
|
|
|
<view class="slider-container">
|
|
<slider min="1" max="8" step="1" :disabled="false" :value="formData.sta_VoiceVolume"
|
|
activeColor="#bbe600" backgroundColor="#686767" block-size="20" block-color="#ffffffde"
|
|
@change="onVolumeChanging" @changing="onVolumeChanging" class="custom-slider" />
|
|
</view>
|
|
|
|
|
|
|
|
<view class="proinfo lamp">
|
|
<text class="title">产品信息</text>
|
|
<view class="itemcontent">
|
|
<view class="item" @click="proParam()">
|
|
<image class="img" src="/static/images/6155/DeviceDetail/param.png" mode="aspectFit">
|
|
</image>
|
|
<text class="txt">产品参数</text>
|
|
</view>
|
|
<view class="item" @click="handRemark()">
|
|
<image class="img" src="/static/images/6155/DeviceDetail/remark.png" mode="aspectFit">
|
|
</image>
|
|
<text class="txt">操作说明</text>
|
|
</view>
|
|
<view class="item" @click="handVideo()">
|
|
<image class="img" src="/static/images/6155/DeviceDetail/video.png" mode="aspectFit">
|
|
</image>
|
|
<text class="txt">操作视频</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
<!-- 弹窗通知 -->
|
|
<MessagePopup :visible="Status.Pop.showPop" :type="Status.Pop.popType" :bgColor="Status.Pop.bgColor"
|
|
:borderColor="Status.Pop.borderColor" :textColor="Status.Pop.textColor"
|
|
:buttonBgColor="Status.Pop.buttonBgColor" :buttonTextColor="Status.Pop.buttonTextColor"
|
|
:iconUrl="Status.Pop.iconUrl" :message="Status.Pop.message" :buttonText="Status.Pop.buttonText"
|
|
@buttonClick="HidePop" :visiblePrompt="Status.Pop.visiblePrompt"
|
|
:promptTitle="Status.Pop.promptTitle" v-model="Status.Pop.modelValue"
|
|
:buttonCancelText="Status.Pop.buttonCancelText" :showCancel="Status.Pop.showCancel"
|
|
@cancelPop="closePop" />
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import gbk from '@/utils/gbk.js'
|
|
import {
|
|
showLoading,
|
|
hideLoading,
|
|
updateLoading
|
|
} from '@/utils/loading.js'
|
|
import request, {
|
|
baseURL
|
|
} from '@/utils/request.js';
|
|
var these = null;
|
|
import Common from '@/utils/Common.js'
|
|
const pagePath = "/pages/100/HBY100";
|
|
export default {
|
|
data() {
|
|
return {
|
|
Status: {
|
|
isRightIconVisible: false,
|
|
navTitle: '',
|
|
apiType: '',
|
|
navBarHeight: 70 + uni.getSystemInfoSync().statusBarHeight,
|
|
curr: 0,
|
|
total: 0,
|
|
pageHide: false,
|
|
Pop: {
|
|
showPop: false, //是否显示弹窗
|
|
popType: 'custom',
|
|
bgColor: '#383934bd',
|
|
borderColor: '#BBE600',
|
|
textColor: '#ffffffde',
|
|
buttonBgColor: '#BBE600',
|
|
buttonTextColor: '#232323DE',
|
|
iconUrl: '',
|
|
message: '您确定要这样做吗?',
|
|
buttonText: '确定',
|
|
clickEvt: '',
|
|
visiblePrompt: false,
|
|
promptTitle: '设备名称',
|
|
modelValue: '',
|
|
visibleClose: false,
|
|
okCallback: null,
|
|
buttonCancelText: '',
|
|
showCancel: false,
|
|
},
|
|
BottomMenu: {
|
|
show: false,
|
|
showHeader: true,
|
|
menuItems: [{
|
|
text: '强光',
|
|
icon: '/static/images/6155/DeviceDetail/qiang.png'
|
|
}],
|
|
activeIndex: -1,
|
|
bgColor: '#2a2a2a',
|
|
itemBgColor: '#3a3a3a',
|
|
textColor: '#ffffffde',
|
|
textAlign: 'flex-start',
|
|
title: '主灯模式',
|
|
showDivider: false,
|
|
dividerColor: '#00000000',
|
|
dividerThickness: '0rpx',
|
|
dividerMargin: '10rpx',
|
|
itemHeight: '80rpx',
|
|
type: '',
|
|
showBtn: true,
|
|
btnBgColor: "#bbe600",
|
|
btnText: "确定",
|
|
btnTextColor: "#232323de",
|
|
showMask: true,
|
|
maskBgColor: '#00000066',
|
|
showClose: false
|
|
},
|
|
usrToggle: false,
|
|
},
|
|
formData: {
|
|
img: '/static/images/common/HBY100J.png',
|
|
sta_battery: '',
|
|
xuhang: '',
|
|
blename: '',
|
|
deviceId: '',
|
|
deviceName: '',
|
|
RSSI: '',
|
|
statu: '',
|
|
macAddress: '',
|
|
bleStatu: false,
|
|
sta_address: '',
|
|
sta_VoiceType: '',
|
|
sta_VoiceVolume: 1,
|
|
sta_LightType: '',
|
|
sta_LightFreq: 0.5,
|
|
sta_LightDimmer: 10,
|
|
sta_system: '',
|
|
warnTime: 0,
|
|
sta_SOSType: 0
|
|
},
|
|
dic: {
|
|
sta_VoiceType: {
|
|
"1": {
|
|
key: "1",
|
|
name: '消防',
|
|
show: true
|
|
},
|
|
"2": {
|
|
key: "2",
|
|
name: '公安',
|
|
show: true
|
|
},
|
|
"3": {
|
|
key: "3",
|
|
name: '交警',
|
|
show: true
|
|
},
|
|
"4": {
|
|
key: "4",
|
|
name: '市政',
|
|
show: true
|
|
},
|
|
"5": {
|
|
key: "5",
|
|
name: '应急',
|
|
show: true
|
|
},
|
|
"6": {
|
|
key: "6",
|
|
name: '医疗',
|
|
show: true
|
|
},
|
|
"7": {
|
|
key: "7",
|
|
name: '铁道',
|
|
show: true
|
|
},
|
|
"8": {
|
|
key: "8",
|
|
name: 'app语音',
|
|
show: false
|
|
},
|
|
"0": {
|
|
key: "0",
|
|
name: '关闭',
|
|
show: false
|
|
}
|
|
},
|
|
|
|
sta_LightType: [{
|
|
key: "1",
|
|
name: '红蓝',
|
|
show: true
|
|
},
|
|
{
|
|
key: "2",
|
|
name: '红闪',
|
|
show: true
|
|
},
|
|
{
|
|
key: "3",
|
|
name: '黄闪',
|
|
show: true
|
|
},
|
|
{
|
|
key: "4",
|
|
name: '蓝闪',
|
|
show: true
|
|
},
|
|
{
|
|
key: "5",
|
|
name: '红流水',
|
|
show: true
|
|
},
|
|
{
|
|
key: "6",
|
|
name: '黄流水',
|
|
show: true
|
|
},
|
|
{
|
|
key: "7",
|
|
name: '蓝流水',
|
|
show: true
|
|
},
|
|
{
|
|
key: "0",
|
|
name: '关闭',
|
|
show: false
|
|
}
|
|
],
|
|
|
|
|
|
sta_system: {
|
|
"0": '关机',
|
|
"1": '仅充电',
|
|
"2": '开机未充电',
|
|
"3": '开机且充电',
|
|
"": ""
|
|
}
|
|
|
|
},
|
|
device: {
|
|
id: "",
|
|
deviceName: "",
|
|
deviceImei: "",
|
|
deviceMac: "",
|
|
communicationMode: 0,
|
|
devicePic: "",
|
|
typeName: "",
|
|
bluetoothName: null,
|
|
deviceStatus: null,
|
|
bindingTime: "",
|
|
onlineStatus: 0,
|
|
battery: "0",
|
|
latitude: null,
|
|
longitude: null,
|
|
alarmStatus: null,
|
|
detailPageUrl: "/pages/650/HBY650",
|
|
showConfirm: false
|
|
},
|
|
permissions: [],
|
|
audioData: {
|
|
packetCtn: 0,
|
|
hexs: []
|
|
}
|
|
}
|
|
},
|
|
|
|
onUnload() { },
|
|
onLoad: function () {
|
|
const eventChannel = this.getOpenerEventChannel();
|
|
var these = this;
|
|
eventChannel.on('detailData', function (data) {
|
|
console.log("收到父页面的参数:" + data);
|
|
var device = data.data;
|
|
these.device = device;
|
|
these.Status.navTitle = data.data.deviceName;
|
|
these.Status.apiType = data.apiType;
|
|
these.Status.isRightIconVisible = these.Status.apiType === 'listA';
|
|
if (data.apiType !== 'listA') {
|
|
Common.getdeviceShareId(data.data.id).then(res => {
|
|
if (res.code == 200) {
|
|
if (res.data.permission) {
|
|
these.permissions = res.data.permission.split(',');
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
});
|
|
|
|
},
|
|
onHide: function () {
|
|
this.Status.pageHide = true;
|
|
},
|
|
onShow() {
|
|
this.Status.pageHide = false;
|
|
},
|
|
computed: {
|
|
|
|
},
|
|
methods: {
|
|
handleRightClick(item, s) {
|
|
if (item && item.callback) {
|
|
item.callback(item, s);
|
|
}
|
|
},
|
|
navigatorBack() {
|
|
uni.navigateBack();
|
|
},
|
|
|
|
gotoShare(item, s) {
|
|
uni.navigateTo({
|
|
url: '/pages/common/share/index',
|
|
events: {
|
|
ack: function (data) { }
|
|
},
|
|
success: (res) => {
|
|
let json = {
|
|
persissonType: '670'
|
|
};
|
|
|
|
res.eventChannel.emit('share', {
|
|
data: json
|
|
});
|
|
}
|
|
})
|
|
},
|
|
audioManager() {
|
|
if (this.Status.apiType !== 'listA') { }
|
|
uni.navigateTo({
|
|
url: '/pages/common/audioManager/AudioList',
|
|
events: {
|
|
audioApply: function (id) {
|
|
//应用某个语音时,将数据发送给设备
|
|
console.log("准备发送数据", id);
|
|
showLoading(these, {
|
|
text: '准备发送数据'
|
|
});
|
|
these.audioData.hexs = uni.getStorageSync(Common.pcmStorageKey + "_" + id);
|
|
console.log("hexs.length=", these.audioData.hexs.length)
|
|
these.HoldYouHand();
|
|
}
|
|
},
|
|
});
|
|
},
|
|
//频率
|
|
onFreqChanging(e) {
|
|
this.formData.sta_LightFreq = e.detail.value;
|
|
},
|
|
//音量
|
|
onVolumeChanging(e) {
|
|
this.formData.sta_VoiceVolume = e.detail.value;
|
|
},
|
|
// 亮度调节
|
|
onBrightnessChanging(e) {
|
|
this.formData.sta_LightDimmer = e.detail.value;
|
|
},
|
|
lightTypeSet(item, index) {
|
|
this.formData.sta_LightType = item.key;
|
|
},
|
|
// 报警模式
|
|
setUsrToggle() {
|
|
this.Status.usrToggle = !this.Status.usrToggle;
|
|
},
|
|
// 播放语音
|
|
openVolume(item, index) {
|
|
if (item) {
|
|
console.log(item.key, 'keyyy');
|
|
this.formData.sta_VoiceType = item.key;
|
|
} else if (index === '8') { // 点击“播放语音”的场景
|
|
this.formData.sta_VoiceType = '8';
|
|
|
|
}
|
|
},
|
|
// 报警模式
|
|
sosSetting(item) {
|
|
const isClose = item === 0;
|
|
if (!this.Status) this.Status = {};
|
|
if (!this.Status.Pop) this.Status.Pop = { showPop: false };
|
|
//弹窗配置
|
|
this.Status.Pop = {
|
|
...this.Status.Pop,
|
|
showPop: true,
|
|
message: isClose ? '确定解除声光报警模式?' : '确定开启强制报警?',
|
|
buttonText: isClose ? '解除' : '开启',
|
|
borderColor: "#e034344d",
|
|
buttonBgColor: "#E03434",
|
|
showCancel: true,
|
|
buttonCancelText: '取消',
|
|
okCallback: () => {
|
|
this.formData.sta_SOSType = item;
|
|
uni.showToast({
|
|
title: isClose ? '声光报警已解除' : '强制报警已开启',
|
|
icon: 'none'
|
|
});
|
|
}
|
|
};
|
|
},
|
|
|
|
deviceRecovry(res) { },
|
|
deviceDispose(res) { },
|
|
bleStateBreak() { },
|
|
bleStateRecovry() { },
|
|
previewImg(img) { },
|
|
|
|
bleValueNotify: function (receive, device, path, recArr) { //订阅消息
|
|
if (receive.deviceId !== this.formData.deviceId) {
|
|
return;
|
|
}
|
|
if (this.formData.sta_battery <= 20) {
|
|
this.showMsg("设备电量低");
|
|
}
|
|
},
|
|
showBleUnConnect() { },
|
|
|
|
proParam: function () {
|
|
|
|
uni.navigateTo({
|
|
url: '/pages/common/productDes/index?id=' + this.device.id,
|
|
success(ev) {
|
|
|
|
}
|
|
});
|
|
},
|
|
handRemark: function () {
|
|
uni.navigateTo({
|
|
url: '/pages/common/operatingInstruct/index?id=' + this.device.id,
|
|
success(ev) {
|
|
|
|
}
|
|
});
|
|
},
|
|
handVideo: function () {
|
|
uni.navigateTo({
|
|
url: '/pages/common/operationVideo/index?id=' + this.device.id,
|
|
success(ev) {
|
|
|
|
}
|
|
});
|
|
},
|
|
|
|
closePop: function () {
|
|
this.Status.Pop.showPop = false;
|
|
|
|
if (this.Status.Pop.cancelCallback) {
|
|
this.Status.Pop.cancelCallback();
|
|
}
|
|
},
|
|
HidePop: function () {
|
|
if (this.Status.Pop.clickEvt == 'SendUsr') {
|
|
|
|
}
|
|
|
|
this.Status.Pop.showPop = false;
|
|
if (this.Status.Pop.okCallback) {
|
|
this.Status.Pop.okCallback();
|
|
}
|
|
},
|
|
showPop: function (option) {
|
|
hideLoading(this);
|
|
let def = {
|
|
showPop: true, //是否显示弹窗
|
|
popType: 'custom',
|
|
bgColor: '#383934bd',
|
|
borderColor: '#BBE600',
|
|
textColor: '#ffffffde',
|
|
buttonBgColor: '#BBE600',
|
|
buttonTextColor: '#232323DE',
|
|
iconUrl: '',
|
|
message: '',
|
|
buttonText: '确定',
|
|
clickEvt: '',
|
|
visiblePrompt: false,
|
|
promptTitle: '',
|
|
modelValue: '',
|
|
visibleClose: false,
|
|
okCallback: null,
|
|
showSlot: false,
|
|
buttonCancelText: '',
|
|
showCancel: false,
|
|
}
|
|
|
|
let keys = Object.keys(def);
|
|
|
|
for (let i = 0; i < keys.length; i++) {
|
|
let key = keys[i];
|
|
if (key in option) {
|
|
continue;
|
|
}
|
|
this.Status.Pop[key] = def[key];
|
|
}
|
|
if (option) {
|
|
keys = Object.keys(option);
|
|
for (let i = 0; i < keys.length; i++) {
|
|
let key = keys[i];
|
|
|
|
this.Status.Pop[key] = option[key];
|
|
}
|
|
}
|
|
|
|
if (!option.borderColor) {
|
|
option.borderColor = '#BBE600';
|
|
option.buttonBgColor = '#BBE600';
|
|
}
|
|
these.Status.Pop.showPop = true;
|
|
},
|
|
btnClick() {
|
|
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.content {
|
|
padding: 30rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.eq {
|
|
width: 100%;
|
|
height: 250rpx;
|
|
border-radius: 8px;
|
|
background: rgba(26, 26, 26, 1);
|
|
box-sizing: border-box;
|
|
padding: 24rpx 28rpx;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
align-content: center;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin-bottom: 24rpx;
|
|
}
|
|
|
|
.eq .leftImg {
|
|
box-sizing: border-box;
|
|
padding: 36rpx;
|
|
border-radius: 16rpx;
|
|
background: rgba(42, 42, 42, 0.5);
|
|
}
|
|
|
|
.eq .leftImg,
|
|
.eq .rightTxt {
|
|
width: 50%;
|
|
height: 100%;
|
|
}
|
|
|
|
.eq .rightTxt {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: nowrap;
|
|
align-content: flex-start;
|
|
justify-content: space-evenly;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.eq .leftImg .img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.eq .rightTxt .img {
|
|
width: 52rpx;
|
|
height: 52rpx;
|
|
}
|
|
|
|
.eq .rightTxt .row {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
align-content: center;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
box-sizing: border-box;
|
|
padding-left: 50rpx;
|
|
}
|
|
|
|
.eq .rightTxt .row .txt {
|
|
padding-left: 20rpx;
|
|
}
|
|
|
|
.eq .bigTxt {
|
|
color: rgba(255, 255, 255, 0.87);
|
|
font-family: PingFang SC;
|
|
font-size: 28rpx;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.eq .smallTxt {
|
|
color: rgba(255, 255, 255, 0.6);
|
|
font-family: PingFang SC;
|
|
font-size: 24rpx;
|
|
font-weight: 400;
|
|
}
|
|
|
|
|
|
.eqinfo {
|
|
border-radius: 16rpx;
|
|
background: rgba(26, 26, 26, 1);
|
|
box-sizing: border-box;
|
|
padding: 14rpx 0rpx;
|
|
}
|
|
|
|
.eqinfo .item {
|
|
width: 100%;
|
|
height: 60rpx;
|
|
line-height: 60rpx;
|
|
padding: 0rpx 28rpx;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
align-content: center;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.eqinfo .lbl {
|
|
color: rgba(255, 255, 255, 0.87);
|
|
font-family: PingFang SC;
|
|
font-size: 28rpx;
|
|
font-weight: 400;
|
|
|
|
letter-spacing: 0.07px;
|
|
text-align: left;
|
|
}
|
|
|
|
.eqinfo .value {
|
|
color: rgba(255, 255, 255, 0.6);
|
|
font-family: PingFang SC;
|
|
font-size: 28rpx;
|
|
font-weight: 400;
|
|
|
|
letter-spacing: 0.07px;
|
|
text-align: left;
|
|
}
|
|
|
|
.lamp {
|
|
margin-top: 24rpx;
|
|
}
|
|
|
|
.lamp .title {
|
|
width: 100%;
|
|
height: 60rpx;
|
|
line-height: 60rpx;
|
|
padding: 0rpx 28rpx;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
align-content: center;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
.lamp.noPadding .title,
|
|
.lamp.noPadding .smlltitle {
|
|
padding: 0rpx 0rpx !important;
|
|
}
|
|
|
|
.lamp .smlltitle {
|
|
width: 100%;
|
|
|
|
line-height: 15rpx;
|
|
padding: 0rpx 28rpx;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
align-content: center;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-size: 26rpx;
|
|
color: rgba(255, 255, 255, 0.6);
|
|
|
|
|
|
}
|
|
|
|
|
|
.lamp .title .img {
|
|
width: 32rpx;
|
|
height: 32rpx;
|
|
margin-top: 20rpx;
|
|
}
|
|
|
|
.lampMode {
|
|
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
.lampMode .mode {
|
|
width: calc(calc(100% - 34rpx) / 2);
|
|
border-radius: 8px;
|
|
margin-top: 20rpx;
|
|
background: rgba(26, 26, 26, 1);
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
align-content: center;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
padding: 30rpx;
|
|
box-sizing: border-box;
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
border-color: #00000000;
|
|
}
|
|
|
|
.lampMode .mode.active {
|
|
|
|
border-color: #aed600 !important;
|
|
}
|
|
|
|
.lampMode .mode.active .bigTxt {
|
|
|
|
color: #aed600 !important;
|
|
}
|
|
|
|
.mode.marginLeft {
|
|
margin-left: 34rpx !important;
|
|
}
|
|
|
|
.mode .leftImg {
|
|
width: 70rpx;
|
|
height: 70rpx;
|
|
border-radius: 4px;
|
|
background: rgba(255, 255, 255, 0.06);
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
align-content: center;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.mode.active .leftImg {
|
|
background: rgba(255, 255, 255, 0.06);
|
|
}
|
|
|
|
.mode .leftImg .img {
|
|
width: 40rpx;
|
|
height: 40rpx;
|
|
}
|
|
|
|
.mode .rightTxt {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: nowrap;
|
|
align-content: flex-start;
|
|
justify-content: center;
|
|
align-items: flex-start;
|
|
padding-left: 20rpx;
|
|
}
|
|
|
|
.mode .bigTxt {
|
|
color: rgba(255, 255, 255, 0.87);
|
|
font-family: PingFang SC;
|
|
font-size: 28rpx;
|
|
font-weight: 400;
|
|
|
|
letter-spacing: 0.07px;
|
|
|
|
}
|
|
|
|
.mode .smallTxt {
|
|
color: rgba(255, 255, 255, 0.6);
|
|
font-family: PingFang SC;
|
|
font-size: 24rpx;
|
|
font-weight: 400;
|
|
|
|
letter-spacing: 0.07px;
|
|
|
|
}
|
|
|
|
.usrinfo {
|
|
border-radius: 8px;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
padding: 24rpx 28rpx;
|
|
background: rgba(26, 26, 26, 1);
|
|
}
|
|
|
|
.usrtitle {
|
|
color: rgba(255, 255, 255, 0.87);
|
|
font-family: PingFang SC;
|
|
font-size: 28rpx;
|
|
font-weight: 400;
|
|
height: 40rpx;
|
|
line-height: 40rpx;
|
|
letter-spacing: 0.07px;
|
|
|
|
}
|
|
|
|
.usrinfo .btnSend {
|
|
line-height: 65rpx;
|
|
border-radius: 8px;
|
|
width: 120rpx;
|
|
height: 65rpx;
|
|
color: rgba(35, 35, 35, 0.87);
|
|
font-family: PingFang SC;
|
|
font-size: 24rpx;
|
|
font-weight: 400;
|
|
letter-spacing: 0.15rpx;
|
|
text-align: center;
|
|
background-color: #BBE600;
|
|
}
|
|
|
|
.usrinfo .item {
|
|
border-radius: 8px;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
line-height: 90rpx;
|
|
height: 90rpx;
|
|
background: rgba(42, 42, 42, 1);
|
|
margin-top: 24rpx;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
align-content: center;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
}
|
|
|
|
.usrinfo .lbl {
|
|
width: 120rpx;
|
|
height: 100%;
|
|
padding-left: 24rpx;
|
|
box-sizing: border-box;
|
|
|
|
text-align: right;
|
|
|
|
color: rgba(255, 255, 255, 0.87);
|
|
font-family: PingFang SC;
|
|
font-size: 28rpx;
|
|
font-weight: 400;
|
|
|
|
letter-spacing: 0.07px;
|
|
|
|
}
|
|
|
|
.usrinfo .value {
|
|
width: calc(100% - 120rpx);
|
|
height: 100%;
|
|
|
|
font-size: 28rpx;
|
|
font-weight: 400;
|
|
|
|
letter-spacing: 0.07px;
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
.usrinfo .value .uni-input-input {
|
|
color: rgba(255, 255, 255, 0.87);
|
|
font-family: PingFang SC;
|
|
|
|
}
|
|
|
|
|
|
.usrplace {
|
|
color: rgba(255, 255, 255, 0.4);
|
|
font-family: PingFang SC;
|
|
font-size: 28rpx;
|
|
font-weight: 400;
|
|
letter-spacing: 0.07px;
|
|
text-align: left;
|
|
}
|
|
|
|
.proinfo .itemcontent {
|
|
display: flex;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
align-content: center;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
.proinfo .item {
|
|
width: 180rpx;
|
|
height: 180rpx;
|
|
box-sizing: border-box;
|
|
padding: 40rpx;
|
|
border-radius: 16rpx;
|
|
background: rgba(26, 26, 26, 1);
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: nowrap;
|
|
align-content: center;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.proinfo .item .img {
|
|
width: 50rpx;
|
|
height: 50rpx;
|
|
|
|
|
|
}
|
|
|
|
.proinfo .item .txt {
|
|
color: rgba(255, 255, 255, 0.6);
|
|
font-family: PingFang SC;
|
|
font-size: 24rpx;
|
|
font-weight: 400;
|
|
margin-top: 20rpx;
|
|
letter-spacing: 0.07px;
|
|
text-align: left;
|
|
}
|
|
|
|
|
|
.slider-container {
|
|
padding: 0px;
|
|
}
|
|
|
|
|
|
|
|
|
|
.addIco {
|
|
width: 100%;
|
|
height: 360rpx;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
align-content: center;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.icoContent {
|
|
width: 240rpx;
|
|
height: 240rpx;
|
|
border-radius: 8rpx;
|
|
|
|
|
|
background: rgba(58, 58, 58, 1);
|
|
}
|
|
|
|
.icoContent .img {
|
|
width: 70rpx;
|
|
height: 70rpx;
|
|
}
|
|
|
|
.arrowContent {
|
|
border-radius: 16rpx;
|
|
background: rgba(26, 26, 26, 1);
|
|
width: 100%;
|
|
padding: 30rpx 0rpx;
|
|
}
|
|
|
|
.modeSetting {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
align-content: center;
|
|
align-items: center;
|
|
justify-content: flex-start;
|
|
|
|
}
|
|
|
|
.modeSetting .arrow {
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-wrap: nowrap;
|
|
align-content: center;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: calc(100% / 3);
|
|
margin-bottom: 25rpx;
|
|
}
|
|
|
|
.modeSetting .arrow .text {
|
|
|
|
color: rgba(255, 255, 255, 0.6);
|
|
font-family: PingFang SC;
|
|
font-size: 24rpx;
|
|
font-weight: 400;
|
|
|
|
letter-spacing: 0.14rpx;
|
|
|
|
}
|
|
|
|
.modeSetting .arrow.active .text {
|
|
color: rgba(35, 35, 35, 0.87);
|
|
|
|
}
|
|
|
|
.modeSetting .arrow .outCircle {
|
|
width: 130rpx;
|
|
height: 130rpx;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
align-content: center;
|
|
justify-content: center;
|
|
align-items: center;
|
|
border: 4rpx solid #00000000;
|
|
border-radius: 50%;
|
|
background: rgba(42, 42, 42, 1);
|
|
}
|
|
|
|
.modeSetting .arrow .item {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
border-radius: 50%;
|
|
|
|
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
align-content: center;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.modeSetting .arrow.active .outCircle {
|
|
border: 4rpx solid rgba(174, 214, 0, 1);
|
|
padding: 4rpx;
|
|
}
|
|
|
|
.modeSetting .item.active .p100 {
|
|
background: rgba(174, 214, 0, 1);
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
.modeSetting .item .img {
|
|
width: 52rpx;
|
|
height: 56rpx;
|
|
}
|
|
|
|
.modeSetting .item .img.translate {
|
|
transform: rotate(180deg);
|
|
}
|
|
|
|
.modeSetting .arrow .activity {
|
|
display: none;
|
|
}
|
|
|
|
.modeSetting .arrow.active .nomal {
|
|
display: none;
|
|
}
|
|
|
|
.modeSetting .arrow.active .item {
|
|
background: rgba(174, 214, 0, 1);
|
|
}
|
|
|
|
.modeSetting .arrow.active .activity {
|
|
display: block !important;
|
|
}
|
|
|
|
.usrinfo .image {
|
|
width: 30rpx;
|
|
height: 40rpx;
|
|
}
|
|
|
|
.usrinfo .img {
|
|
width: 30rpx;
|
|
height: 40rpx;
|
|
}
|
|
|
|
.content {
|
|
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
height: auto;
|
|
}
|
|
|
|
.contentBg {
|
|
background-color: #121212;
|
|
color: #ffffffde;
|
|
}
|
|
|
|
.fleft {
|
|
float: left;
|
|
}
|
|
|
|
.fright {
|
|
float: right;
|
|
}
|
|
|
|
.clear {
|
|
clear: both;
|
|
}
|
|
|
|
.displayNone {
|
|
display: none !important;
|
|
}
|
|
|
|
.p100 {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.center {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
align-content: center;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.centerLeft {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
align-content: center;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
}
|
|
|
|
.warnnig {
|
|
border-radius: 16rpx;
|
|
width: 100%;
|
|
height: 70rpx;
|
|
line-height: 70rpx;
|
|
background: rgba(224, 52, 52, 1);
|
|
box-sizing: border-box;
|
|
padding: 0rpx 30rpx;
|
|
margin-top: 20rpx;
|
|
color: rgba(255, 255, 255, 0.87);
|
|
font-family: 'PingFang SC';
|
|
font-size: 28rpx;
|
|
font-weight: 400;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
align-content: center;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.netContent {
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
align-content: flex-end;
|
|
justify-content: space-around;
|
|
align-items: flex-end;
|
|
width: 50rpx;
|
|
}
|
|
|
|
|
|
.marginTop10 {
|
|
margin-top: 20rpx;
|
|
}
|
|
|
|
.warnnig {
|
|
border-radius: 16rpx;
|
|
width: 100%;
|
|
height: 70rpx;
|
|
line-height: 70rpx;
|
|
background: rgba(224, 52, 52, 1);
|
|
box-sizing: border-box;
|
|
padding: 0rpx 30rpx;
|
|
margin-top: 20rpx;
|
|
color: rgba(255, 255, 255, 0.87);
|
|
font-family: 'PingFang SC';
|
|
font-size: 28rpx;
|
|
font-weight: 400;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
align-content: center;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.sosContent {
|
|
width: 100%;
|
|
height: 110rpx;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
align-content: center;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
box-sizing: border-box;
|
|
padding-top: 24rpx;
|
|
}
|
|
|
|
.btnSos {
|
|
border-radius: 92rpx;
|
|
height: 100%;
|
|
color: rgba(255, 255, 255, 0.87);
|
|
font-family: PingFang SC;
|
|
font-size: 28rpx;
|
|
font-weight: 400;
|
|
line-height: 110rpx;
|
|
letter-spacing: 0.014rpx;
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.openSos {
|
|
width: 62%;
|
|
background: #1a1a1a;
|
|
color: #e03434;
|
|
box-sizing: border-box;
|
|
border: 1rpx solid #e03434;
|
|
}
|
|
|
|
.openSos.active {
|
|
background: #e03434 !important;
|
|
color: rgba(255, 255, 255, 0.87) !important;
|
|
}
|
|
|
|
|
|
.closeSos {
|
|
width: 32%;
|
|
background: #1a1a1a;
|
|
}
|
|
|
|
.warn {
|
|
border-radius: 16rpx;
|
|
background: #1a1a1a;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
margin-top: 25rpx;
|
|
}
|
|
|
|
.warn .header {
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
padding: 20rpx 25rpx;
|
|
display: flex;
|
|
flex-direction: row;
|
|
flex-wrap: nowrap;
|
|
align-content: center;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
.paddingTop0 {
|
|
padding: 0rpx 25rpx !important;
|
|
}
|
|
|
|
.line {
|
|
width: calc(100% - 50rpx);
|
|
height: 0rpx;
|
|
border-bottom: 1rpx solid rgba(255, 255, 255, 0.06);
|
|
margin: 30rpx 25rpx
|
|
}
|
|
|
|
.sliderTxt {
|
|
color: rgba(255, 255, 255, 0.6);
|
|
|
|
font-family: PingFang SC;
|
|
font-size: 24rpx;
|
|
font-weight: 400;
|
|
|
|
letter-spacing: 0.07px;
|
|
|
|
}
|
|
|
|
.sliderVal {
|
|
color: rgba(174, 214, 0, 1);
|
|
|
|
font-family: PingFang SC;
|
|
font-size: 24rpx;
|
|
font-weight: 400;
|
|
|
|
letter-spacing: 0.07px;
|
|
|
|
}
|
|
|
|
|
|
.navbarRight {
|
|
width: 40px;
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
.navbarRight .imgContent {
|
|
width: 36rpx;
|
|
height: 36rpx;
|
|
position: relative;
|
|
}
|
|
|
|
.navbarRight .imgContent:first-child {
|
|
|
|
width: 38rpx !important;
|
|
height: 38rpx !important;
|
|
margin-top: -2rpx;
|
|
}
|
|
|
|
.navbarRight .imgContent .baber {
|
|
position: absolute;
|
|
z-index: 100;
|
|
width: 30rpx;
|
|
height: 30rpx;
|
|
line-height: 30rpx;
|
|
right: -15rpx;
|
|
top: -15rpx;
|
|
border-radius: 50%;
|
|
background: #f12828;
|
|
color: #ffffff;
|
|
font-family: 'PingFang SC';
|
|
font-style: Regular;
|
|
font-size: 20rpx;
|
|
font-weight: 400;
|
|
|
|
text-align: center;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
|
|
}
|
|
|
|
.navbarRight .imgContent .img {
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
box-sizing: border-box;
|
|
position: relative;
|
|
}
|
|
|
|
.navbarRight .imgContent .img:last-child {
|
|
padding: 1rpx;
|
|
}
|
|
|
|
.nvbar {
|
|
top: 0px;
|
|
}
|
|
|
|
/deep/ .uni-navbar--fixed {
|
|
top: 0px;
|
|
}
|
|
|
|
.uninavebartext {
|
|
width: 100%;
|
|
font-size: 32rpx;
|
|
}
|
|
</style> |