12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478 |
- <template>
- <!-- 设备详情 -->
- <view class="content">
- <view class="name_box">
- <view class="name_content">{{ devInfo.devName }}</view>
- </view>
- <view class="radar-box">
- <view
- :style="{
- width: `${length / 200}px`,
- height: `${width / 200}px`,
- position: 'relative',
- }"
- :class="[
- width < 25500 && length < 25000 ? 'tranStyle' : 'center',
- ]"
- >
- <view
- v-for="(item, index) in modules"
- :key="index"
- class="moduleContent"
- >
- <view
- :class="item.type"
- :style="{
- width: `${item.width / 2}px`,
- height: `${item.length / 2}px`,
- top: `${item.top / 2}px`,
- left: `${item.left / 2}px`,
- transform: `rotate(${item.rotate}deg)`,
- 'transform-origin': 'center center',
- }"
- >
- <image
- class="module-img"
- :src="`../../static/furnitures/${item.type}.png`"
- mode=""
- />
- </view>
- </view>
- <template>
- <view v-for="item in targetPoints" :key="item.id">
- <image
- class="action-icon-M"
- :style="{
- position: 'absolute',
- transform: `translate3d(${
- item.displayX / 2
- }px, ${
- -item.displayY / 2
- }px, 0) translate(-50%, -50%)`,
- zIndex: 9999,
- transition: 'transform 1s linear',
- willChange: 'transform',
- }"
- :src="`../../static/${lnbAction}.png`"
- mode=""
- />
- </view>
- </template>
- </view>
- <!-- <image
- class="redar-pic"
- src="../../static/rander.png"
- mode=""
- :style="{
- transform:
- 'translate(' +
- -xOffset / 100 +
- 'rpx,' +
- -yOffset / 100 +
- 'rpx)',
- }"
- /> -->
- </view>
- <view class="switchBox">
- <text class="name">呼吸灯</text>
- <switch
- :checked="statusLight == 1"
- @change="handleLightChange"
- :active-value="1"
- :inactive-value="0"
- size="24px"
- active-color="#07c160"
- inactive-color="#eeeff1"
- style="transform: scale(0.8)"
- />
- </view>
- <view class="notice-info">
- <view class="notice_title" @click="discrepancy">
- <text style="color: #95a4b3; font-size: 28rpx">{{
- todayDate
- }}</text>
- <image src="../../static/rightArrow.png"></image>
- </view>
- <!-- <view
- @click="getFrenEcharts()"
- class="title"
- v-if="
- devInfo.installPosition == 'Bedroom' ||
- (breathRate !== 0 && breathRate !== '')
- "
- >
- <view
- class="title-text"
- style="color: #111111; font-size: 30rpx"
- >当前呼吸率</view
- >
- <view
- style="
- display: flex;
- justify-content: center;
- align-items: center;
- "
- >
- <view
- class="title-btn"
- style="color: #111111; font-size: 30rpx"
- v-if="breathRate !== ''"
- >
- {{ breathRate }}次/分钟</view
- >
- <view
- v-else
- class="title-btn"
- style="color: #111111; font-size: 30rpx"
- >
- 暂无
- </view>
- <image
- src="../../static/rightArrow.png"
- style="margin-left: auto; width: 30rpx; height: 30rpx"
- ></image>
- </view>
- </view> -->
- <view class="title" v-if="devInfo.installPosition == 'Toilet'">
- <view class="title-text" style="color: #22dea7"
- >今日卫生间使用频次</view
- >
- <view class="title-btn" style="color: #22dea7"
- >{{
- freQuenceList.length == "" ? "0" : freQuenceList.length
- }}次</view
- >
- </view>
- <view class="title" v-if="devInfo.installPosition != 'Toilet'">
- <view class="title-text" style="color: #22dea7"
- >今日进出频次</view
- >
- <view class="title-btn" style="color: #22dea7"
- >{{
- freQuenceList.length == "" ? "0" : freQuenceList.length
- }}次</view
- >
- </view>
- <view
- class="stayDetail"
- v-if="freQuenceList.length > 0 && freQuenceList.length == 1"
- >
- <view v-for="item in freQuenceList" :key="item.id">
- <view class="stayDetail-item">
- <view class="stayDetail-text"
- >{{
- item.info.start_time.slice(11, 16)
- }}目标进入</view
- >
- <view class="stayDetail-btn"
- >{{
- item.info.end_time.slice(11, 16)
- }}目标离开</view
- >
- </view>
- </view>
- </view>
- <view
- class="stayDetail"
- v-if="freQuenceList.length > 0 && freQuenceList.length > 1"
- >
- <swiper
- class="auto-scroll-swiper"
- :indicator-dots="false"
- :autoplay="false"
- :interval="3000"
- :circular="true"
- :display-multiple-items="1"
- :vertical="false"
- :current="currentIndex"
- @change="onSwiperChange"
- >
- <swiper-item
- v-for="item in freQuenceList"
- :key="item.id"
- class="stayDetail-item"
- >
- <view class="stayDetail-text"
- >{{
- item.info.start_time.slice(11, 16)
- }}目标进入</view
- >
- <view class="stayDetail-btn"
- >{{
- item.info.end_time.slice(11, 16)
- }}目标离开</view
- >
- </swiper-item>
- </swiper>
- </view>
- <!-- <view class="title" v-if="devInfo.installPosition == 'Toilet'">
- <view class="title-text" style="color: #ff976a"
- >昨日卫生间使用频次</view
- >
- <view class="title-btn" style="color: #ff976a"
- >{{
- freQuenceList.length == "" ? "0" : freQuenceList.length
- }}次</view
- >
- </view>
- <view class="title" v-else>
- <view class="title-text" style="color: #ff976a"
- >昨日进出频次</view
- >
- <view class="title-btn" style="color: #ff976a"
- >{{
- freQuenceList.length == "" ? "0" : freQuenceList.length
- }}次</view
- >
- </view> -->
- </view>
- <view class="box" v-if="!breathShow">
- <view class="handle-btn">
- <view class="btn1" @click="shareDevice">分享</view>
- <view class="btn1" @click="gotoSetting">设置</view>
- <view class="btn2" @click="healthAlarm">守护计划</view>
- </view>
- </view>
- <view class="box" v-else>
- <view class="handle-btn">
- <view class="closeBreath" @click="breathShow = false"
- >关闭呼吸率曲线图</view
- >
- <view class="btn2" @click="saveBreath"> 保存呼吸率曲线图 </view>
- </view>
- </view>
- <!-- 遮罩层 -->
- <view class="mask" v-if="shareModel" @click="shareModel = false"></view>
- <!-- 弹窗内容 -->
- <view class="share-modal" v-if="shareModel">
- <view class="modal-header">
- <text class="cancel-btn" @click="shareModel = false">取消</text>
- <text class="modal-title">分享</text>
- <text class="confirm-btn" @click="onShareConfirm()">确认</text>
- </view>
- <view class="modal-body">
- <view class="info-row">
- <view class="label">设备序列号:</view>
- <view class="value">{{ devInfo.clientId }}</view>
- </view>
- <view class="info-row">
- <view class="label">设备名称:</view>
- <view class="value">{{ devInfo.devName }}</view>
- </view>
- <view class="input-row phoneInfo">
- <view>被分享人</view>
- <input
- class="input"
- placeholder="请输入手机号"
- type="number"
- v-model="sharedPhone"
- />
- </view>
- <view class="funChoice">
- <view class="funItem" @click="smChange()">
- <label class="simple-radio">
- <radio
- :value="messageFlag"
- color="#7c5345"
- :checked="messageFlag == true"
- class="hide-original"
- />
- <text>短信权限</text>
- </label>
- </view>
- <view class="funItem">
- <label class="simple-radio" @click="snChange()">
- <radio
- :value="serviceNumberFlag"
- color="#7c5345"
- :checked="serviceNumberFlag == true"
- class="hide-original"
- />
- <text>服务号通知</text>
- </label>
- </view>
- <view class="funItem">
- <label class="simple-radio" @click="vfChange()">
- <radio
- :value="voipFlag"
- color="#7c5345"
- :checked="voipFlag == true"
- class="hide-original"
- />
- <text>语音通话</text>
- </label>
- </view>
- </view>
- </view>
- </view>
- <view class="modal-mask" v-if="choiceVisible" @click="closeChoice">
- <view class="modal-container">
- <view class="modal-header">
- <text class="title">请选择分享方式</text>
- </view>
- <view class="modal-buttons">
- <!-- 手机号分析按钮 -->
- <button class="btn phone-btn" @click="handlePhoneAnalysis">
- <text>手机号分享</text>
- </button>
- <!-- 链接分享按钮 -->
- <button class="btn link-btn" @click="handleLinkShare">
- <text>链接分享</text>
- </button>
- </view>
- </view>
- </view>
- <!-- ECharts图标模块 -->
- <view v-if="breathShow" class="echartsClass">
- <image
- src="../../static/closePng.png"
- class="closePng"
- @click="breathShow = false"
- ></image>
- <l-echart
- id="chart-canvas"
- canvas-id="chart-canvas"
- ref="chartRef"
- @finished="initChart"
- v-if="breathShow"
- @click="breathShow = false"
- ></l-echart>
- </view>
- <alarModel v-if="showModle" ref="alarmModel" />
- </view>
- </template>
- <script>
- // import * as echarts from "../../uni_modules/lime-echart/static/echarts.min";
- import MqttService from "../../utils/globalMqtt.js";
- export default {
- data() {
- return {
- clientId: "",
- width: 0, //检测区域宽度
- length: 0, //检测区域长度
- xOffset: 0,
- yOffset: 0,
- devInfo: "",
- actionName: "",
- startDate: "",
- endDate: "",
- softWare: "",
- statusLight: 0,
- currentDate: new Date().getTime(),
- lnbAction: "action8",
- wsj: false,
- todayWcTimes: "",
- stayDetail: "",
- todayDate: "",
- dev_id: "",
- nowTime: "",
- devName: "",
- devType: "",
- localPhone: uni.getStorageSync("phone"),
- startArr: [],
- freQuenceList: [],
- // mqtt相关
- currentIndex: 0,
- modules: [],
- autoPlayinterval: "",
- choiceVisible: "",
- // 手机号分享授权模块
- shareModel: false,
- alarmModel: false,
- sharedPhone: "",
- messageFlag: true,
- serviceNumberFlag: true,
- voipFlag: true,
- // mqtt模块
- targetPoints: {},
- inactivityTimer: null,
- left: 0,
- top: 0,
- clientIdProp: null,
- breathRate: "",
- breathShow: false,
- breathRpmList: [],
- option: {
- title: [
- {
- text: "呼吸率曲线",
- left: "center",
- top: 20,
- textStyle: { fontSize: 14 },
- },
- {
- text: "BPM: 0 次/分钟",
- left: "center",
- top: 50,
- textStyle: { fontSize: 12, color: "#805246" },
- },
- {
- text: "时间 (秒)",
- left: "right",
- top: "bottom",
- textStyle: { fontSize: 12, color: "#888888" },
- },
- ],
- grid: { left: 60, right: 20, top: 80, bottom: 50 },
- xAxis: {
- type: "category",
- data: Array.from({ length: 60 }, (_, i) => i + 1),
- boundaryGap: false,
- splitLine: { show: false },
- },
- yAxis: {
- type: "value",
- min: 0,
- max: 40,
- name: "呼吸率(次)",
- nameLocation: "end",
- nameGap: 20,
- nameTextStyle: { fontSize: 12, color: "#888888" },
- splitLine: { show: true },
- },
- series: [
- {
- type: "line",
- smooth: true,
- symbol: "none",
- lineStyle: { color: "#805246", width: 2 },
- data: Array(60).fill(0),
- },
- ],
- animation: true,
- animationDuration: 100,
- },
- index: 0,
- showModle: false,
- };
- },
- computed: {},
- methods: {
- getdevInfo(devId) {
- this.$http
- .get(`wap/device/queryDeviceInfoById`, {
- devId: devId,
- })
- .then((res) => {
- if (res.data.data) {
- this.devInfo = res.data.data;
- this.devType = this.devInfo.devType;
- this.width =
- Math.abs(
- this.devInfo.yyEnd - this.devInfo.yyStart
- ) * 100;
- this.length =
- Math.abs(
- this.devInfo.xxEnd - this.devInfo.xxStart
- ) * 100;
- this.xOffset =
- (this.devInfo.xxStart + this.devInfo.xxEnd) * 50;
- this.yOffset =
- -(this.devInfo.yyStart + this.devInfo.yyEnd) * 50;
- this.statusLight = this.devInfo.statusLight;
- }
- })
- .catch((err) => {});
- },
- getdevRoomInfo(devId) {
- this.$http
- .get(`wap/room/readRoom`, {
- devId: devId,
- })
- .then((res) => {
- if (res.data.data) {
- this.modules = res.data.data.furnitures;
- }
- });
- },
- handleLightChange(e) {
- let newValue = e.detail.value == true ? 1 : 0;
- this.$http
- .post(`wap/device/statusLight`, {
- statusLight: newValue,
- devId: this.devInfo.devId,
- })
- .then((res) => {
- if (res.data.code == 200) {
- uni.showToast({
- title: "操作成功",
- icon: "success",
- });
- this.statusLight = newValue;
- } else {
- wx.showToast({
- title: res.data.message,
- icon: "none",
- });
- }
- });
- },
- // 分享功能模块
- shareDevice() {
- this.choiceVisible = true;
- },
- onShareConfirm() {
- if (!this.sharedPhone) {
- uni.showModal({
- content: "请填写手机号!",
- showCancel: false,
- });
- return;
- }
- let reg_tel =
- /^(13[0-9]|14[01456879]|15[0-3,5-9]|16[2567]|17[0-8]|18[0-9]|19[0-3,5-9])\d{8}$/;
- if (!reg_tel.test(this.sharedPhone)) {
- uni.showModal({
- content: "请填写正确手机号!",
- showCancel: false,
- });
- return;
- }
- let shareParam = {
- sharerUserId: uni.getStorageSync("userId"),
- devId: this.devInfo.devId,
- sharerPhone: uni.getStorageSync("phone"),
- sharedUserId: "",
- sharedPhone: this.sharedPhone,
- messageFlag: this.messageFlag == true ? 0 : 1,
- serviceNumberFlag: this.serviceNumberFlag == true ? 0 : 1,
- voipFlag: this.voipFlag == true ? 0 : 1,
- };
- this.$http
- .post("wap/share/deviceShare", shareParam, {
- header: {
- "Content-Type": "application/json;charset=UTF-8",
- },
- })
- .then((res) => {
- if (res.data.code == 200) {
- uni.showToast({
- title: "分享成功",
- icon: "success",
- duration: 1500,
- });
- } else {
- uni.showToast({
- title: res.data.message,
- icon: "none",
- duration: 1500,
- });
- }
- });
- this.shareModel = false;
- },
- closeChoice() {
- this.choiceVisible = false;
- },
- handlePhoneAnalysis() {
- this.choiceVisible = false;
- this.shareModel = true;
- },
- handleLinkShare() {
- this.choiceVisible = false;
- uni.navigateTo({
- url:
- "/pagesA/linkShare/linkShare?devInfo=" +
- JSON.stringify(this.devInfo),
- });
- },
- smChange() {
- this.messageFlag = !this.messageFlag;
- },
- snChange() {
- this.serviceNumberFlag = !this.serviceNumberFlag;
- },
- vfChange() {
- this.voipFlag = !this.voipFlag;
- },
- gotoSetting() {
- if (this.devInfo.online == 0) {
- uni.showToast({
- title: "离线设备不支持设置",
- icon: "none",
- });
- return;
- }
- uni.navigateTo({
- url:
- "/pagesA/deviceSetting/deviceSetting?devInfo=" +
- JSON.stringify(this.devInfo),
- });
- },
- getFrequency(clientId) {
- this.$http
- .post(`wap/stats/alarmEventsQuery`, {
- clientId: clientId,
- createTimeStart: this.$time(new Date()),
- createTimeEnd: this.$time(new Date()),
- eventType: 1,
- })
- .then((res) => {
- if (res.data.code == 200) {
- if (res.data.data.rows.length > 0) {
- this.freQuenceList = this.parseJsonToObjects(
- res.data.data.rows
- );
- } else {
- this.freQuenceList = [];
- }
- } else {
- wx.showToast({
- title: res.data.message,
- icon: "none",
- });
- }
- });
- },
- parseJsonToObjects(jsonArray) {
- return jsonArray.map((item) => {
- // 解析info字段的JSON字符串
- let infoData = {};
- try {
- infoData = JSON.parse(item.info);
- } catch (e) {
- console.error("Failed to parse info JSON:", e);
- }
- return {
- id: item.id,
- clientId: item.clientId,
- tenantId: item.tenantId,
- devName: item.devName,
- uuid: item.uuid,
- planUuid: item.planUuid,
- eventType: item.eventType,
- info: infoData,
- isHandle: item.isHandle,
- createTime: item.createTime,
- remark: item.remark,
- };
- });
- },
- // 健康闹钟方法
- healthAlarm() {
- uni.navigateTo({
- url:
- "/pagesA/healthAlarm/healthAlarm?devInfo=" +
- JSON.stringify(this.devInfo),
- });
- },
- onSwiperChange(event) {
- const current = event.detail.current;
- const totalItems = this.freQuenceList.length;
- if (current === totalItems - 1) {
- this.autoplay = false;
- }
- this.currentIndex = current;
- },
- autoSwipe() {
- if (this.freQuenceList && this.freQuenceList.length > 0) {
- setInterval(() => {
- let nextIndex = this.currentIndex + 1;
- if (nextIndex >= this.freQuenceList.length) {
- nextIndex = 0; // 循环到第一个项目
- }
- this.currentIndex = nextIndex;
- }, 3000); // 每3秒自动滚动一次
- }
- },
- discrepancy() {
- uni.navigateTo({
- url:
- "/pagesA/discrepancy/discrepancy?freQuenceList=" +
- JSON.stringify(this.freQuenceList),
- });
- },
- getCurrentDate() {
- const now = new Date();
- this.currentDate = `${now.getFullYear()}-${
- now.getMonth() + 1
- }月${now.getDate().toString().padStart(2, "0")}日`;
- },
- receptionChange(val) {
- this.targetPoints = val;
- },
- receptHealth(val) {
- this.breathRate = val;
- this.setEcharts(val);
- },
- // echarts图表模块
- getOption(list) {
- // 固定 X 轴 [0 ~ 60]
- const xData = Array.from({ length: 61 }, (_, i) => i);
- const recent = list.slice(-61);
- const data = new Array(61).fill(null);
- for (let i = 0; i < recent.length; i++) {
- data[i] = recent[i];
- }
- return {
- title: [
- { text: "呼吸率曲线", left: "center", top: 20 },
- {
- text: `BPM: ${recent[recent.length - 1] || 0} 次/分钟`,
- left: "center",
- top: 50,
- textStyle: { fontSize: 12, color: "#805246" },
- },
- {
- text: "时间 (秒)",
- left: "right",
- top: "bottom",
- textStyle: {
- fontSize: 10,
- color: "#888888",
- fontWeight: "normal",
- },
- },
- ],
- grid: { left: 60, right: 20, top: 80, bottom: 50 },
- xAxis: {
- type: "category",
- data: xData,
- boundaryGap: false,
- },
- yAxis: {
- type: "value",
- min: 0,
- max: 40,
- name: "呼吸率(次)",
- nameLocation: "end",
- nameGap: 20,
- nameTextStyle: {
- fontSize: 10,
- color: "#888888",
- fontWeight: "normal",
- },
- splitLine: { show: true },
- },
- series: [
- {
- type: "line",
- smooth: true,
- symbol: "none",
- data: data,
- showSymbol: false,
- lineStyle: { color: "#7a4e42", width: 2 },
- },
- ],
- };
- },
- getFrenEcharts() {
- if (this.breathRate === "" || this.breathRate === null) {
- uni.showToast({
- title: "暂无呼吸率",
- icon: "none",
- duration: 1500,
- });
- return;
- }
- this.breathShow = true;
- this.$nextTick(() => {
- this.initChart();
- });
- },
- initChart() {
- if (!this.$refs.chartRef) return;
- if (this.chartInstance) {
- this.chartInstance.dispose();
- this.chartInstance = null;
- }
- this.$refs.chartRef.init(echarts, (chart) => {
- this.chartInstance = chart;
- chart.setOption(this.option, true);
- });
- },
- setEcharts(val) {
- if (!Array.isArray(this.breathRpmList)) {
- this.breathRpmList = [];
- }
- this.breathRpmList.push(val);
- if (!this.chartInstance) return;
- const option = this.getOption(this.breathRpmList);
- this.chartInstance.setOption(option, { notMerge: true });
- },
- saveBreath() {
- const chart = this.$refs.chartRef;
- if (!chart) {
- uni.showToast({ title: "图表未渲染", icon: "none" });
- return;
- }
- chart.canvasToTempFilePath({
- success: (res) => {
- uni.saveImageToPhotosAlbum({
- filePath: res.tempFilePath,
- success: () => {
- uni.showToast({
- title: "保存成功",
- icon: "success",
- });
- },
- fail: (err) => {
- uni.showToast({
- title: "保存失败",
- icon: "none",
- });
- },
- });
- },
- fail: (err) => {
- uni.showToast({
- title: "导出失败",
- icon: "none",
- });
- },
- });
- },
- handleMessage(topic, message, clientId) {
- // 清除不活动定时器
- clearTimeout(this.inactivityTimer);
- this.inactivityTimer = setTimeout(() => {
- this.targetPoints = {};
- console.log("长时间没有点位消除");
- }, 1500);
- // 验证topic格式
- const match = topic.match(/^\/dev\/(.+)\/tracker_targets$/);
- if (!match || match[1] !== clientId) return;
- try {
- const data = JSON.parse(message.toString());
- if (data.health) {
- if (
- data.health.breath_rpm ||
- data.health.breath_rpm === 0
- ) {
- this.receptHealth(Math.floor(data.health.breath_rpm));
- } else {
- }
- }
- this.processTrackerData(data.tracker_targets);
- // console.log(data.tracker_targets, "MQTT消息解析成功22222");
- } catch (e) {
- console.error("MQTT消息解析失败", e);
- }
- },
- processTrackerData(arr) {
- if (Array.isArray(arr) && arr.length > 0 && Array.isArray(arr[0])) {
- this.targetPoints = {};
- const currentIds = new Set();
- const newTargetPoints = {};
- // 处理每个追踪目标
- arr.forEach((item) => {
- if (!Array.isArray(item) || item.length < 4) return;
- const [x, y, z, id] = item;
- currentIds.add(id.toString());
- // 处理新点或更新现有点
- if (!this.targetPoints[id]) {
- newTargetPoints[id] = this.createNewTargetPoint(
- x,
- y,
- z,
- id
- );
- } else {
- newTargetPoints[id] = this.updateExistingTargetPoint(
- this.targetPoints[id],
- x,
- y,
- z,
- 2
- );
- }
- });
- // 移除不存在的点
- Object.keys(this.targetPoints).forEach((id) => {
- if (!currentIds.has(id)) {
- delete this.targetPoints[id];
- }
- });
- // 更新目标点
- this.targetPoints = {
- ...this.targetPoints,
- ...newTargetPoints,
- };
- if (Array.isArray(this.targetPoints)) {
- this.targetPoints = this.targetPoints.filter(
- (item) => item !== null && item !== undefined
- );
- }
- }
- },
- createNewTargetPoint(x, y, z, id) {
- return {
- x,
- y,
- z,
- id,
- displayX: x - Number(this.devInfo.xxStart),
- displayY: y - Number(this.devInfo.yyEnd),
- lastX: x,
- lastY: y,
- };
- },
- updateExistingTargetPoint(existingPoint, x, y, z, THRESHOLD) {
- const dx = x - existingPoint.lastX;
- const dy = y - existingPoint.lastY;
- const distance = Math.sqrt(dx * dx + dy * dy);
- if (distance > THRESHOLD) {
- return {
- ...existingPoint,
- x,
- y,
- z,
- lastX: x,
- lastY: y,
- displayX: x - Number(this.devInfo.xxStart),
- displayY: y - Number(this.devInfo.yyEnd),
- };
- }
- return existingPoint;
- },
- },
- onShow() {
- this.showModle = true;
- this.todayDate = this.$time(new Date(), 2);
- },
- onLoad(options) {
- const devItem = JSON.parse(options.devItem);
- const { devId, clientId } = devItem;
- this.getFrequency(clientId);
- this.getdevInfo(devId);
- this.getdevRoomInfo(devId);
- this.autoPlayinterval = setTimeout(() => {
- this.autoSwipe();
- }, 3000);
- this.getCurrentDate();
- this.clientId = clientId;
- console.log(this.clientId, "clientIDetail");
- this.clientId = clientId;
- let userId = uni.getStorageSync("userId");
- const topic = `/dev/${this.clientId}/tracker_targets`;
- // 使用 MqttService.subscribe 管理订阅
- this.unsubscribeFn = MqttService.subscribe(
- "DATA",
- topic,
- (message, msgTopic) => {
- console.log(`接收到 ${msgTopic} 消息:`, message);
- // 处理消息
- const dataMatch = msgTopic.match(
- /^\/dev\/(.+)\/tracker_targets$/
- );
- const cmdMatch = msgTopic.match(/^\/mps\/wx_(.+)\/notice$/);
- if (dataMatch && dataMatch[1] === this.clientId) {
- this.handleMessage(msgTopic, message, this.clientId);
- } else if (cmdMatch) {
- this.$refs.alarmModel.hanOtherMessage(msgTopic, message);
- }
- }
- );
- if (this.unsubscribeFn) {
- console.log(`✅ 已成功订阅主题: ${topic}`);
- }
- },
- onUnload() {
- this.inactivityTimer = null;
- this.autoPlayinterval = null;
- if (this.unsubscribeFn) {
- this.unsubscribeFn();
- this.unsubscribeFn = null;
- }
- // 关闭 DATA 连接
- // MqttService.disconnectData();
- },
- onHide() {
- this.showModle = false;
- },
- beforeDestroy() {
- console.log("组件销毁时调用");
- },
- };
- </script>
- <style lang="less" scoped>
- .content {
- height: 100vh;
- background: linear-gradient(180deg, #faede2 0%, #f4f4f4 100%);
- box-sizing: border-box;
- padding-top: 20rpx;
- .name_box {
- display: flex;
- justify-content: center;
- align-items: center;
- margin: 0 auto 37rpx 0;
- .name_content {
- display: inline-flex;
- background: rgba(255, 255, 255, 0.65);
- border-radius: 37rpx;
- padding: 6rpx 18rpx;
- }
- }
- .radar-box {
- margin: 0 auto;
- position: relative;
- display: flex;
- align-items: center;
- justify-content: center;
- width: 710rpx;
- height: 710rpx;
- background: #ffffff;
- border-radius: 37.5rpx;
- box-sizing: border-box;
- .center {
- position: absolute;
- background-color: #fff;
- border: 14rpx solid #333333;
- background-image: url("https://hflnxx.oss-cn-shanghai.aliyuncs.com/IMAGE/20250919/toilet_bg.png");
- background-repeat: no-repeat;
- background-position: center;
- transform: scale(1.3);
- .moduleContent {
- position: relative;
- view {
- position: absolute;
- }
- .module-img {
- width: 100%;
- height: 100%;
- display: block;
- }
- }
- }
- .tranStyle {
- position: absolute;
- background-color: #fff;
- border: 9rpx solid #333333;
- background-image: url("https://hflnxx.oss-cn-shanghai.aliyuncs.com/IMAGE/20250919/toilet_bg.png");
- background-repeat: no-repeat;
- background-position: center;
- transform: scale(2.3);
- .moduleContent {
- // overflow: hidden;
- // position: relative;
- view {
- position: absolute;
- }
- .module-img {
- width: 100%;
- height: 100%;
- display: block;
- }
- }
- }
- .action-icon-G {
- position: absolute;
- width: 100rpx;
- height: 100rpx;
- }
- .action-icon-M {
- // position: absolute;
- width: 50rpx;
- height: 50rpx;
- }
- .redar-pic {
- position: absolute;
- left: 50%;
- top: 50%;
- width: 40rpx;
- height: 40rpx;
- transform: translate(-50%, -50%); /* 先居中 */
- }
- }
- .switchBox {
- width: 710rpx;
- height: 94rpx;
- margin: 18rpx auto;
- padding: 0 37rpx;
- display: flex;
- align-items: center;
- background: #ffffff;
- border-radius: 37rpx;
- box-sizing: border-box;
- .name {
- color: #111111;
- font-size: 32rpx;
- }
- }
- .notice-info {
- width: 710rpx;
- max-height: 300rpx;
- // overflow: hidden;
- padding: 30rpx 37rpx 10rpx 37rpx;
- background: #ffffff;
- border-radius: 37rpx;
- box-sizing: border-box;
- margin: 0 auto;
- .notice_title {
- display: flex;
- align-items: space-between;
- image {
- margin-left: auto;
- width: 30rpx;
- height: 30rpx;
- }
- }
- .title {
- margin-top: 10rpx;
- margin-bottom: 10rpx;
- font-family: PingFang SC, PingFang SC;
- font-weight: 500;
- font-size: 34rpx;
- color: #1757dd;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .title-text {
- font-size: 28rpx;
- font-weight: 500;
- color: #1757dd;
- }
- .title-btn {
- font-size: 28rpx;
- font-weight: 500;
- color: #5a5a5a;
- }
- }
- .stayDetail {
- height: 80rpx;
- // overflow: hidden;
- margin-top: 10rpx;
- margin-bottom: 10rpx;
- padding-left: 20rpx;
- font-family: PingFang SC, PingFang SC;
- font-weight: 500;
- font-size: 34rpx;
- .stayDetail-item {
- display: flex;
- padding-bottom: 5rpx !important;
- padding-top: 10rpx !important;
- box-sizing: border-box;
- line-height: 60rpx;
- .stayDetail-text {
- width: 40%;
- font-size: 28rpx;
- height: 30rpx !important;
- }
- .stayDetail-btn {
- padding-left: 30rpx;
- font-size: 28rpx;
- height: 30rpx !important;
- }
- }
- }
- }
- .box {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100vw;
- height: 168rpx;
- padding: 0 37rpx;
- background: #ffffff;
- box-sizing: border-box;
- .handle-btn {
- margin-top: 40rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .btn1 {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 155rpx;
- height: 94rpx;
- background: #ffebe4;
- border-radius: 28rpx;
- font-weight: 500;
- color: #111111;
- font-size: 32rpx;
- text-align: center;
- }
- .btn2 {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 328rpx;
- height: 94rpx;
- background: linear-gradient(
- 105.95deg,
- #a27867 0%,
- #74483d 100%
- );
- border-radius: 28rpx;
- box-shadow: 0rpx 4.69rpx 18.75rpx rgba(72, 41, 29, 0.15),
- 0rpx 9.38rpx 9.38rpx rgba(154, 132, 89, 0.2),
- 0rpx -4.69rpx 28.13rpx 4.69rpx #a16647 inset;
- font-family: MiSans;
- font-weight: 500;
- color: #ffffff;
- font-size: 32rpx;
- }
- .closeBreath {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 328rpx;
- height: 94rpx;
- background: #ffebe4;
- border-radius: 28rpx;
- font-weight: 500;
- color: #111111;
- font-size: 32rpx;
- text-align: center;
- }
- }
- }
- /* 弹窗部分样式 */
- .mask {
- position: fixed;
- left: 0;
- top: 0;
- right: 0;
- bottom: 0;
- background: rgba(0, 0, 0, 0.3);
- z-index: 100;
- }
- .share-modal {
- position: fixed;
- left: 0;
- right: 0;
- bottom: 0;
- background: #fff;
- border-radius: 24rpx 24rpx 0 0;
- z-index: 101;
- height: 750rpx;
- .modal-header {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 32rpx 32rpx 0 32rpx;
- font-size: 30rpx;
- .cancel-btn {
- color: #888;
- font-size: 32rpx;
- }
- .modal-title {
- color: #111111;
- font-size: 36rpx;
- }
- .confirm-btn {
- color: #996e5f;
- font-size: 32rpx;
- }
- }
- .modal-body {
- padding: 50rpx;
- .info-row {
- display: flex;
- margin-bottom: 24rpx;
- font-size: 28rpx;
- padding: 0 20rpx;
- .label {
- color: #111111;
- width: 200rpx;
- font-size: 32rpx;
- text-align-last: justify;
- }
- .value {
- text-align: right;
- width: 65%;
- color: #111111;
- font-size: 32rpx;
- }
- }
- .input-row {
- display: flex;
- align-items: center;
- margin-top: 32rpx;
- border-radius: 40rpx;
- background: #f7f7f7;
- padding: 0 24rpx;
- height: 80rpx;
- .input {
- text-align: right;
- flex: 1;
- border: none;
- background: transparent;
- font-size: 28rpx;
- color: #333;
- }
- }
- .funChoice {
- .funItem {
- .simple-radio {
- display: flex;
- align-items: center;
- padding: 20rpx 0;
- }
- }
- }
- }
- }
- // 分享弹窗样式
- .modal-mask {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: rgba(0, 0, 0, 0.5);
- display: flex;
- justify-content: center;
- align-items: center;
- z-index: 333;
- .modal-container {
- width: 80%;
- background: #fff;
- border-radius: 16rpx;
- // overflow: hidden;
- animation: fadeIn 0.3s;
- .modal-header {
- padding: 30rpx;
- text-align: center;
- border-bottom: 1rpx solid #f5f5f5;
- .title {
- font-size: 36rpx;
- display: block;
- margin-bottom: 10rpx;
- }
- }
- .modal-buttons {
- display: flex;
- flex-direction: column;
- padding: 20rpx;
- .btn {
- flex: 1;
- height: 90rpx;
- margin: 15rpx 0;
- border-radius: 45rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 32rpx;
- border: none;
- background: none;
- position: relative;
- }
- .btn-icon {
- width: 40rpx;
- height: 40rpx;
- margin-right: 15rpx;
- }
- .phone-btn {
- background: linear-gradient(
- 105.95deg,
- #ba978a 0%,
- #a27867 100%
- );
- color: white;
- }
- .link-btn {
- background: linear-gradient(
- 105.95deg,
- #a27867 0%,
- #74483d 100%
- );
- color: white;
- }
- }
- }
- }
- .echartsClass {
- position: absolute;
- width: 650rpx;
- height: 600rpx;
- top: -8%;
- left: -37%;
- transform: translate(50%, 50%);
- background: #ffffff;
- .closePng {
- width: 40rpx;
- height: 40rpx;
- position: fixed;
- top: 10rpx;
- right: 10rpx;
- z-index: 333;
- }
- }
- }
- </style>
|