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