7305文件报错
This commit is contained in:
@ -8,14 +8,14 @@
|
|||||||
<view class="row">
|
<view class="row">
|
||||||
<image class="img" src="/static/images/6155/DeviceDetail/battry.png" mode="aspectFit"></image>
|
<image class="img" src="/static/images/6155/DeviceDetail/battry.png" mode="aspectFit"></image>
|
||||||
<view class="txt">
|
<view class="txt">
|
||||||
<view class="bigTxt">{{formData.battary}}%</view>
|
<view class="bigTxt">{{ formData.battary }}%</view>
|
||||||
<view class="smallTxt">电量</view>
|
<view class="smallTxt">电量</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="row">
|
<view class="row">
|
||||||
<image class="img" src="/static/images/6155/DeviceDetail/time.png" mode="aspectFit"></image>
|
<image class="img" src="/static/images/6155/DeviceDetail/time.png" mode="aspectFit"></image>
|
||||||
<view class="txt">
|
<view class="txt">
|
||||||
<view class="bigTxt">{{formData.xuhang}}</view>
|
<view class="bigTxt">{{ formData.xuhang }}</view>
|
||||||
<view class="smallTxt">续航时间</view>
|
<view class="smallTxt">续航时间</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
@ -24,25 +24,25 @@
|
|||||||
<view class="eqinfo">
|
<view class="eqinfo">
|
||||||
<view class="item">
|
<view class="item">
|
||||||
<text class="lbl">蓝牙名称</text>
|
<text class="lbl">蓝牙名称</text>
|
||||||
<text class="value">{{formData.blename}}</text>
|
<text class="value">{{ formData.blename }}</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="item">
|
<view class="item">
|
||||||
<text class="lbl">设备名称</text>
|
<text class="lbl">设备名称</text>
|
||||||
<text class="value">{{formData.deviceName}}</text>
|
<text class="value">{{ formData.deviceName }}</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="item">
|
<view class="item">
|
||||||
<text class="lbl">充电状态</text>
|
<text class="lbl">充电状态</text>
|
||||||
<text class="value">{{formData.statu}}</text>
|
<text class="value">{{ formData.statu }}</text>
|
||||||
</view>
|
</view>
|
||||||
<view class="item">
|
<view class="item">
|
||||||
<text class="lbl">蓝牙状态</text>
|
<text class="lbl">蓝牙状态</text>
|
||||||
<text class="value" :class="formData.bleStatu?'green':'red'">{{formData.bleStatu?'已连接':'未连接'}}</text>
|
<text class="value" :class="formData.bleStatu ? 'green' : 'red'">{{ formData.bleStatu ? '已连接' : '未连接' }}</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view class="lamp">
|
<view class="lamp">
|
||||||
<view class="title">
|
<view class="title">
|
||||||
<text>灯光亮度</text>
|
<text>灯光亮度</text>
|
||||||
<text>{{formData.liangDu}}%</text>
|
<text>{{ formData.liangDu }}%</text>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
<view class="slider-container">
|
<view class="slider-container">
|
||||||
@ -59,7 +59,7 @@
|
|||||||
</view>
|
</view>
|
||||||
<view class="rightTxt">
|
<view class="rightTxt">
|
||||||
<text class="bigTxt">主灯模式</text>
|
<text class="bigTxt">主灯模式</text>
|
||||||
<text class="smallTxt">{{getMode}}</text>
|
<text class="smallTxt">{{ getMode }}</text>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<!-- <view class="mode marginLeft fleft" v-on:click.stop="ModeSetting('fu')">
|
<!-- <view class="mode marginLeft fleft" v-on:click.stop="ModeSetting('fu')">
|
||||||
@ -88,22 +88,20 @@
|
|||||||
<view class="btnSend fright" v-on:click.stop="sendUsr">发送</view>
|
<view class="btnSend fright" v-on:click.stop="sendUsr">发送</view>
|
||||||
<view class="clear"></view>
|
<view class="clear"></view>
|
||||||
<textToDotMatrixFor7305 class="TextToHex" ref="textToHex" :txts="formData.textLines"
|
<textToDotMatrixFor7305 class="TextToHex" ref="textToHex" :txts="formData.textLines"
|
||||||
:bgColor="'#FFFFFF'" :color="'#000000'" :fontSize="11" / </view>
|
:bgColor="'#FFFFFF'" :color="'#000000'" :fontSize="11"></textToDotMatrixFor7305>
|
||||||
|
</view>
|
||||||
|
|
||||||
<view class="item">
|
<view class="item">
|
||||||
<text class="lbl">单位:</text>
|
<text class="lbl">单位:</text>
|
||||||
<input class="value" v-model="formData.textLines[0]" placeholder="请输入单位"
|
<input class="value" v-model="formData.textLines[0]" placeholder="请输入单位" placeholder-class="usrplace" />
|
||||||
placeholder-class="usrplace" />
|
|
||||||
</view>
|
</view>
|
||||||
<view class="item">
|
<view class="item">
|
||||||
<text class="lbl">部门:</text>
|
<text class="lbl">部门:</text>
|
||||||
<input class="value" v-model="formData.textLines[1]" placeholder="请输入姓名"
|
<input class="value" v-model="formData.textLines[1]" placeholder="请输入姓名" placeholder-class="usrplace" />
|
||||||
placeholder-class="usrplace" />
|
|
||||||
</view>
|
</view>
|
||||||
<view class="item">
|
<view class="item">
|
||||||
<text class="lbl">姓名:</text>
|
<text class="lbl">姓名:</text>
|
||||||
<input class="value" v-model="formData.textLines[2]" placeholder="请输入职位"
|
<input class="value" v-model="formData.textLines[2]" placeholder="请输入职位" placeholder-class="usrplace" />
|
||||||
placeholder-class="usrplace" />
|
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
</view>
|
</view>
|
||||||
@ -149,23 +147,23 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import textToDotMatrixFor7305 from '@/components/TextToHex/textToDotMatrixFor7305.vue';
|
import textToDotMatrixFor7305 from '@/components/TextToHex/textToDotMatrixFor7305.vue';
|
||||||
import bleTool from '@/utils/BleHelper.js';
|
import bleTool from '@/utils/BleHelper.js';
|
||||||
import usrApi from '@/api/670/HBY670.js'
|
import usrApi from '@/api/670/HBY670.js'
|
||||||
import {
|
import {
|
||||||
showLoading,
|
showLoading,
|
||||||
hideLoading,
|
hideLoading,
|
||||||
updateLoading
|
updateLoading
|
||||||
} from '@/utils/loading.js'
|
} from '@/utils/loading.js'
|
||||||
import BleReceive from '@/utils/BleReceive';
|
import BleReceive from '@/utils/BleReceive';
|
||||||
|
|
||||||
|
|
||||||
var ble = null;
|
var ble = null;
|
||||||
var these = null;
|
var these = null;
|
||||||
var BrighInteval = null;
|
var BrighInteval = null;
|
||||||
var recei = null;
|
var recei = null;
|
||||||
var pagePath = "/pages/7305/BJQ7305";
|
var pagePath = "/pages/7305/BJQ7305";
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
textToDotMatrixFor7305
|
textToDotMatrixFor7305
|
||||||
},
|
},
|
||||||
@ -268,7 +266,7 @@
|
|||||||
onUnload() {
|
onUnload() {
|
||||||
ble.removeAllCallback(pagePath);
|
ble.removeAllCallback(pagePath);
|
||||||
},
|
},
|
||||||
onLoad: function() {
|
onLoad: function () {
|
||||||
these = this;
|
these = this;
|
||||||
recei = BleReceive.getBleReceive();
|
recei = BleReceive.getBleReceive();
|
||||||
ble = bleTool.getBleTool();
|
ble = bleTool.getBleTool();
|
||||||
@ -280,7 +278,7 @@
|
|||||||
ble.addRecoveryCallback(these.deviceRecovry, pagePath);
|
ble.addRecoveryCallback(these.deviceRecovry, pagePath);
|
||||||
let eventChannel = this.getOpenerEventChannel();
|
let eventChannel = this.getOpenerEventChannel();
|
||||||
|
|
||||||
eventChannel.on('detailData', function(data) {
|
eventChannel.on('detailData', function (data) {
|
||||||
|
|
||||||
|
|
||||||
let device = data.data;
|
let device = data.data;
|
||||||
@ -324,15 +322,15 @@
|
|||||||
});
|
});
|
||||||
|
|
||||||
},
|
},
|
||||||
onHide: function() {
|
onHide: function () {
|
||||||
this.Status.pageHide = true;
|
this.Status.pageHide = true;
|
||||||
console.log("页面隐藏");
|
console.log("页面隐藏");
|
||||||
},
|
},
|
||||||
onShow: function() {
|
onShow: function () {
|
||||||
this.Status.pageHide = false;
|
this.Status.pageHide = false;
|
||||||
},
|
},
|
||||||
computed: {
|
computed: {
|
||||||
RSSIRemark: function() {
|
RSSIRemark: function () {
|
||||||
let remark = '极弱';
|
let remark = '极弱';
|
||||||
if (this.formData.RSSI <= 0 && this.formData.RSSI >= -30) {
|
if (this.formData.RSSI <= 0 && this.formData.RSSI >= -30) {
|
||||||
remark = '强';
|
remark = '强';
|
||||||
@ -458,7 +456,7 @@
|
|||||||
urls: [img]
|
urls: [img]
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
getDevice: function() {
|
getDevice: function () {
|
||||||
// console.log("LinkedList=", ble.data.LinkedList);
|
// console.log("LinkedList=", ble.data.LinkedList);
|
||||||
// console.log("formData=", these.formData);
|
// console.log("formData=", these.formData);
|
||||||
let f = ble.data.LinkedList.find((v) => {
|
let f = ble.data.LinkedList.find((v) => {
|
||||||
@ -467,7 +465,7 @@
|
|||||||
|
|
||||||
return f;
|
return f;
|
||||||
},
|
},
|
||||||
bleValueNotify: function(receive, device, path, recArr) {
|
bleValueNotify: function (receive, device, path, recArr) {
|
||||||
|
|
||||||
if (this.Status.pageHide) {
|
if (this.Status.pageHide) {
|
||||||
return;
|
return;
|
||||||
@ -501,7 +499,7 @@
|
|||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
proParam: function() {
|
proParam: function () {
|
||||||
|
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url: '/pages/common/productDes/index?id=' + this.formData.id,
|
url: '/pages/common/productDes/index?id=' + this.formData.id,
|
||||||
@ -510,7 +508,7 @@
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
handRemark: function() {
|
handRemark: function () {
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url: '/pages/common/operatingInstruct/index?id=' + this.formData.id,
|
url: '/pages/common/operatingInstruct/index?id=' + this.formData.id,
|
||||||
success(ev) {
|
success(ev) {
|
||||||
@ -518,7 +516,7 @@
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
handVideo: function() {
|
handVideo: function () {
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url: '/pages/common/operationVideo/index?id=' + this.formData.id,
|
url: '/pages/common/operationVideo/index?id=' + this.formData.id,
|
||||||
success(ev) {
|
success(ev) {
|
||||||
@ -533,17 +531,17 @@
|
|||||||
borderColor: "#e034344d",
|
borderColor: "#e034344d",
|
||||||
buttonBgColor: "#E03434",
|
buttonBgColor: "#E03434",
|
||||||
buttonText: '去连接',
|
buttonText: '去连接',
|
||||||
okCallback: function() {
|
okCallback: function () {
|
||||||
console.log("1111");
|
console.log("1111");
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url: "/pages/common/addBLE/addEquip",
|
url: "/pages/common/addBLE/addEquip",
|
||||||
events: {
|
events: {
|
||||||
BindOver: function(data) {
|
BindOver: function (data) {
|
||||||
console.log(data)
|
console.log(data)
|
||||||
these.formData.bleStatu = true;
|
these.formData.bleStatu = true;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
success: function(res) {
|
success: function (res) {
|
||||||
// 通过eventChannel向被打开页面传送数据
|
// 通过eventChannel向被打开页面传送数据
|
||||||
res.eventChannel.emit('detailData', {
|
res.eventChannel.emit('detailData', {
|
||||||
data: these.device
|
data: these.device
|
||||||
@ -556,7 +554,7 @@
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
checkImgUpload: function() {
|
checkImgUpload: function () {
|
||||||
let f = these.getDevice();
|
let f = these.getDevice();
|
||||||
|
|
||||||
if (!f) {
|
if (!f) {
|
||||||
@ -569,7 +567,7 @@
|
|||||||
|
|
||||||
|
|
||||||
// 分包发送图片数据
|
// 分包发送图片数据
|
||||||
var sendImagePackets = function(packetData) {
|
var sendImagePackets = function (packetData) {
|
||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
try {
|
try {
|
||||||
// 1. 构建一个包含完整头、数据和尾的完整数据包
|
// 1. 构建一个包含完整头、数据和尾的完整数据包
|
||||||
@ -663,11 +661,11 @@
|
|||||||
count: 1,
|
count: 1,
|
||||||
sizeType: ['original', 'compressed'],
|
sizeType: ['original', 'compressed'],
|
||||||
sourceType: ['album'],
|
sourceType: ['album'],
|
||||||
success: function(res) {
|
success: function (res) {
|
||||||
uni.navigateTo({
|
uni.navigateTo({
|
||||||
url: "/pages/6155/ImgCrop",
|
url: "/pages/6155/ImgCrop",
|
||||||
events: {
|
events: {
|
||||||
ImgCutOver: function(data) {
|
ImgCutOver: function (data) {
|
||||||
//将8位的二进制数组转换成16进制数据
|
//将8位的二进制数组转换成16进制数据
|
||||||
let binaryToHex = (binaryArray) => {
|
let binaryToHex = (binaryArray) => {
|
||||||
if (!Array.isArray(binaryArray) || binaryArray
|
if (!Array.isArray(binaryArray) || binaryArray
|
||||||
@ -771,7 +769,7 @@
|
|||||||
});
|
});
|
||||||
|
|
||||||
these.Status.BottomMenu.show = false;
|
these.Status.BottomMenu.show = false;
|
||||||
setTimeout(function() {
|
setTimeout(function () {
|
||||||
sendImagePackets(matrix).catch((
|
sendImagePackets(matrix).catch((
|
||||||
ex) => {
|
ex) => {
|
||||||
console.log("出现异常", ex);
|
console.log("出现异常", ex);
|
||||||
@ -798,14 +796,14 @@
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
UploadOpenImg: function() {
|
UploadOpenImg: function () {
|
||||||
//上传开机画面
|
//上传开机画面
|
||||||
this.Status.BottomMenu.menuItems = [];
|
this.Status.BottomMenu.menuItems = [];
|
||||||
this.Status.BottomMenu.title = "上传开机画面";
|
this.Status.BottomMenu.title = "上传开机画面";
|
||||||
this.Status.BottomMenu.type = "checkImg";
|
this.Status.BottomMenu.type = "checkImg";
|
||||||
this.Status.BottomMenu.show = true;
|
this.Status.BottomMenu.show = true;
|
||||||
},
|
},
|
||||||
ModeSetting: function(type) {
|
ModeSetting: function (type) {
|
||||||
|
|
||||||
this.formData.mode = type;
|
this.formData.mode = type;
|
||||||
let items = [];
|
let items = [];
|
||||||
@ -973,14 +971,14 @@
|
|||||||
})
|
})
|
||||||
|
|
||||||
},
|
},
|
||||||
closePop: function() {
|
closePop: function () {
|
||||||
this.Status.Pop.showPop = false;
|
this.Status.Pop.showPop = false;
|
||||||
|
|
||||||
if (this.Status.Pop.cancelCallback) {
|
if (this.Status.Pop.cancelCallback) {
|
||||||
this.Status.Pop.cancelCallback();
|
this.Status.Pop.cancelCallback();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
HidePop: function() {
|
HidePop: function () {
|
||||||
console.log("1111");
|
console.log("1111");
|
||||||
if (this.Status.Pop.clickEvt == 'SendUsr') {
|
if (this.Status.Pop.clickEvt == 'SendUsr') {
|
||||||
|
|
||||||
@ -990,7 +988,7 @@
|
|||||||
}
|
}
|
||||||
this.Status.Pop.showPop = false;
|
this.Status.Pop.showPop = false;
|
||||||
},
|
},
|
||||||
showPop: function(option) {
|
showPop: function (option) {
|
||||||
|
|
||||||
hideLoading(this);
|
hideLoading(this);
|
||||||
let defaultCfg = {
|
let defaultCfg = {
|
||||||
@ -1215,7 +1213,7 @@
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
ack: function() {
|
ack: function () {
|
||||||
|
|
||||||
|
|
||||||
let eventChannel = this.getOpenerEventChannel();
|
let eventChannel = this.getOpenerEventChannel();
|
||||||
@ -1224,7 +1222,7 @@
|
|||||||
});
|
});
|
||||||
|
|
||||||
},
|
},
|
||||||
sliderChange: function(evt) {
|
sliderChange: function (evt) {
|
||||||
this.formData.liangDu = evt.detail.value;
|
this.formData.liangDu = evt.detail.value;
|
||||||
clearTimeout(BrighInteval)
|
clearTimeout(BrighInteval)
|
||||||
//给蓝牙设备发送信号更新亮度
|
//给蓝牙设备发送信号更新亮度
|
||||||
@ -1233,7 +1231,7 @@
|
|||||||
this.setBleFormData();
|
this.setBleFormData();
|
||||||
}, 100);
|
}, 100);
|
||||||
},
|
},
|
||||||
sendBrightness: function() {
|
sendBrightness: function () {
|
||||||
const buffer = new ArrayBuffer(6);
|
const buffer = new ArrayBuffer(6);
|
||||||
const dataView = new DataView(buffer);
|
const dataView = new DataView(buffer);
|
||||||
let data = '0x' + parseInt(this.formData.liangDu).toString(16);
|
let data = '0x' + parseInt(this.formData.liangDu).toString(16);
|
||||||
@ -1262,7 +1260,7 @@
|
|||||||
|
|
||||||
},
|
},
|
||||||
//获取当前设备状态
|
//获取当前设备状态
|
||||||
GetDeviceStatu: function() {
|
GetDeviceStatu: function () {
|
||||||
//数据头 命令码 数据 校验码
|
//数据头 命令码 数据 校验码
|
||||||
//JQOC 0B 00 9C41
|
//JQOC 0B 00 9C41
|
||||||
|
|
||||||
@ -1272,18 +1270,18 @@
|
|||||||
this.sendCmd('0x0B');
|
this.sendCmd('0x0B');
|
||||||
},
|
},
|
||||||
//设备重启
|
//设备重启
|
||||||
DeviceReStart: function() {
|
DeviceReStart: function () {
|
||||||
//数据头 命令码 数据 校验码
|
//数据头 命令码 数据 校验码
|
||||||
//JQOC 0C 01 9C412
|
//JQOC 0C 01 9C412
|
||||||
this.sendCmd('0x0C');
|
this.sendCmd('0x0C');
|
||||||
},
|
},
|
||||||
//恢复出厂设置
|
//恢复出厂设置
|
||||||
DeviceReSet: function() {
|
DeviceReSet: function () {
|
||||||
//数据头 命令码 数据 校验码
|
//数据头 命令码 数据 校验码
|
||||||
//JQOC 0D 01 9C412
|
//JQOC 0D 01 9C412
|
||||||
this.sendCmd('0x0D');
|
this.sendCmd('0x0D');
|
||||||
},
|
},
|
||||||
sendCmd: function(type, callback) {
|
sendCmd: function (type, callback) {
|
||||||
//数据头 命令码 数据 校验码
|
//数据头 命令码 数据 校验码
|
||||||
|
|
||||||
const buffer = new ArrayBuffer(7);
|
const buffer = new ArrayBuffer(7);
|
||||||
@ -1313,68 +1311,68 @@
|
|||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
.content {
|
.content {
|
||||||
|
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
height: auto;
|
height: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.contentBg {
|
.contentBg {
|
||||||
background-color: #121212;
|
background-color: #121212;
|
||||||
color: #ffffffde;
|
color: #ffffffde;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fleft {
|
.fleft {
|
||||||
float: left;
|
float: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.fright {
|
.fright {
|
||||||
float: right;
|
float: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
.clear {
|
.clear {
|
||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
|
|
||||||
.displayNone {
|
.displayNone {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.p100 {
|
.p100 {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.center {
|
.center {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
flex-wrap: nowrap;
|
flex-wrap: nowrap;
|
||||||
align-content: center;
|
align-content: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.centerLeft {
|
.centerLeft {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
flex-wrap: nowrap;
|
flex-wrap: nowrap;
|
||||||
align-content: center;
|
align-content: center;
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.content {
|
.content {
|
||||||
padding: 30rpx;
|
padding: 30rpx;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
.eq {
|
.eq {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 250rpx;
|
height: 250rpx;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
@ -1388,41 +1386,41 @@
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
margin-bottom: 24rpx;
|
margin-bottom: 24rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.eq .leftImg {
|
.eq .leftImg {
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
padding: 36rpx;
|
padding: 36rpx;
|
||||||
border-radius: 16rpx;
|
border-radius: 16rpx;
|
||||||
background: rgba(42, 42, 42, 0.5);
|
background: rgba(42, 42, 42, 0.5);
|
||||||
}
|
}
|
||||||
|
|
||||||
.eq .leftImg,
|
.eq .leftImg,
|
||||||
.eq .rightTxt {
|
.eq .rightTxt {
|
||||||
width: 50%;
|
width: 50%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.eq .rightTxt {
|
.eq .rightTxt {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
flex-wrap: nowrap;
|
flex-wrap: nowrap;
|
||||||
align-content: flex-start;
|
align-content: flex-start;
|
||||||
justify-content: space-evenly;
|
justify-content: space-evenly;
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
}
|
}
|
||||||
|
|
||||||
.eq .leftImg .img {
|
.eq .leftImg .img {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.eq .rightTxt .img {
|
.eq .rightTxt .img {
|
||||||
width: 52rpx;
|
width: 52rpx;
|
||||||
height: 52rpx;
|
height: 52rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.eq .rightTxt .row {
|
.eq .rightTxt .row {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
@ -1432,35 +1430,35 @@
|
|||||||
align-items: center;
|
align-items: center;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
padding-left: 50rpx;
|
padding-left: 50rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.eq .rightTxt .row .txt {
|
.eq .rightTxt .row .txt {
|
||||||
padding-left: 20rpx;
|
padding-left: 20rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.eq .bigTxt {
|
.eq .bigTxt {
|
||||||
color: rgba(255, 255, 255, 0.87);
|
color: rgba(255, 255, 255, 0.87);
|
||||||
font-family: "PingFang SC";
|
font-family: "PingFang SC";
|
||||||
font-size: 28rpx;
|
font-size: 28rpx;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
|
|
||||||
.eq .smallTxt {
|
.eq .smallTxt {
|
||||||
color: rgba(255, 255, 255, 0.6);
|
color: rgba(255, 255, 255, 0.6);
|
||||||
font-family: "PingFang SC";
|
font-family: "PingFang SC";
|
||||||
font-size: 24rpx;
|
font-size: 24rpx;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.eqinfo {
|
.eqinfo {
|
||||||
border-radius: 16rpx;
|
border-radius: 16rpx;
|
||||||
background: rgba(26, 26, 26, 1);
|
background: rgba(26, 26, 26, 1);
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
padding: 14rpx 0rpx;
|
padding: 14rpx 0rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.eqinfo .item {
|
.eqinfo .item {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 60rpx;
|
height: 60rpx;
|
||||||
line-height: 60rpx;
|
line-height: 60rpx;
|
||||||
@ -1472,9 +1470,9 @@
|
|||||||
align-content: center;
|
align-content: center;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.eqinfo .lbl {
|
.eqinfo .lbl {
|
||||||
color: rgba(255, 255, 255, 0.87);
|
color: rgba(255, 255, 255, 0.87);
|
||||||
font-family: "PingFang SC";
|
font-family: "PingFang SC";
|
||||||
font-size: 28rpx;
|
font-size: 28rpx;
|
||||||
@ -1482,9 +1480,9 @@
|
|||||||
|
|
||||||
letter-spacing: 0.07px;
|
letter-spacing: 0.07px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.eqinfo .value {
|
.eqinfo .value {
|
||||||
color: rgba(255, 255, 255, 0.6);
|
color: rgba(255, 255, 255, 0.6);
|
||||||
font-family: "PingFang SC";
|
font-family: "PingFang SC";
|
||||||
font-size: 28rpx;
|
font-size: 28rpx;
|
||||||
@ -1492,14 +1490,14 @@
|
|||||||
|
|
||||||
letter-spacing: 0.07px;
|
letter-spacing: 0.07px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.lamp {
|
.lamp {
|
||||||
margin-top: 24rpx;
|
margin-top: 24rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.lamp .title {
|
.lamp .title {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 60rpx;
|
height: 60rpx;
|
||||||
line-height: 60rpx;
|
line-height: 60rpx;
|
||||||
@ -1512,16 +1510,16 @@
|
|||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
font-size: 28rpx;
|
font-size: 28rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.lampMode {
|
.lampMode {
|
||||||
padding: 30rpx 0rpx;
|
padding: 30rpx 0rpx;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.lampMode .mode {
|
.lampMode .mode {
|
||||||
width: calc(calc(100% - 34rpx) / 2);
|
width: calc(calc(100% - 34rpx) / 2);
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
margin-top: 20rpx;
|
margin-top: 20rpx;
|
||||||
@ -1534,18 +1532,18 @@
|
|||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
padding: 30rpx;
|
padding: 30rpx;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mode.marginLeft {
|
.mode.marginLeft {
|
||||||
margin-left: 34rpx !important;
|
margin-left: 34rpx !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mode .leftImg .img {
|
.mode .leftImg .img {
|
||||||
width: 70rpx;
|
width: 70rpx;
|
||||||
height: 70rpx;
|
height: 70rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mode .rightTxt {
|
.mode .rightTxt {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
flex-wrap: nowrap;
|
flex-wrap: nowrap;
|
||||||
@ -1553,9 +1551,9 @@
|
|||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
padding-left: 20rpx;
|
padding-left: 20rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mode .bigTxt {
|
.mode .bigTxt {
|
||||||
color: rgba(255, 255, 255, 0.87);
|
color: rgba(255, 255, 255, 0.87);
|
||||||
font-family: "PingFang SC";
|
font-family: "PingFang SC";
|
||||||
font-size: 28rpx;
|
font-size: 28rpx;
|
||||||
@ -1563,9 +1561,9 @@
|
|||||||
|
|
||||||
letter-spacing: 0.07px;
|
letter-spacing: 0.07px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.mode .smallTxt {
|
.mode .smallTxt {
|
||||||
color: rgba(255, 255, 255, 0.6);
|
color: rgba(255, 255, 255, 0.6);
|
||||||
font-family: "PingFang SC";
|
font-family: "PingFang SC";
|
||||||
font-size: 24rpx;
|
font-size: 24rpx;
|
||||||
@ -1573,17 +1571,17 @@
|
|||||||
|
|
||||||
letter-spacing: 0.07px;
|
letter-spacing: 0.07px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.usrinfo {
|
.usrinfo {
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
padding: 24rpx 28rpx;
|
padding: 24rpx 28rpx;
|
||||||
background: rgba(26, 26, 26, 1);
|
background: rgba(26, 26, 26, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.usrtitle {
|
.usrtitle {
|
||||||
color: rgba(255, 255, 255, 0.87);
|
color: rgba(255, 255, 255, 0.87);
|
||||||
font-family: "PingFang SC";
|
font-family: "PingFang SC";
|
||||||
font-size: 28rpx;
|
font-size: 28rpx;
|
||||||
@ -1592,9 +1590,9 @@
|
|||||||
line-height: 40rpx;
|
line-height: 40rpx;
|
||||||
letter-spacing: 0.07px;
|
letter-spacing: 0.07px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.usrinfo .btnSend {
|
.usrinfo .btnSend {
|
||||||
line-height: 65rpx;
|
line-height: 65rpx;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
width: 120rpx;
|
width: 120rpx;
|
||||||
@ -1606,9 +1604,9 @@
|
|||||||
letter-spacing: 0.07px;
|
letter-spacing: 0.07px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
background-color: #BBE600;
|
background-color: #BBE600;
|
||||||
}
|
}
|
||||||
|
|
||||||
.usrinfo .item {
|
.usrinfo .item {
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
@ -1622,9 +1620,9 @@
|
|||||||
align-content: center;
|
align-content: center;
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.usrinfo .lbl {
|
.usrinfo .lbl {
|
||||||
width: 120rpx;
|
width: 120rpx;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
padding-left: 24rpx;
|
padding-left: 24rpx;
|
||||||
@ -1639,17 +1637,17 @@
|
|||||||
|
|
||||||
letter-spacing: 0.07px;
|
letter-spacing: 0.07px;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.usrinfo .value {
|
.usrinfo .value {
|
||||||
width: calc(100% - 120rpx);
|
width: calc(100% - 120rpx);
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.usrinfo .value .uni-input-input {
|
.usrinfo .value .uni-input-input {
|
||||||
color: rgba(255, 255, 255, 0.87);
|
color: rgba(255, 255, 255, 0.87);
|
||||||
font-family: "PingFang SC";
|
font-family: "PingFang SC";
|
||||||
font-size: 28rpx;
|
font-size: 28rpx;
|
||||||
@ -1657,28 +1655,28 @@
|
|||||||
|
|
||||||
letter-spacing: 0.07px;
|
letter-spacing: 0.07px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.usrplace {
|
.usrplace {
|
||||||
color: rgba(255, 255, 255, 0.4);
|
color: rgba(255, 255, 255, 0.4);
|
||||||
font-family: "PingFang SC";
|
font-family: "PingFang SC";
|
||||||
font-size: 28rpx;
|
font-size: 28rpx;
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
letter-spacing: 0.07px;
|
letter-spacing: 0.07px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
.proinfo .itemcontent {
|
.proinfo .itemcontent {
|
||||||
display: flex;
|
display: flex;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
flex-wrap: nowrap;
|
flex-wrap: nowrap;
|
||||||
align-content: center;
|
align-content: center;
|
||||||
justify-content: space-evenly;
|
justify-content: space-evenly;
|
||||||
}
|
}
|
||||||
|
|
||||||
.proinfo .item {
|
.proinfo .item {
|
||||||
width: 180rpx;
|
width: 180rpx;
|
||||||
height: 180rpx;
|
height: 180rpx;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
@ -1691,16 +1689,16 @@
|
|||||||
align-content: center;
|
align-content: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.proinfo .item .img {
|
.proinfo .item .img {
|
||||||
width: 50rpx;
|
width: 50rpx;
|
||||||
height: 50rpx;
|
height: 50rpx;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.proinfo .item .txt {
|
.proinfo .item .txt {
|
||||||
color: rgba(255, 255, 255, 0.6);
|
color: rgba(255, 255, 255, 0.6);
|
||||||
font-family: "PingFang SC";
|
font-family: "PingFang SC";
|
||||||
font-size: 24rpx;
|
font-size: 24rpx;
|
||||||
@ -1708,15 +1706,15 @@
|
|||||||
margin-top: 20rpx;
|
margin-top: 20rpx;
|
||||||
letter-spacing: 0.07px;
|
letter-spacing: 0.07px;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.slider-container {
|
.slider-container {
|
||||||
padding: 0px;
|
padding: 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.addIco {
|
.addIco {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 360rpx;
|
height: 360rpx;
|
||||||
display: flex;
|
display: flex;
|
||||||
@ -1725,26 +1723,26 @@
|
|||||||
align-content: center;
|
align-content: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.icoContent {
|
.icoContent {
|
||||||
width: 240rpx;
|
width: 240rpx;
|
||||||
height: 240rpx;
|
height: 240rpx;
|
||||||
border-radius: 8rpx;
|
border-radius: 8rpx;
|
||||||
|
|
||||||
|
|
||||||
background: rgba(58, 58, 58, 1);
|
background: rgba(58, 58, 58, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
.icoContent .img {
|
.icoContent .img {
|
||||||
width: 70rpx;
|
width: 70rpx;
|
||||||
height: 70rpx;
|
height: 70rpx;
|
||||||
}
|
}
|
||||||
|
|
||||||
.TextToHex {
|
.TextToHex {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: -99999rpx;
|
top: -99999rpx;
|
||||||
left: -99999rpx;
|
left: -99999rpx;
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
Reference in New Issue
Block a user