| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208 | 
							- <!-- 应急疏散 -->
 
- <template>
 
- 	<view id="emergencyEvacuationBig">
 
- 		<view class="setUpEvacuation" v-if="pageType == 1">
 
- 			<view class="evacuation-max-box">
 
- 				<view class="picker-max-box">
 
- 					<view class="picker-title-box">
 
- 						<view></view>
 
- 						<view>楼栋</view>
 
- 					</view>
 
- 					<picker @change="buildingChange" :range-key="'name'" :range="buildingList">
 
- 						<view class="picker-min-box">
 
- 							<view>{{buildingName?buildingName:'请选择楼栋'}}</view>
 
- 							<img :src="imagesUrl('commonality/icon_06.png')">
 
- 						</view>
 
- 					</picker>
 
- 				</view>
 
- 				<view class="picker-max-box">
 
- 					<view class="picker-title-box">
 
- 						<view></view>
 
- 						<view>楼层</view>
 
- 					</view>
 
- 					<picker @change="floorChange" :disabled="!buildingId" :range-key="'name'" :range="floorList">
 
- 						<view class="picker-min-box">
 
- 							<view>{{floorName?floorName:'请选择楼层'}}</view>
 
- 							<img :src="imagesUrl('commonality/icon_06.png')">
 
- 						</view>
 
- 					</picker>
 
- 				</view>
 
- 				<view class="picker-max-box">
 
- 					<view class="picker-title-box">
 
- 						<view></view>
 
- 						<view>实验室</view>
 
- 					</view>
 
- 					<picker @change="fjListChange" :disabled="!floorId" :range-key="'subName'" :range="fjListArray">
 
- 						<view class="picker-min-box">
 
- 							<view>{{subName?subName:'请选择实验室'}}</view>
 
- 							<img :src="imagesUrl('commonality/icon_06.png')">
 
- 						</view>
 
- 					</picker>
 
- 				</view>
 
- 			</view>
 
- 			<view class="setUpEvacuation-bottom-button" @click="confirmBtn">确认</view>
 
- 		</view>
 
- 		<view class="implementEvacuation" v-if="pageType == 2">
 
- 			<view class="evacuation-max-box">
 
- 				<!-- 头部 -->
 
- 				<view class="evacuation-title-box">
 
- 					<view class="evacuation-title-left">
 
- 						<view class="evacuation-title-name-box">{{textFiltration(subName)}}{{roomNum?'('+textFiltration(roomNum)+')':''}}</view>
 
- 						<view class="site"><img :src="imagesUrl('commonality/icon_14.png')">{{textFiltration(buildingName)}}
 
- 							{{textFiltration(floorName)}}
 
- 						</view>
 
- 					</view>
 
- 					<view class="evacuation-title-right" @click="backButton()">选择房间</view>
 
- 				</view>
 
- 				<!-- 地图部分 -->
 
- 				<view class="roadmap">
 
- 					<view class="roadmap_t">
 
- 						<view class="monito_li_r_l"></view>
 
- 						<view class="monito_li_r_r_button" @click="goAllPage">全屏</view>
 
- 					</view>
 
- 					<view class="evacuation-map-box">
 
- 						<view class="emergencyEvacuationBigFullScreen-page" v-if="mapType"
 
- 							:style="'width:'+mapWidth+'rpx;height:'+mapHeight+'rpx;transform: scale('+zoomData+');margin-top:-'+mapHeight/2+'rpx;margin-left:-'+mapWidth/2+'rpx;'">
 
- 							<view class="map-max-box" :style="'width:'+mapWidth+'rpx;height:'+mapHeight+'rpx;'">
 
- 								<!-- 实验室 -->
 
- 								<view class="map-max-for-box for-map-box" v-if="item.type == 1" v-for="(item,index) in mapList"
 
- 									:key="index" :class="!item.policeType && subId ==item.subId ? 'room-type-one':(
 
- 									item.policeType && subId !=item.subId ? 'room-type-two':(
 
- 									item.policeType && subId ==item.subId ? 'room-type-three':(
 
- 									!item.loginAdmin ? 'room-type-noe':'')))"
 
- 									:style="'top:'+item.y+'rpx;left:'+item.x+'rpx;width:'+(item.w-4)+'rpx;height:'+(item.h-4)+'rpx;background:'+item.levelColor+';'">
 
- 									<view class="map-max-for-min-box">
 
- 										<view class="map-for-name-p" :style="'margin-top:'+((item.h/2)-20)+'rpx;'">
 
- 											{{item.roomType == '-99'?item.roomName:item.subName}}
 
- 										</view>
 
- 										<view class="map-for-num-p">({{item.roomNum}})</view>
 
- 										<view class="position-box" :src="imagesUrl('manage/icon_sysbjt_m.png')"
 
- 											:class="minItem.toward=='top'?'center-move-door-p-t':(minItem.toward=='bottom'?'center-move-door-p-b':(minItem.toward=='left'?'center-move-door-p-l':(minItem.toward=='right'?'center-move-door-p-r':'')))"
 
- 											v-for="(minItem,minIndex) in item.doorList" :key="minIndex"
 
- 											:style="'top:'+minItem.y+'rpx;left:'+minItem.x+'rpx;width:'+minItem.w+'rpx;height:'+minItem.h+'rpx;'">
 
- 										</view>
 
- 									</view>
 
- 								</view>
 
- 								<!-- 走廊 -->
 
- 								<view class="map-max-for-box for-map-box-one" v-if="item.type == 2" v-for="(item,index) in mapList"
 
- 									:key="index"
 
- 									:style="'top:'+item.y+'rpx;left:'+item.x+'rpx;width:'+item.w+'rpx;height:'+item.h+'rpx;'">
 
- 									<view class="map-max-for-min-box">
 
- 										<view class="position-box"
 
- 											:class="minItem.state=='1'&&minItem.openType?'lightTopOn':(minItem.state=='1'&&!minItem.openType?'lightTopOff':
 
- 									(minItem.state=='2'&&minItem.openType?'lightBottomOn':(minItem.state=='2'&&!minItem.openType?'lightBottomOff':
 
- 									(minItem.state=='3'&&minItem.openType?'lightLeftOn':(minItem.state=='3'&&!minItem.openType?'lightLeftOff':
 
- 									(minItem.state=='4'&&minItem.openType?'lightRightOn':(minItem.state=='4'&&!minItem.openType?'lightRightOff':'')))))))"
 
- 											v-for="(minItem,minIndex) in item.lightList" :key="minIndex"
 
- 											:style="'top:'+minItem.y+'rpx;left:'+minItem.x+'rpx;width:'+minItem.w+'rpx;height:'+minItem.h+'rpx;'">
 
- 										</view>
 
- 									</view>
 
- 								</view>
 
- 								<!-- 疏散口 -->
 
- 								<view class="map-max-for-box for-map-box-two" v-if="item.type == 3" v-for="(item,index) in mapList"
 
- 									:key="index" :class="item.roomCheckType?'for-map-box-two-check':''"
 
- 									:style="'top:'+item.y+'rpx;left:'+item.x+'rpx;width:'+item.w+'rpx;height:'+item.h+'rpx;'">
 
- 								</view>
 
- 							</view>
 
- 						</view>
 
- 					</view>
 
- 				</view>
 
- 				<!-- 视频部分 -->
 
- 				<!-- <view class="video-max-box">
 
- 				</view> -->
 
- 				<view class="device-type">
 
- 					<view @click="getVideo()">
 
- 						<img :src="imagesUrl('manage/icon_xq_spjk.png')">
 
- 						<view>视频监控</view>
 
- 						<img :src="imagesUrl('commonality/icon_wdwg_gd.png')">
 
- 					</view>
 
- 				</view>
 
- 				<view class="bottom-button-box">
 
- 					<view class="voice" @click="shadeTypeClick()">语音广播</view>
 
- 					<view class="plan" v-if="planStatus" @click="closePlan()">结束预案</view>
 
- 					<view class="evacuate" @click="evacuationButton(1)" v-if="isEvacuate">执行疏散</view>
 
- 					<view class="evacuate" @click="evacuationButton(2)" v-if="!isEvacuate">结束疏散</view>
 
- 				</view>
 
- 			</view>
 
- 			<!-- 语音广播-->
 
- 			<view class="shade-max-big-box" v-if="broadcastType">
 
- 				<view class="null-box" @click="shadeTypeClick()"></view>
 
- 				<!-- 语音广播-执行疏散 -->
 
- 				<view class="broadcast">
 
- 					<view class="broadcast_t">语音广播<label>选择喇叭位置</label></view>
 
- 					<!-- 按钮部分 -->
 
- 					<view class="trumpet-max-box">
 
- 						<view @click="trumpetClick(index)" class="trumpet-for-box"
 
- 							:class="item.type?'trumpet-color-a':'trumpet-color-b'" v-for="(item,index) in trumpetList" :key="index">
 
- 							<img :src="imagesUrl('commonality/icon_sskz_zc.png')" v-if="!item.type">
 
- 							<img :src="imagesUrl('commonality/icon_sskz_xz.png')" v-if="item.type">
 
- 							{{item.deviceName}}
 
- 						</view>
 
- 					</view>
 
- 					<!-- #ifdef MP-WEIXIN -->
 
- 					<view class="broadcast_m">
 
- 						<view class="broadcast_m_t" 
 
- 						:class="liveType?'broadcast_m_t_back_a':'broadcast_m_t_back_b'"
 
- 							@longpress.stop="recordButton" @touchmove.stop="cancelButton" @touchend.stop="sendButton">
 
- 							{{liveType?'松开发送':'按住说话'}}
 
- 						</view>
 
- 						<view class="broadcast_m_b" v-if="!liveType">按住说话,录入广播内容</view>
 
- 						<view class="broadcast_m_b" v-if="liveType">松开发送,向上滑动取消发送</view>
 
- 					</view>
 
- 					<!-- #endif -->
 
- 					<!-- #ifdef WEB -->
 
- 					<view class="broadcast_m no-long-press">
 
- 						<view class="broadcast_m_t no-long-press"
 
- 							:class="liveType?'broadcast_m_t_back_a':'broadcast_m_t_back_b'"
 
- 							@touchstart="handleTouchStart"
 
- 							@touchmove="handleTouchMove"
 
- 							@touchend="handleTouchEnd"
 
- 							@touchcancel="handleTouchEnd"
 
- 							@contextmenu.prevent="handleContextMenu">
 
- 						</view>
 
- 						<!-- @longpress.stop="startRecord" @touchmove.stop="delRecord" @touchend.stop="stopRecord" -->
 
- 						<view class="broadcast_m_b no-long-press" v-if="!liveType">按住说话,录入广播内容</view>
 
- 						<view class="broadcast_m_b no-long-press" v-if="liveType">松开发送,向上滑动取消发送</view>
 
- 					</view>
 
- 					<!-- #endif -->
 
- 				</view>
 
- 			</view>
 
- 		</view>
 
- 		<view></view>
 
- 	</view>
 
- </template>
 
- <script>
 
- 	// #ifdef WEB
 
- 	import Recorder from 'recorder-core';
 
- 	import 'recorder-core/src/engine/mp3';
 
- 	import 'recorder-core/src/engine/mp3-engine';
 
- 	// #endif
 
- 	import {
 
- 		itoOrVideoLimits
 
- 	} from '@/utils/index'
 
- 	import $mqtt from '@/utils/mqtt.min.js';
 
- 	import {
 
- 		config
 
- 	} from '@/api/request/config.js'
 
- 	import {
 
- 		iotAppSpeakerFindHorn,
 
- 		iotAppSpeakerPlayVoice
 
- 	} from '@/pages_manage/api/index.js'
 
- 	import {
 
- 		laboratoryBigViewGetBuildByBigView,
 
- 		laboratoryBigViewSelectTriggerInfo,
 
- 		laboratoryBigViewGetFloorByBigView,
 
- 		laboratoryExitLineGetRedisEvacuation,
 
- 		laboratoryPlanCloseRiskPlan,
 
- 		laboratoryExitLineExecuteEvacuation,
 
- 		laboratoryexitLineEndEvacuation,
 
- 	} from '@/pages_manage/api/index.js'
 
- 	export default {
 
- 		data() {
 
- 			return {
 
- 				videoCover: uni.getStorageSync('videoCover'),
 
- 				//页面状态
 
- 				pageType: "1",
 
- 				deptIndex: 0,
 
- 				//院系楼栋数据
 
- 				buildingList: [],
 
- 				buildingName: "",
 
- 				buildingId: "",
 
- 				//楼层数据
 
- 				floorList: [],
 
- 				floorName: "",
 
- 				floorId: "",
 
- 				//实验室
 
- 				fjListArray: [],
 
- 				//接收参数
 
- 				subId: "",
 
- 				adminId: "",
 
- 				subName: "",
 
- 				roomNum: "",
 
- 				title: "",
 
- 				type: "",
 
- 				//喇叭数据
 
- 				trumpetList: [],
 
- 				//广播相关
 
- 				liveType: false,
 
- 				sendLock: true, //发送锁,当为true时上锁,false时解锁发送
 
- 				recorderManager: wx.getRecorderManager(),
 
- 				isEvacuate: true, //疏散按钮控制,当为true时候执行疏散
 
- 				//滑动记录
 
- 				startPoint: {},
 
- 				//摄像头信息
 
- 				deptId: '',
 
- 				itemData: {
 
- 					hardwareNUM: '',
 
- 					name: '',
 
- 				},
 
- 				broadcastType: false,
 
- 				//选中楼栋
 
- 				checkSubName: "",
 
- 				address: "",
 
- 				videoHardwareNUM: [], //实验室和楼道摄像头编码
 
- 				//新布局地图相关数据
 
- 				zoomData: null,
 
- 				mapType: false,
 
- 				mapList: [],
 
- 				mapWidth: null, //40边框距离
 
- 				mapHeight: null, //40边框距离
 
- 				//MQTT请求参数-预案
 
- 				mtopic: "lab/risk/plan/change",
 
- 				//MQTT请求参数-疏散
 
- 				mtopicOne: "lab/floor/exit/line",
 
- 				client: {},
 
- 				groupId: null,
 
- 				planStatus: false,
 
- 				warnData: null,
 
- 				pageData:null,
 
- 				//H5
 
- 				recording: false,
 
- 				recorder: null,
 
- 				audioBlob: null,
 
- 				audioPath: null,
 
- 				//H5 拖拽
 
- 				touchStartY: 0,
 
- 				isLongPress: false,
 
- 				hasMoved: false,
 
- 				longPressTimer: null,
 
- 				moveDirection: null,
 
- 				hasTriggeredMethod3: false // 确保方法3只触发一次
 
- 			}
 
- 		},
 
- 		onLoad(option) {
 
- 			if (option.item) {
 
- 				let obj = JSON.parse(decodeURIComponent(option.item));
 
- 			console.log('obj',obj)
 
- 				// console.log('obj',obj)
 
- 				if(obj.type == 'skip'){
 
- 					// 新实验室列表跳转进入逻辑
 
- 					this.$set(this, 'pageData', obj);
 
- 					this.$set(this, 'buildingId', obj.buildId);
 
- 					this.$set(this, 'deptId', obj.buildId);
 
- 					this.$set(this, 'floorId', obj.floorId);
 
- 					this.$set(this, 'subId', obj.subId);
 
- 					this.$set(this, 'adminId', obj.adminId);
 
- 					this.$set(this.itemData, 'subjectId', obj.subId);
 
- 					this.$set(this, 'pageType', 2);
 
- 				}else{
 
- 					this.$set(this, 'warnData', obj);
 
- 					this.$set(this, 'buildingId', obj.buildId);
 
- 					this.$set(this, 'deptId', obj.buildId);
 
- 					this.$set(this, 'floorId', obj.floorId);
 
- 					this.$set(this, 'subId', obj.subId);
 
- 					this.$set(this, 'adminId', obj.adminId);
 
- 					this.$set(this.itemData, 'subjectId', obj.subId);
 
- 					this.$set(this, 'groupId', obj.groupId);
 
- 					this.$set(this, 'pageType', 2);
 
- 				}
 
- 			}
 
- 		},
 
- 		onShow() {
 
- 			// if (this.warnData) {
 
- 			// 	this.getDataA();
 
- 			// } else {
 
- 			// 	this.laboratoryBigViewGetBuildByBigView();
 
- 			// }
 
- 			this.getDataA();
 
- 			this.getRedisEvacuation();
 
- 			// #ifdef WEB
 
- 			if (this.recorderManager) {
 
- 				this.recorderManager.stop();
 
- 			}
 
- 			// #endif
 
- 		},
 
- 		onUnload() {},
 
- 		methods: {
 
- 			//跳转进来后的初始化
 
- 			async getDataA() {
 
- 				const {
 
- 					data
 
- 				} = await laboratoryBigViewGetBuildByBigView({
 
- 					type: 2
 
- 				})
 
- 				if(data.code == 200){
 
- 					this.$set(this, 'buildingList', data.data);
 
- 					data.data.forEach((item)=>{
 
- 						if(this.buildingId == item.id){
 
- 							this.$set(this,'buildingName',item.name);
 
- 						}
 
- 					}),
 
- 					this.selectTriggerInfo(1);
 
- 					this.getDataB()
 
- 				}
 
- 			},
 
- 			async getDataB() {
 
- 				const {
 
- 					data
 
- 				} = await laboratoryBigViewGetBuildByBigView({
 
- 					type: 3,
 
- 					id: this.deptId
 
- 				})
 
- 				if (data.code == 200) {
 
- 					this.$set(this, 'floorList', data.data);
 
- 					data.data.forEach((item)=>{
 
- 						if(this.floorId == item.id){
 
- 							this.$set(this,'floorName',item.name);
 
- 						}
 
- 					}),
 
- 					this.selectTriggerInfo(2);
 
- 					this.confirmBtn();
 
- 					this.getBuildingData();
 
- 				}
 
- 			},
 
- 			//返回按钮
 
- 			backButton() {
 
- 				// let self = this;
 
- 				// this.$set(this, 'pageType', 1);
 
- 				// this.laboratoryBigViewGetBuildByBigView();
 
- 				if(this.pageData){
 
- 					uni.navigateBack();
 
- 				}else{
 
- 					uni.redirectTo({
 
- 						url: "/pages_manage/views/emergencyEvacuationSubList",
 
- 					});
 
- 				}
 
- 			},
 
- 			//结束预案
 
- 			closePlan() {
 
- 				let self = this;
 
- 				if(!itoOrVideoLimits(this.adminId)){
 
- 					uni.showToast({
 
- 						title: '没有相关操作权限,请联系管理员',
 
- 						icon: "none",
 
- 						mask: true,
 
- 						duration: 2000
 
- 					});
 
- 					return
 
- 				}
 
- 				uni.showModal({
 
- 					content: '传感器数据监测异常,确定要强制结束预案?关闭报警后,3分钟内系统不再触发预案报警,请核实确认后再执行此操作?',
 
- 					cancelColor: "#999",
 
- 					confirmColor: "#0183FA",
 
- 					success: function(res) {
 
- 						if (res.confirm) {
 
- 							self.closeRiskPlan();
 
- 						} else if (res.cancel) {}
 
- 					}
 
- 				});
 
- 			},
 
- 			//获取视频数据
 
- 			getVideo(){
 
- 				if(!itoOrVideoLimits(this.adminId)){
 
- 					uni.showToast({
 
- 						title: '没有相关操作权限,请联系管理员',
 
- 						icon: "none",
 
- 						mask: true,
 
- 						duration: 2000
 
- 					});
 
- 					return
 
- 				}
 
- 				let obj = {
 
- 					type:5,
 
- 					floorId:this.floorId,
 
- 					subId:this.subId,
 
- 				}
 
- 				uni.navigateTo({
 
- 						url: '/pages_manage/views/laboratory/videoPlayer?item='+encodeURIComponent(JSON.stringify(obj))
 
- 				});
 
- 			},
 
- 			async closeRiskPlan() {
 
- 				// console.log('this.groupId',this.groupId);
 
- 				const {
 
- 					data
 
- 				} = await laboratoryPlanCloseRiskPlan({
 
- 					eventId: this.groupId
 
- 				});
 
- 				if (data.code == 200) {
 
- 					uni.showToast({
 
- 						title: '操作成功',
 
- 						icon: "none",
 
- 						mask: true,
 
- 						duration: 2000
 
- 					});
 
- 					this.selectTriggerInfo();
 
- 				}
 
- 			},
 
- 			//全屏疏散页面
 
- 			goAllPage() {
 
- 				let obj = {
 
- 					buildingId: this.buildingId,
 
- 					floorId: this.floorId,
 
- 					type: 1,
 
- 				}
 
- 				uni.navigateTo({
 
- 					url: '/pages_manage/views/emergencyEvacuationBigFullScreen?item=' + encodeURIComponent(JSON
 
- 						.stringify(obj)),
 
- 				});
 
- 			},
 
- 			//获取楼栋数据
 
- 			async laboratoryBigViewGetBuildByBigView(option) {
 
- 				const {
 
- 					data
 
- 				} = await laboratoryBigViewGetBuildByBigView({
 
- 					type: 2
 
- 				})
 
- 				this.$set(this, 'buildingList', data.data);
 
- 				this.selectTriggerInfo(1);
 
- 			},
 
- 			//获取楼层数据
 
- 			async getBuilding(buildingId) {
 
- 				const {
 
- 					data
 
- 				} = await laboratoryBigViewGetBuildByBigView({
 
- 					type: 3,
 
- 					id: buildingId
 
- 				})
 
- 				this.$set(this, 'floorList', data.data);
 
- 				this.$set(this, 'floorName', "");
 
- 				this.$set(this, 'floorId', "");
 
- 				this.$set(this, 'fjListArray', []);
 
- 				this.$set(this, 'subName', "");
 
- 				this.$set(this, 'subId', "");
 
- 				this.selectTriggerInfo(2);
 
- 			},
 
- 			//楼栋选中
 
- 			buildingChange(e) {
 
- 				this.$set(this, 'buildingName', this.buildingList[e.detail.value].name);
 
- 				this.$set(this, 'buildingId', this.buildingList[e.detail.value].id);
 
- 				this.$set(this, 'deptId', this.buildingList[e.detail.value].id);
 
- 				this.$set(this, 'floorId', null);
 
- 				this.$set(this, 'floorName', null);
 
- 				this.$set(this, 'subId', null);
 
- 				this.$set(this, 'subName', null);
 
- 				this.$set(this.itemData, 'subjectId', null);
 
- 				this.$set(this, 'floorList', []);
 
- 				this.$set(this, 'fjListArray', []);
 
- 				this.getBuilding(this.buildingList[e.detail.value].id);
 
- 			},
 
- 			//楼层选中
 
- 			floorChange(e) {
 
- 				this.$set(this, 'floorName', this.floorList[e.detail.value].name);
 
- 				this.$set(this, 'floorId', this.floorList[e.detail.value].id);
 
- 				this.$set(this, 'subId', null);
 
- 				this.$set(this, 'subName', null);
 
- 				this.$set(this.itemData, 'subjectId', null);
 
- 				this.$set(this, 'fjListArray', []);
 
- 				this.getBuildingData();
 
- 			},
 
- 			//实验室选择
 
- 			fjListChange(e) {
 
- 				this.$set(this, 'subName', this.fjListArray[e.detail.value].subName);
 
- 				this.$set(this, 'subId', this.fjListArray[e.detail.value].subId);
 
- 				this.$set(this.itemData, 'subjectId', this.fjListArray[e.detail.value].subId);
 
- 			},
 
- 			shadeTypeClick() {
 
- 				if(!itoOrVideoLimits(this.adminId)){
 
- 					uni.showToast({
 
- 						title: '没有相关操作权限,请联系管理员',
 
- 						icon: "none",
 
- 						mask: true,
 
- 						duration: 2000
 
- 					});
 
- 					return
 
- 				}
 
- 				this.broadcastType = !this.broadcastType
 
- 			},
 
- 			//获取预案数据
 
- 			async selectTriggerInfo(type) {
 
- 				let self = this;
 
- 				const {
 
- 					data
 
- 				} = await laboratoryBigViewSelectTriggerInfo();
 
- 				if (data.code == 200) {
 
- 					if (type == 1) {
 
- 						//标记楼栋
 
- 						for (let o = 0; o < self.buildingList.length; o++) {
 
- 							for (let i = 0; i < data.data.length; i++) {
 
- 								if (data.data[i].buildId == self.buildingList[o].id) {
 
- 									self.buildingList[o].name = self.textFiltration(self.buildingList[o].name)
 
- 									self.buildingList[o].name = '(预案发生) ' + self.buildingList[o].name
 
- 								}
 
- 							}
 
- 						}
 
- 					}
 
- 					if (type == 2) {
 
- 						//标记楼层
 
- 						for (let o = 0; o < self.floorList.length; o++) {
 
- 							for (let i = 0; i < data.data.length; i++) {
 
- 								if (data.data[i].floorId == self.floorList[o].id) {
 
- 									self.floorList[o].name = self.textFiltration(self.floorList[o].name)
 
- 									self.floorList[o].name = '(预案发生) ' + self.floorList[o].name
 
- 								}
 
- 							}
 
- 						}
 
- 					}
 
- 					if (type == 3) {
 
- 						//标记实验室
 
- 						let bigNum = 0;
 
- 						for (let o = 0; o < self.fjListArray.length; o++) {
 
- 							let num = 0;
 
- 							for (let i = 0; i < data.data.length; i++) {
 
- 								if (data.data[i].subId == self.fjListArray[o].subId) {
 
- 									num++
 
- 									bigNum++
 
- 									self.$set(this, 'groupId', data.data[i].eventId)
 
- 									self.fjListArray[o].subName = self.textFiltration(self.fjListArray[o].subName)
 
- 									self.fjListArray[o].subName = '(预案发生) ' + self.fjListArray[o].subName
 
- 								}
 
- 							}
 
- 							if (num == 0) {
 
- 								self.fjListArray[o].subName = self.textFiltration(self.fjListArray[o].subName)
 
- 							}
 
- 						}
 
- 						if (bigNum != 0) {
 
- 							self.$set(self, 'planStatus', true)
 
- 						} else {
 
- 							self.$set(self, 'planStatus', false)
 
- 						}
 
- 						for (let o = 0; o < self.mapList.length; o++) {
 
- 							if (self.mapList[o].type == 1) {
 
- 								let num = 0;
 
- 								for (let i = 0; i < data.data.length; i++) {
 
- 									if (data.data[i].subId == self.mapList[o].subId) {
 
- 										num++
 
- 									}
 
- 								}
 
- 								if (num != 0) {
 
- 									self.mapList[o].policeType = true;
 
- 								} else {
 
- 									self.mapList[o].policeType = false;
 
- 								}
 
- 							}
 
- 						}
 
- 					}
 
-           this.$forceUpdate();
 
- 				}
 
- 			},
 
- 			getAppExitLine() {
 
- 				let list = [{
 
- 					type: "lab/exit/line"
 
- 				}, {
 
- 					type: "lab/fireDevice/Warn/"
 
- 				}];
 
- 				getApp().appMqttOn(1, list);
 
- 			},
 
- 			//点击选择喇叭
 
- 			trumpetClick(index) {
 
- 				this.trumpetList[index].type = !this.trumpetList[index].type
 
- 				// let _this = this;
 
- 				// if (_this.trumpetList[index].type == true) {
 
- 				//   _this.trumpetList.forEach(function(item2) {
 
- 				//     if (item2.deviceSn == _this.trumpetList[index].deviceSn) {
 
- 				//       item2.type = true
 
- 				//     } else {
 
- 				//       item2.type = false
 
- 				//     }
 
- 				//   })
 
- 				// }
 
- 			},
 
- 			//录制
 
- 			recordButton(e) {
 
- 				// console.log("按下")
 
- 				let self = this;
 
- 				let num = 0;
 
- 				for (let i = 0; i < self.trumpetList.length; i++) {
 
- 					if (self.trumpetList[i].type) {
 
- 						num++
 
- 					}
 
- 				}
 
- 				if (num == 0) {
 
- 					uni.showToast({
 
- 						title: '请选择喇叭',
 
- 						icon: "none",
 
- 						mask: true,
 
- 						duration: 2000
 
- 					});
 
- 					return
 
- 				}
 
- 				this.liveType = true;
 
- 				// console.log('录制', e)
 
- 				this.startPoint = e.touches[0]; //记录长按时开始点信息,后面用于计算上划取消时手指滑动的距离。
 
- 				const options = {
 
- 					duration: 10000,
 
- 					sampleRate: 16000,
 
- 					numberOfChannels: 1,
 
- 					encodeBitRate: 48000,
 
- 					format: 'mp3',
 
- 					frameSize: 50
 
- 				}
 
- 				this.recorderManager.start(options); //开始录音
 
- 				this.recorderManager.onStart(() => {
 
- 					// console.log('recorder start')
 
- 				})
 
- 				this.recorderManager.onError((res) => {
 
- 					// console.log(res);
 
- 				})
 
- 				wx.showToast({
 
- 					title: "正在录音,上划取消发送",
 
- 					icon: "none",
 
- 					duration: 60000 //先定义个60秒,后面可以手动调用wx.hideToast()隐藏
 
- 				});
 
- 				this.sendLock = false; //长按时是不上锁的。
 
- 			},
 
- 			//取消
 
- 			cancelButton(e) {
 
- 				// console.log("移动")
 
- 				let self = this;
 
- 				let num = 0;
 
- 				for (let i = 0; i < self.trumpetList.length; i++) {
 
- 					if (self.trumpetList[i].type) {
 
- 						num++
 
- 					}
 
- 				}
 
- 				if (num == 0) {
 
- 					return
 
- 				}
 
- 				this.liveType = false;
 
- 				// console.log('取消', e)
 
- 				let moveLenght = e.touches[e.touches.length - 1].clientY - this.startPoint.clientY; //移动距离
 
- 				if (Math.abs(moveLenght) > 50) {
 
- 					wx.showToast({
 
- 						title: "松开手指,取消发送",
 
- 						icon: "none",
 
- 						duration: 60000
 
- 					});
 
- 					this.sendLock = true; //触发了上滑取消发送,上锁
 
- 				} else {
 
- 					wx.showToast({
 
- 						title: "正在录音,上划取消发送",
 
- 						icon: "none",
 
- 						duration: 60000
 
- 					});
 
- 					this.sendLock = false; //上划距离不足,依然可以发送,不上锁
 
- 				}
 
- 			},
 
- 			//发送
 
- 			sendButton(e) {
 
- 				// console.log("松开")
 
- 				let self = this;
 
- 				let num = 0;
 
- 				for (let i = 0; i < self.trumpetList.length; i++) {
 
- 					if (self.trumpetList[i].type) {
 
- 						num++
 
- 					}
 
- 				}
 
- 				if (num == 0) {
 
- 					return
 
- 				}
 
- 				this.liveType = false;
 
- 				// console.log('发送', e)
 
- 				wx.hideToast(); //结束录音、隐藏Toast提示框
 
- 				this.recorderManager.stop(); //结束录音
 
- 				this.recorderManager.onStop((res) => {
 
- 					if (!this.sendLock) {
 
- 						// console.log('1', this.recorderManager)
 
- 						this.uploadImg(res.tempFilePath);
 
- 					}
 
- 					// console.log('停止录音', res.tempFilePath)
 
- 					// console.log("sendLock", this.sendLock);
 
- 				})
 
- 			},
 
- 			//上传MP3
 
- 			async uploadImg(tempFilePaths) {
 
- 				var self = this;
 
- 				uni.uploadFile({
 
- 					url: config.base_url + '/system/file/upload', //仅为示例,非真实的接口地址
 
- 					header: {
 
- 						'Authorization': uni.getStorageSync('token')
 
- 					},
 
- 					filePath: tempFilePaths,
 
- 					name: 'file',
 
- 					formData: {
 
- 						'user': 'test'
 
- 					},
 
- 					success: (uploadFileRes) => {
 
- 						let res = JSON.parse(uploadFileRes.data);
 
- 						if (res.code == 200) {
 
- 							// console.log("上传成功", res)
 
- 							let url = uni.getStorageSync('fileBrowseEnvironment') + '/' + res.data.url
 
- 							self.iotAppSpeakerPlayVoice(url);
 
- 						} else {
 
- 							uni.showToast({
 
- 								title: res.msg,
 
- 								icon: "none",
 
- 								mask: true,
 
- 								duration: 2000
 
- 							});
 
- 						}
 
- 					},
 
- 					fail: err => {
 
- 						uni.hideLoading()
 
- 					},
 
- 					complete: () => {}
 
- 				});
 
- 			},
 
- 			//发送语音
 
- 			async iotAppSpeakerPlayVoice(text) {
 
- 				let self = this;
 
- 				let list = [];
 
- 				for (let i = 0; i < self.trumpetList.length; i++) {
 
- 					if (self.trumpetList[i].type) {
 
- 						list.push(self.trumpetList[i].deviceNo)
 
- 					}
 
- 				}
 
- 				let obj = {
 
- 					deviceNo: list.join(','),
 
- 					voiceUrls: text,
 
- 					cycle: 1,
 
- 					level:1000,
 
- 				}
 
- 				const {
 
- 					data
 
- 				} = await iotAppSpeakerPlayVoice(obj)
 
- 				if (data.code == 200) {
 
- 					uni.showToast({
 
- 						title: '发送成功',
 
- 						icon: "none",
 
- 						mask: true,
 
- 						duration: 2000
 
- 					});
 
- 				}
 
- 			},
 
- 			//监听应急疏散数据变更
 
- 			getMqttLineData(val) {
 
- 				// console.log('收到疏散MQTT')
 
- 				let self = this;
 
- 				if (val.EXIT_LINE_MESSAGE) {
 
- 					// console.log('数据改变')
 
- 					this.evacuate();
 
- 				} else {
 
- 					// console.log('应急疏散已结束')
 
- 					uni.showToast({
 
- 						title: '应急疏散已结束',
 
- 						icon: "none",
 
- 						mask: true,
 
- 						duration: 2000
 
- 					});
 
- 					setTimeout(function() {
 
- 						uni.navigateBack();
 
- 					}, 2000);
 
- 				}
 
- 			},
 
- 			/* 确认 */
 
- 			confirmBtn() {
 
- 				if (!this.subId) {
 
- 					uni.showToast({
 
- 						title: '请选择实验室',
 
- 						icon: "none",
 
- 						mask: true,
 
- 						duration: 2000
 
- 					});
 
- 					return
 
- 				}
 
- 				this.$set(this, 'pageType', 2);
 
- 				this.getDeviceList();
 
- 				this.getRedisEvacuation();
 
- 			},
 
- 			//执行疏散
 
- 			async lineEvacuate() {
 
- 				let obj = {
 
- 					buildingId: this.buildingId,
 
- 					floorId: this.floorId,
 
- 					type: 2,
 
- 				}
 
- 				uni.navigateTo({
 
- 					url: '/pages_manage/views/emergencyEvacuationBigFullScreen?item=' + encodeURIComponent(JSON
 
- 						.stringify(obj)),
 
- 				});
 
- 			},
 
- 			//获取喇叭列表
 
- 			async getDeviceList() {
 
- 				let obj = {
 
- 					subId: this.itemData.subjectId,
 
- 					floorId: this.floorId,
 
- 				};
 
- 				const {
 
- 					data
 
- 				} = await iotAppSpeakerFindHorn(obj)
 
- 				if (data.code == 200) {
 
- 					for (let i = 0; i < data.data.length; i++) {
 
- 						data.data[i].type = false;
 
- 					}
 
- 					this.$set(this, 'trumpetList', data.data)
 
- 				}
 
- 			},
 
- 			//摄像头切换
 
- 			scrollBoxClick(index) {
 
- 				this.videoIndex = index;
 
- 			},
 
- 			/*新疏散相关接口*/
 
- 			//地图数据
 
- 			async getBuildingData() {
 
- 				let self = this;
 
- 				const {
 
- 					data
 
- 				} = await laboratoryBigViewGetFloorByBigView({
 
- 					id: this.floorId
 
- 				})
 
- 				const hex2Rgba = (bgColor) => {
 
- 					let color = bgColor.slice(1); // 去掉'#'号
 
- 					let rgba = [
 
- 						parseInt("0x" + color.slice(0, 2)),
 
- 						parseInt("0x" + color.slice(2, 4)),
 
- 						parseInt("0x" + color.slice(4, 6)),
 
- 						0.6
 
- 					];
 
- 					return "rgba(" + rgba.toString() + ")";
 
- 				};
 
- 				// console.log('data', data)
 
- 				if (data.code == 200) {
 
- 					if (data.data[0].buildLayoutVoList[0]) {
 
- 						let list = JSON.parse(data.data[0].labExitLineVo.layoutJoinData)
 
- 						this.zoomCalculate(list, 348, 668);
 
- 						for (let i = 0; i < list.length; i++) {
 
- 							if (list[i].type == '2') {
 
- 								//楼道
 
- 								for (let o = 0; o < list[i].lightList.length; o++) {
 
- 									list[i].lightList[o].openType = false;
 
- 								}
 
- 							} else if (list[i].type == '1') {
 
- 								for (let o = 0; o < data.data[0].buildLayoutVoList.length; o++) {
 
- 									if (list[i].key == data.data[0].buildLayoutVoList[o].pointName) {
 
- 										list[i].id = data.data[0].buildLayoutVoList[o].id;
 
- 										list[i].buildId = data.data[0].buildLayoutVoList[o].buildId;
 
- 										list[i].floorId = data.data[0].buildLayoutVoList[o].floorId;
 
- 										list[i].roomType = data.data[0].buildLayoutVoList[o].roomType;
 
- 										list[i].roomName = data.data[0].buildLayoutVoList[o].roomName;
 
- 										list[i].roomNum = data.data[0].buildLayoutVoList[o].roomNum;
 
- 										list[i].subName = data.data[0].buildLayoutVoList[o].subName;
 
- 										list[i].subId = data.data[0].buildLayoutVoList[o].subId;
 
- 										list[i].online = data.data[0].buildLayoutVoList[o].online;
 
- 										list[i].loginAdmin = data.data[0].buildLayoutVoList[o].loginAdmin;
 
- 										list[i].levelColor = data.data[0].buildLayoutVoList[o].levelColor?hex2Rgba(data.data[0].buildLayoutVoList[o].levelColor):'';
 
- 										list[i].policeType = false;
 
- 									}
 
- 								}
 
- 							} else if (list[i].type == 3) {
 
- 								list[i].roomCheckType = false;
 
- 							}
 
- 						}
 
- 						let subList = [];
 
- 						for (let o = 0; o < data.data[0].buildLayoutVoList.length; o++) {
 
- 							subList.push(data.data[0].buildLayoutVoList[o])
 
- 							// if (self.subId == data.data[0].buildLayoutVoList[o].subId) {
 
- 							// 	self.$set(self, 'checkSubName', data.data[0].buildLayoutVoList[o].subName);
 
- 							// 	self.$set(self, 'address', data.data.labExitLineVo.buildName + '' + data.data[0]
 
- 							// 		.labExitLineVo.floorName);
 
- 							// }
 
- 						}
 
- 						this.$set(this, 'fjListArray', subList);
 
- 						subList.forEach((item)=>{
 
- 							if(this.subId == item.subId){
 
- 								this.$set(this,'roomNum',item.roomNum);
 
- 								this.$set(this,'subName',item.subName);
 
- 							}
 
- 						})
 
- 						this.$set(this, 'mapList', JSON.parse(JSON.stringify(list)));
 
- 						// this.$set(this, 'shadeMapList', JSON.parse(JSON.stringify(list)));
 
- 						this.$set(this, 'mapType', true);
 
- 						this.offMQTT('on');
 
- 						this.selectTriggerInfo(3);
 
- 					}
 
- 					setTimeout(function() {
 
- 						self.getRedisEvacuation();
 
- 					}, 500);
 
- 				}
 
- 			},
 
- 			//获取疏散数据
 
- 			async getRedisEvacuation() {
 
- 				let self = this;
 
- 				let obj = {
 
- 					buildId: this.buildingId,
 
- 					floorId: this.floorId,
 
- 				}
 
- 				const {
 
- 					data
 
- 				} = await laboratoryExitLineGetRedisEvacuation(obj)
 
- 				if (data.code == 200) {
 
- 					if (data.data.doorPointNames) {
 
- 						this.$set(this, 'isEvacuate', false);
 
- 						for (let o = 0; o < self.mapList.length; o++) {
 
- 							if (self.mapList[o].type == 2) {
 
- 								for (let x = 0; x < self.mapList[o].lightList.length; x++) {
 
- 									let num = 0;
 
- 									for (let i = 0; i < data.data.lightPointSet.length; i++) {
 
- 										if (data.data.lightPointSet[i]) { //处理后端返回的异常的NULL
 
- 											if (self.mapList[o].lightList[x].key == data.data.lightPointSet[i].key) {
 
- 												num++
 
- 											}
 
- 										}
 
- 									}
 
- 									self.mapList[o].lightList[x].openType = num != 0;
 
- 								}
 
- 							}
 
- 							if (self.mapList[o].type == 3) {
 
- 								let age = 0;
 
- 								for (let i = 0; i < data.data.doorPointNames.length; i++) {
 
- 									if (data.data.doorPointNames[i] == self.mapList[o].key) {
 
- 										age++
 
- 									}
 
- 								}
 
- 								self.mapList[o].roomCheckType = age != 0;
 
- 							}
 
- 						}
 
- 					} else {
 
- 						this.$set(this, 'isEvacuate', true);
 
- 						for (let o = 0; o < self.mapList.length; o++) {
 
- 							if (self.mapList[o].type == 2) {
 
- 								for (let x = 0; x < self.mapList[o].lightList.length; x++) {
 
- 									self.mapList[o].lightList[x].openType = false;
 
- 								}
 
- 							}
 
- 							if (self.mapList[o].type == 3) {
 
- 								self.mapList[o].roomCheckType = false;
 
- 							}
 
- 						}
 
- 					}
 
- 				};
 
- 			},
 
- 			//缩放计算
 
- 			zoomCalculate(list, height, width) {
 
- 				let maxWidth = 0
 
- 				let maxHeight = 0
 
- 				let zoomData = 1;
 
- 				for (let i = 0; i < list.length; i++) {
 
- 					if ((list[i].x + list[i].w) > maxWidth) {
 
- 						maxWidth = list[i].x + list[i].w
 
- 					}
 
- 					if ((list[i].y + list[i].h) > maxHeight) {
 
- 						maxHeight = list[i].y + list[i].h
 
- 					}
 
- 				}
 
- 				//处理等值数据
 
- 				if (maxHeight == height) {
 
- 					maxHeight--
 
- 				}
 
- 				if (maxWidth == width) {
 
- 					maxWidth--
 
- 				}
 
- 				this.$set(this, 'mapWidth', maxWidth);
 
- 				this.$set(this, 'mapHeight', maxHeight);
 
- 				//缩放判断
 
- 				let zoomNumOne = height / maxHeight;
 
- 				if (parseInt(this.accMul(zoomNumOne, maxHeight)) <= height && parseInt(this.accMul(zoomNumOne,
 
- 						maxWidth)) <= width) {
 
- 					zoomData = zoomNumOne;
 
- 					this.$set(this, 'zoomData', zoomNumOne);
 
- 				}
 
- 				let zoomNumTwo = width / maxWidth;
 
- 				if (parseInt(this.accMul(zoomNumTwo, maxHeight)) <= height && parseInt(this.accMul(zoomNumTwo,
 
- 						maxWidth)) <= width) {
 
- 					zoomData = zoomNumTwo;
 
- 					this.$set(this, 'zoomData', zoomNumTwo);
 
- 				}
 
- 			},
 
- 			accMul(arg1, arg2) {
 
- 				var m = 0,
 
- 					s1 = arg1.toString(),
 
- 					s2 = arg2.toString();
 
- 				try {
 
- 					m += s1.split(".")[1].length
 
- 				} catch (e) {}
 
- 				try {
 
- 					m += s2.split(".")[1].length
 
- 				} catch (e) {}
 
- 				return Number(s1.replace(".", "")) * Number(s2.replace(".", "")) / Math.pow(10, m)
 
- 			},
 
- 			//结束疏散
 
- 			evacuationButton() {
 
- 				let self = this;
 
- 				if(!itoOrVideoLimits(this.adminId)){
 
- 					uni.showToast({
 
- 						title: '没有相关操作权限,请联系管理员',
 
- 						icon: "none",
 
- 						mask: true,
 
- 						duration: 2000
 
- 					});
 
- 					return
 
- 				}
 
- 				if (this.isEvacuate) {
 
- 					let obj = {
 
- 						buildingId: this.buildingId,
 
- 						floorId: this.floorId,
 
- 						subId: this.subId,
 
- 						type: 2,
 
- 					}
 
- 					uni.navigateTo({
 
- 						url: '/pages_manage/views/emergencyEvacuationBigFullScreen?item=' + encodeURIComponent(JSON
 
- 							.stringify(obj)),
 
- 					});
 
- 				} else {
 
- 					uni.showModal({
 
- 						content: '确认' + (this.isEvacuate ? '执行' : '结束') + '疏散吗?',
 
- 						cancelColor: "#999",
 
- 						confirmColor: "#0183FA",
 
- 						success: function(res) {
 
- 							if (res.confirm) {
 
- 								if (self.isEvacuate) {
 
- 									self.executeEvacuation();
 
- 								} else {
 
- 									self.endEvacuation();
 
- 								}
 
- 								// console.log('用户点击确定');
 
- 							} else if (res.cancel) {
 
- 								// console.log('用户点击取消');
 
- 							}
 
- 						}
 
- 					});
 
- 				}
 
- 			},
 
- 			//开始疏散
 
- 			async executeEvacuation() {
 
- 				let self = this;
 
- 				let doorPointNames = [];
 
- 				for (let i = 0; i < self.mapList.length; i++) {
 
- 					if (self.mapList[i].type == 3) {
 
- 						doorPointNames.push(self.mapList[i].key)
 
- 					}
 
- 				}
 
- 				let obj = {
 
- 					buildId: this.buildingId,
 
- 					floorId: this.floorId,
 
- 					subId: this.subId,
 
- 					badPointNames: [],
 
- 					doorPointNames: doorPointNames,
 
- 				}
 
- 				const {
 
- 					data
 
- 				} = await laboratoryExitLineExecuteEvacuation(obj)
 
- 				// console.log('data', data)
 
- 				if (data.code == 200) {
 
- 					this.$set(this, 'isEvacuate', false);
 
- 					uni.showToast({
 
- 						title: '执行成功',
 
- 						icon: "none",
 
- 						mask: true,
 
- 						duration: 2000
 
- 					});
 
- 				}
 
- 			},
 
- 			//结束疏散
 
- 			async endEvacuation() {
 
- 				let self = this;
 
- 				let obj = {
 
- 					buildId: this.buildingId,
 
- 					floorId: this.floorId,
 
- 				}
 
- 				const {
 
- 					data
 
- 				} = await laboratoryexitLineEndEvacuation(obj)
 
- 				// console.log('data', data)
 
- 				if (data.code == 200) {
 
- 					this.$set(this, 'isEvacuate', true);
 
- 					uni.showToast({
 
- 						title: '执行成功',
 
- 						icon: "none",
 
- 						mask: true,
 
- 						duration: 2000
 
- 					});
 
- 					if (this.warnData) {
 
- 						this.getDataA();
 
- 					} else {
 
- 						this.laboratoryBigViewGetBuildByBigView();
 
- 					}
 
- 					this.getRedisEvacuation();
 
- 				}
 
- 			},
 
- 			videoErrorCallback(e) {
 
- 				//console.log("播放失败",e);
 
- 				// uni.showToast({
 
- 				//     title: '视频播放失败',
 
- 				//     icon:"none",
 
- 				//     mask:true,
 
- 				//     duration: 3000
 
- 				// });
 
- 			},
 
- 			//过滤'预案发生'标记文字并返回数据
 
- 			textFiltration(str) {
 
- 				if(str){
 
- 					if (str.indexOf("(预案发生)") != -1) {
 
- 						return str.slice(str.indexOf(")") + 1);
 
- 					} else {
 
- 						return str
 
- 					}
 
- 				}else{
 
- 					return str
 
- 				}
 
- 			},
 
- 			//MQTT订阅
 
- 			sensorMQTT() {
 
- 				let self = this;
 
- 				this.client = $mqtt.connect(
 
- 				// #ifdef WEB
 
- 				'wss://' + uni.getStorageSync('mqttUrl')
 
- 				// #endif
 
- 				// #ifdef MP-WEIXIN
 
- 				'wxs://' + uni.getStorageSync('mqttUrl')
 
- 				// #endif
 
- 				, {
 
- 					username: uni.getStorageSync('mqttUser'),
 
- 					password: uni.getStorageSync('mqttPassword')
 
- 				});
 
- 				this.client.on("connect", e => {
 
- 					this.client.subscribe(this.mtopic, (err) => {
 
- 						if (!err) {
 
- 							console.log("预案订阅成功:" + this.mtopic);
 
- 						} else {
 
- 							// console.log("连接错误:" + err);
 
- 						}
 
- 					});
 
- 					this.client.subscribe(this.mtopicOne, (err) => {
 
- 						if (!err) {
 
- 							console.log("疏散订阅成功:" + this.mtopicOne);
 
- 						} else {
 
- 							// console.log("连接错误:" + err);
 
- 						}
 
- 					});
 
- 				});
 
- 				this.client.on("message", (topic, message) => {
 
- 					// console.log('message', message);
 
- 					// console.log('topic,', topic);
 
- 					if (message) {
 
- 						if (topic == this.mtopic) {
 
- 							//预案触发
 
- 							this.selectTriggerInfo(3);
 
- 						} else if (topic == this.mtopicOne) {
 
- 							//疏散触发
 
- 							this.getRedisEvacuation();
 
- 						}
 
- 					}
 
- 				});
 
- 			},
 
- 			//取消订阅关闭MQTT连接
 
- 			offMQTT(type) {
 
- 				let self = this;
 
- 				if (self.client.unsubscribe) {
 
- 					self.client.unsubscribe(self.mtopicOne, error => {
 
- 						if (error) {
 
- 							// console.log('mqtt关闭连接错误:', error)
 
- 						}
 
- 					})
 
- 					self.client.unsubscribe(self.mtopic, error => {
 
- 						if (error) {
 
- 							// console.log('mqtt关闭连接错误:', error)
 
- 						}
 
- 					})
 
- 					self.client.end();
 
- 					this.$set(this, 'client', {});
 
- 				}
 
- 				//判断传入参数如果存在 发起一次新的连接
 
- 				if (type) {
 
- 					this.sensorMQTT();
 
- 				}
 
- 			},
 
- 			// #ifdef WEB
 
- 			/* H5 */
 
- 			async initRecorder() {
 
- 				try {
 
- 					// 获取麦克风权限
 
- 					const stream = await navigator.mediaDevices.getUserMedia({ audio: true });
 
- 					
 
- 					this.recorder = new Recorder({
 
- 						type: "mp3", // 输出格式
 
- 						bitRate: 128, // 比特率
 
- 						sampleRate: 44100 // 采样率
 
- 					});
 
- 					
 
- 					this.recorder.open(() => {
 
- 						// console.log("录音器初始化成功");
 
- 						this.recorder.start(); // 初始化后立即开始录音
 
- 					}, (error) => {
 
- 						console.error("录音器初始化失败:", error);
 
- 						uni.showToast({
 
- 							title: '麦克风权限获取失败,请允许麦克风权限',
 
- 							icon: "none",
 
- 							mask: true,
 
- 							duration: 2000
 
- 						});
 
- 					});
 
- 				} catch (err) {
 
- 					console.error("获取麦克风失败:", err);
 
- 					uni.showToast({
 
- 						title: '请允许麦克风权限',
 
- 						icon: "none",
 
- 						mask: true,
 
- 						duration: 2000
 
- 					});
 
- 				}
 
- 			},
 
- 			// 开始录音
 
- 			async startRecord() {
 
- 				let self = this;
 
- 				if (!this.recorder) {
 
- 					await this.initRecorder();
 
- 					// this.startRecord()
 
- 					return;
 
- 				}
 
- 				let num = 0;
 
- 				for (let i = 0; i < self.trumpetList.length; i++) {
 
- 					if (self.trumpetList[i].type) {
 
- 						num++
 
- 					}
 
- 				}
 
- 				if (num == 0) {
 
- 					uni.showToast({
 
- 						title: '请选择喇叭',
 
- 						icon: "none",
 
- 						mask: true,
 
- 						duration: 2000
 
- 					});
 
- 					return
 
- 				}
 
- 				this.recorder.start();
 
- 				this.recording = true;
 
- 				this.liveType = true;
 
- 				uni.showToast({ title: "录音开始", icon: "none" });
 
- 			},
 
- 			// 停止录音
 
- 			stopRecord() {
 
- 				if (!this.recorder || !this.recording) return;
 
- 				this.recorder.stop((blob, duration) => {
 
- 					this.recording = false;
 
- 					this.liveType = false;
 
- 					this.audioBlob = blob;
 
- 					// 生成临时文件路径
 
- 					this.audioPath = URL.createObjectURL(blob);
 
- 					this.uploadAudio();
 
- 				}, (error) => {
 
- 					console.error("录音失败:", error);
 
- 					uni.showToast({ title: "录音失败", icon: "none" });
 
- 				});
 
- 			},
 
- 			delRecord(){
 
- 				this.recorder.stop((blob, duration) => {
 
- 					this.recording = false;
 
- 					this.liveType = false;
 
- 					this.audioBlob = null;
 
- 					this.audioPath = null;
 
- 				})
 
- 			},
 
- 			// 上传录音文件
 
- 			uploadAudio() {
 
- 				let self = this;
 
- 				if (!this.audioBlob) return;
 
- 				// 1. 通过fetch获取Blob数据
 
- 				fetch(this.audioPath)
 
- 					.then(response => response.blob())
 
- 					.then(blob => {
 
- 						// 2. 将Blob转换为File对象
 
- 						const file = new File([blob], 'audio.mp3', { type: 'audio/mp3' });
 
- 						// console.log('file',file);
 
- 						// 3. 使用uni.uploadFile上传
 
- 						uni.uploadFile({
 
- 							url: config.base_url + '/system/file/upload',
 
- 							header: {
 
- 								'Authorization': uni.getStorageSync('token')
 
- 							},
 
- 							file: file,
 
- 							name: 'file',
 
- 							formData: {
 
- 								'user': 'test'
 
- 							},
 
- 							success: (res) => {
 
- 								// #ifdef WEB
 
- 								let obj = JSON.parse(res.data);
 
- 								// console.log('上传成功', obj);
 
- 								let url = uni.getStorageSync('fileBrowseEnvironment') + '/' + obj.data.url
 
- 								// #endif
 
- 								// #ifdef MP-WEIXIN
 
- 								// console.log('上传成功', res);
 
- 								let url = uni.getStorageSync('fileBrowseEnvironment') + '/' + res.data.url
 
- 								// #endif
 
- 								// console.log('url=====',url)
 
- 								self.iotAppSpeakerPlayVoice(url);
 
- 							},
 
- 							fail: (err) => {
 
- 								console.error('上传失败', err);
 
- 								uni.showToast({
 
- 									title: res.msg,
 
- 									icon: "none",
 
- 									mask: true,
 
- 									duration: 2000
 
- 								});
 
- 							}
 
- 						});
 
- 					})
 
- 					.catch(error => {
 
- 						console.error('获取Blob数据失败', error);
 
- 					});
 
- 			},
 
- 			//H5 拖拽
 
- 			// 触摸开始
 
- 			handleTouchStart(event) {
 
- 				// 彻底阻止所有默认行为
 
- 				event.preventDefault();
 
- 				event.stopPropagation();
 
- 				
 
- 				this.touchStartY = event.touches[0].clientY;
 
- 				this.hasMoved = false;
 
- 				this.moveDirection = null;
 
- 				this.hasTriggeredMethod3 = false;
 
- 				
 
- 				// 设置长按定时器
 
- 				this.longPressTimer = setTimeout(() => {
 
- 					this.isLongPress = true;
 
- 					this.startRecord(); // 执行方法1
 
- 				}, 300); // 300ms触发长按
 
- 			},
 
- 				
 
- 			// 触摸移动
 
- 			handleTouchMove(event) {
 
- 				// 彻底阻止所有默认行为
 
- 				event.preventDefault();
 
- 				event.stopPropagation();
 
- 				
 
- 				if (!this.isLongPress) return;
 
- 				
 
- 				const currentY = event.touches[0].clientY;
 
- 				const deltaY = currentY - this.touchStartY;
 
- 				
 
- 				// 检测滑动方向(向上滑动为负值)
 
- 				if (Math.abs(deltaY) > 75) { // 增加阈值避免误触
 
- 					this.hasMoved = true;
 
- 					this.moveDirection = deltaY < 0 ? 'up' : 'down';
 
- 					
 
- 					// 向上滑动执行方法3(确保只触发一次)
 
- 					if (this.moveDirection === 'up' && !this.hasTriggeredMethod3) {
 
- 						this.hasTriggeredMethod3 = true;
 
- 						this.delRecord();
 
- 					}
 
- 				}
 
- 			},
 
- 				
 
- 			// 触摸结束
 
- 			handleTouchEnd() {
 
- 				// 清除长按定时器
 
- 				clearTimeout(this.longPressTimer);
 
- 				
 
- 				if (this.isLongPress) {
 
- 					this.stopRecord(); // 执行方法2
 
- 				}
 
- 				
 
- 				// 重置状态
 
- 				this.isLongPress = false;
 
- 				this.hasMoved = false;
 
- 				this.moveDirection = null;
 
- 			},
 
- 			
 
- 			// 关键:禁用上下文菜单(长按菜单)
 
- 			handleContextMenu(e) {
 
- 				e.preventDefault();
 
- 				return false;
 
- 			},
 
- 			// #endif
 
- 		},
 
- 		onHide() {
 
- 			//清除定时器
 
- 			let self = this;
 
- 			self.offMQTT();
 
- 		},
 
- 		beforeDestroy() {
 
- 			//清除定时器
 
- 			let self = this;
 
- 			self.offMQTT();
 
- 		},
 
- 	}
 
- </script>
 
- <style lang="stylus" scoped>
 
- 	@import '@/api/request/imagesUrl.styl';
 
- 	#emergencyEvacuationBig {
 
- 		height: 100%;
 
- 		width: 100%;
 
- 		display: flex;
 
- 		flex-direction: column;
 
- 		overflow-y: scroll;
 
- 		.setUpEvacuation {
 
- 			flex: 1;
 
- 			display: flex;
 
- 			flex-direction: column;
 
- 			overflow-y: scroll;
 
- 			.evacuation-max-box {
 
- 				width: 710rpx;
 
- 				margin: 20rpx 20rpx;
 
- 				background: #fff;
 
- 				border-radius: 20rpx;
 
- 				padding: 20rpx 0;
 
- 				.picker-max-box {
 
- 					.picker-title-box {
 
- 						padding: 0 20rpx;
 
- 						display: flex;
 
- 						view {
 
- 							line-height: 80rpx;
 
- 							font-size: 28rpx;
 
- 						}
 
- 						view:nth-child(1) {
 
- 							color: red;
 
- 						}
 
- 						view:nth-child(2) {}
 
- 						view:nth-child(3) {
 
- 							color: #999;
 
- 						}
 
- 					}
 
- 					.picker-min-box {
 
- 						display: flex;
 
- 						height: 80rpx;
 
- 						width: 667rpx;
 
- 						border: 1rpx solid #a2a2a2;
 
- 						border-radius: 10rpx;
 
- 						margin: 0 20rpx;
 
- 						view {
 
- 							flex: 1;
 
- 							line-height: 80rpx;
 
- 							padding: 0 20rpx;
 
- 							color: #999;
 
- 							font-size: 28rpx;
 
- 							overflow: hidden;
 
- 						}
 
- 						img {
 
- 							width: 24rpx;
 
- 							height: 12rpx;
 
- 							margin: 35rpx 23rpx;
 
- 						}
 
- 					}
 
- 				}
 
- 			}
 
- 		}
 
- 		.implementEvacuation {
 
- 			flex: 1;
 
- 			display: flex;
 
- 			flex-direction: column;
 
- 			overflow-y: scroll;
 
- 			.evacuation-max-box {
 
- 				width: 710rpx;
 
- 				margin: 20rpx 20rpx;
 
- 				/* background #fff */
 
- 				border-radius: 20rpx;
 
- 				padding: 20rpx 0 30rpx;
 
- 				.evacuation-title-box {
 
- 					// height:150rpx;
 
- 					//border-bottom:1rpx solid #dedede;
 
- 					background: #FFFFFF;
 
- 					border-radius: 20rpx;
 
- 					padding: 34rpx 22rpx;
 
- 					box-sizing: border-box;
 
- 					display: flex;
 
- 					.evacuation-title-left {
 
- 						flex: 1;
 
- 						.evacuation-title-name-box {
 
- 							font-size: 30rpx;
 
- 							font-family: PingFang SC;
 
- 							font-weight: 500;
 
- 							color: #333333;
 
- 							line-height: 30rpx;
 
- 						}
 
- 						.site {
 
- 							font-size: 28rpx;
 
- 							font-family: PingFang SC;
 
- 							font-weight: 500;
 
- 							color: #999999;
 
- 							line-height: 30rpx;
 
- 							margin-top: 32rpx;
 
- 							display: flex;
 
- 							justify-content: flex-start;
 
- 							align-items: center;
 
- 							>img {
 
- 								width: 28rpx;
 
- 								height: 30rpx;
 
- 								margin-right: 18rpx;
 
- 							}
 
- 						}
 
- 					}
 
- 					.evacuation-title-right {
 
- 						color: #0183FA;
 
- 						font-size: 28rpx;
 
- 						line-height: 100rpx;
 
- 					}
 
- 				}
 
- 				/* 一键灭火 */
 
- 				.outfire {
 
- 					width: 710rpx;
 
- 					height: auto;
 
- 					background: #FFFFFF;
 
- 					border-radius: 20rpx;
 
- 					margin: 20rpx 0;
 
- 					padding: 26 10rpx;
 
- 					box-sizing: border-box;
 
- 					display: flex;
 
- 					justify-content: space-between;
 
- 					align-items: center;
 
- 					.outfire_li {
 
- 						display: flex;
 
- 						justify-content: flex-start;
 
- 						padding: 20rpx 10rpx;
 
- 						box-sizing: border-box;
 
- 						//align-items: center;
 
- 						.finish {
 
- 							flex: 1;
 
- 						}
 
- 						>img {
 
- 							width: 24rpx;
 
- 							height: 30rpx;
 
- 							margin-right: 12rpx;
 
- 							margin-top: 8rpx;
 
- 						}
 
- 						.normal {
 
- 							font-size: 24rpx;
 
- 							font-family: PingFang SC;
 
- 							font-weight: 500;
 
- 							color: #333333;
 
- 						}
 
- 						.abnormal {
 
- 							font-size: 24rpx;
 
- 							font-family: PingFang SC;
 
- 							font-weight: 500;
 
- 							color: #F11C00;
 
- 						}
 
- 					}
 
- 					.outfire_li:nth-of-type(1) {
 
- 						>img {
 
- 							width: 30rpx;
 
- 							height: 28rpx;
 
- 							margin-right: 12rpx;
 
- 						}
 
- 					}
 
- 					.outfire_yes_btn {
 
- 						width: 120rpx;
 
- 						height: 40rpx;
 
- 						font-size: 24rpx;
 
- 						font-family: PingFang SC;
 
- 						font-weight: 500;
 
- 						color: #F21C00;
 
- 						line-height: 40rpx;
 
- 						border: 1px solid #F21C00;
 
- 						border-radius: 8rpx;
 
- 						text-align: center;
 
- 						margin-left: 54rpx;
 
- 					}
 
- 					.outfire_no_btn {
 
- 						width: 120rpx;
 
- 						height: 40rpx;
 
- 						font-size: 24rpx;
 
- 						font-family: PingFang SC;
 
- 						font-weight: 500;
 
- 						color: #CCCCCC;
 
- 						line-height: 40rpx;
 
- 						border: 1px solid #E0E0E0;
 
- 						border-radius: 8rpx;
 
- 						text-align: center;
 
- 						margin-left: 54rpx;
 
- 					}
 
- 				}
 
- 				.evacuation-scroll-box {
 
- 					height: 95rpx;
 
- 					overflow-x: scroll;
 
- 					overflow-y: hidden;
 
- 					white-space: nowrap;
 
- 					margin: 0 20rpx;
 
- 					view {
 
- 						line-height: 95rpx;
 
- 						font-size: 28rpx;
 
- 						display: inline-block;
 
- 						margin-right: 45rpx;
 
- 					}
 
- 					.scroll-box-color {
 
- 						color: #0183FA;
 
- 					}
 
- 				}
 
- 				.evacuation-video-box {
 
- 					width: 668rpx;
 
- 					height: 341rpx;
 
- 					margin: 0 auto;
 
- 					position: relative;
 
- 					video {
 
- 						position: absolute;
 
- 						top: 0;
 
- 						left: 0;
 
- 						width: 668rpx;
 
- 						height: 341rpx;
 
- 						margin: 0 auto;
 
- 					}
 
- 					.video-a {
 
- 						z-index: 100;
 
- 					}
 
- 					.video-b {
 
- 						z-index: 0;
 
- 					}
 
- 				}
 
- 				/* 路线图 */
 
- 				.roadmap {
 
- 					width: 710rpx;
 
- 					height: 464rpx;
 
- 					background: #FFFFFF;
 
- 					border-radius: 20rpx;
 
- 					padding: 20rpx 20rpx 0;
 
- 					box-sizing: border-box;
 
- 					margin-top: 20rpx;
 
- 					.roadmap_t {
 
- 						font-size: 30rpx;
 
- 						font-family: PingFang SC;
 
- 						font-weight: 500;
 
- 						color: #333333;
 
- 						line-height: 30rpx;
 
- 						display: flex;
 
- 						.monito_li_r_l {
 
- 							flex: 1;
 
- 							line-height: 61rpx;
 
- 							font-size: 28rpx;
 
- 						}
 
- 						.monito_li_r_r_button {
 
- 							width: 100rpx;
 
- 							text-align: center;
 
- 							line-height: 61rpx;
 
- 							font-size: 28rpx;
 
- 							color: #0183FA;
 
- 						}
 
- 						.monito_li_r {
 
- 							width: 380rpx;
 
- 							font-size: 24rpx;
 
- 							font-family: PingFang SC;
 
- 							font-weight: 500;
 
- 							color: #0183FA;
 
- 							line-height: 80rpx;
 
- 							display: flex;
 
- 							justify-content: flex-end;
 
- 							align-items: center;
 
- 							>img {
 
- 								width: 9rpx;
 
- 								height: 22rpx;
 
- 								margin-left: 20rpx;
 
- 							}
 
- 							.evacuation-title-button-box {
 
- 								display: flex;
 
- 								overflow: hidden;
 
- 								view {
 
- 									line-height: 61rpx;
 
- 									font-size: 28rpx;
 
- 								}
 
- 								.colorA {
 
- 									color: #0183FA;
 
- 								}
 
- 								.colorB {
 
- 									color: #0183FA;
 
- 								}
 
- 								img {
 
- 									margin: 28rpx 20rpx 0;
 
- 									width: 24rpx;
 
- 									height: 9rpx;
 
- 								}
 
- 							}
 
- 						}
 
- 					}
 
- 					.evacuation-map-box {
 
- 						width: 668rpx;
 
- 						height: 348rpx;
 
- 						margin: 0 auto;
 
- 						overflow: hidden;
 
- 						border: 1rpx solid #E0E0E0;
 
- 						margin-top: 20rpx;
 
- 						position: relative;
 
- 						.emergencyEvacuationBigFullScreen-page {
 
- 							// overflow: scroll;
 
- 							overflow: hidden;
 
- 							position: absolute;
 
- 							top: 50%;
 
- 							left: 50%;
 
- 							.map-max-box {
 
- 								position: relative;
 
- 								.map-max-for-box {
 
- 									position: absolute;
 
- 									display: flex;
 
- 									flex-direction: column;
 
- 									.map-max-for-min-box {
 
- 										position: relative;
 
- 										.position-box {
 
- 											position: absolute;
 
- 										}
 
- 										.map-for-name-p {
 
- 											padding: 0 10rpx;
 
- 											height: 20rpx;
 
- 											line-height: 20rpx;
 
- 											font-size: 14rpx;
 
- 											text-align: center;
 
- 											color: #333;
 
- 											overflow: hidden;
 
- 											text-overflow: ellipsis;
 
- 											white-space: nowrap;
 
- 										}
 
- 										.map-for-num-p {
 
- 											padding: 0 10rpx;
 
- 											height: 20rpx;
 
- 											line-height: 20rpx;
 
- 											font-size: 14rpx;
 
- 											text-align: center;
 
- 											color: #333;
 
- 											overflow: hidden;
 
- 											text-overflow: ellipsis;
 
- 											white-space: nowrap;
 
- 										}
 
- 									}
 
- 								}
 
- 								.for-map-box {
 
- 									border: 2rpx solid #fff;
 
- 									background: #CEF2FD;
 
- 								}
 
- 								.for-map-box-one {
 
- 									background: #CEFDD5;
 
- 								}
 
- 								.room-type-one {
 
- 									//选中
 
- 									background: rgba(178, 235, 255, 1);
 
- 								}
 
- 								.room-type-two {
 
- 									//报警
 
- 									background: rgba(232, 0, 0, 0.4);
 
- 									box-shadow: 0 0 10rpx 1rpx #E80000 inset;
 
- 								}
 
- 								.room-type-three {
 
- 									//选中报警
 
- 									background: rgba(178, 235, 255, 1);
 
- 									box-shadow: 0 0 10rpx 1rpx #E80000 inset;
 
- 								}
 
- 							}
 
- 						}
 
- 					}
 
- 				}
 
- 				.video-max-box {
 
- 					width: 710rpx;
 
- 					height: 780rpx;
 
- 					overflow-y: scroll;
 
- 					background: #FFFFFF;
 
- 					border-radius: 20rpx;
 
- 					padding: 22rpx 30rpx 30rpx;
 
- 					box-sizing: border-box;
 
- 					margin-top: 20rpx;
 
- 					margin-bottom: 120rpx;
 
- 					video {
 
- 						width: 645rpx;
 
- 						height: 355rpx;
 
- 					}
 
- 				}
 
- 				.bottom-button-box {
 
- 					position: absolute;
 
- 					bottom: 20rpx;
 
- 					display: flex;
 
- 					width: 670rpx;
 
- 					margin: 20rpx;
 
- 					view {
 
- 						width: 335rpx;
 
- 						height: 100rpx;
 
- 						line-height: 100rpx;
 
- 						text-align: center;
 
- 						color: #fff;
 
- 						font-size: 28rpx;
 
- 					}
 
- 					.voice {
 
- 						border-top-left-radius: 50rpx;
 
- 						border-bottom-left-radius: 50rpx;
 
- 						background: #FF9C00;
 
- 					}
 
- 					.plan {
 
- 						background: #21A743;
 
- 					}
 
- 					.evacuate {
 
- 						border-top-right-radius: 50rpx;
 
- 						border-bottom-right-radius: 50rpx;
 
- 						background: #0183FA;
 
- 					}
 
- 				}
 
- 			}
 
- 			.live-button {
 
- 				width: 650rpx;
 
- 				height: 100rpx;
 
- 				line-height: 100rpx;
 
- 				text-align: center;
 
- 				font-size: 28rpx;
 
- 				margin: 50rpx auto 0;
 
- 				border-radius: 20rpx;
 
- 			}
 
- 			.live-color-a {
 
- 				color: #fff;
 
- 				background: #FF8686;
 
- 			}
 
- 			.live-color-b {
 
- 				color: #fff;
 
- 				background: #25C95B;
 
- 			}
 
- 			/* 语音广播 */
 
- 			.shade-max-big-box {
 
- 				height: 100%;
 
- 				width: 100%;
 
- 				position: fixed;
 
- 				display: flex;
 
- 				flex-direction: column;
 
- 				z-index: 10;
 
- 				background: rgba(0, 0, 0, 0.2);
 
- 				.null-box {
 
- 					flex: 1;
 
- 				}
 
- 				/* 语音广播-执行疏散 */
 
- 				.broadcast {
 
- 					width: 100%;
 
- 					// height: 532rpx;
 
- 					background: #FFFFFF;
 
- 					border-top-left-radius: 20rpx;
 
- 					border-top-right-radius: 20rpx;
 
- 					padding: 22rpx 30rpx 30rpx;
 
- 					box-sizing: border-box;
 
- 					margin-top: 20rpx;
 
- 					.broadcast_t {
 
- 						font-size: 30rpx;
 
- 						font-family: PingFang SC;
 
- 						font-weight: 500;
 
- 						color: #333333;
 
- 						line-height: 30rpx;
 
- 						>label {
 
- 							font-size: 24rpx;
 
- 							font-family: PingFang SC;
 
- 							font-weight: 500;
 
- 							color: #999999;
 
- 							line-height: 30rpx;
 
- 							margin-left: 16rpx;
 
- 						}
 
- 					}
 
- 					.trumpet-max-box {
 
- 						display: flex;
 
- 						justify-content: flex-start;
 
- 						margin-top: 22rpx;
 
- 						flex-wrap: wrap;
 
- 						.trumpet-for-box {
 
- 							display: inline-block;
 
- 							width: auto;
 
- 							height: 60rpx;
 
- 							line-height: 60rpx;
 
- 							font-size: 24rpx;
 
- 							text-align: center;
 
- 							cursor: pointer;
 
- 							overflow: hidden;
 
- 							border: 1rpx solid #E0E0E0;
 
- 							border-radius: 10rpx;
 
- 							color: #E0E0E0;
 
- 							display: flex;
 
- 							justify-content: center;
 
- 							margin-right: 20rpx;
 
- 							margin-bottom: 10rpx;
 
- 							padding: 0 12rpx;
 
- 							box-sizing: border-box;
 
- 							>img {
 
- 								width: 36rpx;
 
- 								height: 34rpx;
 
- 								margin: 12rpx 20rpx 0 25rpx;
 
- 							}
 
- 						}
 
- 						.trumpet-color-a {
 
- 							border: 1px solid #0183FA;
 
- 							color: #0183FA;
 
- 						}
 
- 						.trumpet-color-b {
 
- 							border: 1px solid #CCCCCC;
 
- 							color: #999;
 
- 						}
 
- 					}
 
- 					.no-long-press{
 
- 						// -webkit-touch-callout: none; /* iOS Safari */
 
- 						// -webkit-user-select: none;   /* Chrome, Safari 3 */
 
- 						// -khtml-user-select: none;    /* Safari 2 */
 
- 						// -moz-user-select: none;      /* Firefox */
 
- 						// -ms-user-select: none;       /* Internet Explorer/Edge */
 
- 						// user-select: none;           /* Non-prefixed version, supported in most modern browsers */
 
- 					}
 
- 					.broadcast_m {
 
- 						width: 100%;
 
- 						margin-bottom: 80rpx;
 
- 						.broadcast_m_t {
 
- 							width: 142rpx;
 
- 							height: 142rpx;
 
- 							margin: 30rpx 0 0 258rpx;
 
- 							position: relative;
 
- 							font-size: 24rpx;
 
- 							font-family: PingFang SC;
 
- 							font-weight: 500;
 
- 							line-height: 170rpx;
 
- 							text-align: center;
 
- 							>img {
 
- 								width: 142rpx;
 
- 								height: 142rpx;
 
- 								position: absolute;
 
- 							}
 
- 							>label {
 
- 								width: 100%;
 
- 								font-size: 24rpx;
 
- 								font-family: PingFang SC;
 
- 								font-weight: 500;
 
- 								color: #0183FA;
 
- 								line-height: 24rpx;
 
- 								display: inline-block;
 
- 								text-align: center;
 
- 								position: absolute;
 
- 								top: 76rpx;
 
- 							}
 
- 							/* 按下 */
 
- 							.press_color {
 
- 								color: #FFFFFF;
 
- 							}
 
- 							/* 松开 */
 
- 							.slip_color {
 
- 								color: #0183FA;
 
- 							}
 
- 						}
 
- 						.broadcast_m_b {
 
- 							font-size: 24rpx;
 
- 							font-family: PingFang SC;
 
- 							font-weight: 500;
 
- 							color: #999999;
 
- 							line-height: 24rpx;
 
- 							text-align: center;
 
- 							margin-top: 14rpx;
 
- 						}
 
- 					}
 
- 					/* 疏散按钮 */
 
- 					.evacuation-button-box {
 
- 						width: 650rpx;
 
- 						height: 100rpx;
 
- 						background: #0183FA;
 
- 						color: #fff;
 
- 						text-align center;
 
- 						line-height: 100rpx;
 
- 						font-size: 28rpx;
 
- 						margin: 88rpx auto 0;
 
- 						border-radius: 20rpx;
 
- 					}
 
- 				}
 
- 			}
 
- 		}
 
- 		.setUpEvacuation-bottom-button {
 
- 			width: 650rpx;
 
- 			height: 100rpx;
 
- 			background: #0183FA;
 
- 			color: #fff;
 
- 			text-align: center;
 
- 			line-height: 100rpx;
 
- 			font-size: 28rpx;
 
- 			margin: 50rpx auto;
 
- 			border-radius: 20rpx;
 
- 		}
 
- 		
 
- 		.device-type {
 
- 			margin-top:20rpx;
 
- 			border-radius:20rpx;
 
- 			background: #fff;
 
- 			padding: 24rpx 20rpx;
 
- 			box-sizing: border-box;
 
- 			display: flex;
 
- 			justify-content: flex-start;
 
- 			flex-wrap: wrap;
 
- 		
 
- 			>view {
 
- 				//width: 356rpx;
 
- 				height: 60rpx;
 
- 				display: flex;
 
- 				justify-content: flex-start;
 
- 				align-items: center;
 
- 				padding-left: 10rpx;
 
- 				padding-right: 10rpx;
 
- 				box-sizing: border-box;
 
- 		
 
- 				>img:nth-of-type(1) {
 
- 					width: 42rpx;
 
- 					height: 42rpx;
 
- 					margin-right: 12rpx;
 
- 				}
 
- 		
 
- 				>view {
 
- 					font-family: PingFang SC;
 
- 					font-weight: 500;
 
- 					font-size: 30rpx;
 
- 					color: #222222;
 
- 					line-height: 60rpx;
 
- 					width: 560rpx;
 
- 				}
 
- 		
 
- 				>img:nth-of-type(2) {
 
- 					width: 24rpx;
 
- 					height: 22rpx;
 
- 				}
 
- 			}
 
- 		
 
- 			>view:nth-child(2n) {
 
- 				border-right: none;
 
- 				padding-left: 20rpx;
 
- 				box-sizing: border-box;
 
- 			}
 
- 		
 
- 			>view:nth-last-child(1) {
 
- 				border-bottom: none;
 
- 			}
 
- 		
 
- 			>view:nth-last-child(2) {
 
- 				border-bottom: none;
 
- 			}
 
- 		}
 
- 		.for-map-box-two {
 
- 			background: url($imagesUrl+'manage/icon_yjtd.png') center center no-repeat #006400;
 
- 			background-size: 60rpx 60rpx;
 
- 		}
 
- 		.for-map-box-two-check {
 
- 			background: url($imagesUrl+'manage/icon_yjtd.png') center center no-repeat rgba(50, 205, 50, 1);
 
- 			background-size: 80rpx 80rpx;
 
- 		}
 
- 		.center-move-door-p-t {
 
- 			background: url($imagesUrl+'manage/icon_sysbjt_m.png') !important;
 
- 			background-size: 100% !important;
 
- 			transform: rotate(180deg);
 
- 		}
 
- 		.center-move-door-p-b {
 
- 			background: url($imagesUrl+'manage/icon_sysbjt_m.png') !important;
 
- 			background-size: 100% !important;
 
- 		}
 
- 		.center-move-door-p-l {
 
- 			background: url($imagesUrl+'manage/icon_sysbjt_m.png') !important;
 
- 			background-size: 100% !important;
 
- 			transform: rotate(90deg);
 
- 		}
 
- 		.center-move-door-p-r {
 
- 			background: url($imagesUrl+'manage/icon_sysbjt_m.png') !important;
 
- 			background-size: 100% !important;
 
- 			transform: rotateZ(270deg);
 
- 		}
 
- 		.lightTopOn {
 
- 			background: url($imagesUrl+'manage/icon_sjt.png');
 
- 			background-size: 100%;
 
- 		}
 
- 		.lightTopOff {
 
- 			background: url($imagesUrl+'manage/icon_shang_hs.png');
 
- 			background-size: 100%;
 
- 		}
 
- 		.lightBottomOn {
 
- 			background: url($imagesUrl+'manage/icon_xjt.png');
 
- 			background-size: 100%;
 
- 		}
 
- 		.lightBottomOff {
 
- 			background: url($imagesUrl+'manage/icon_xia_hs.png');
 
- 			background-size: 100%;
 
- 		}
 
- 		.lightLeftOn {
 
- 			background: url($imagesUrl+'manage/icon_zuo.png');
 
- 			background-size: 100%;
 
- 		}
 
- 		.lightLeftOff {
 
- 			background: url($imagesUrl+'manage/icon_zou_hs.png');
 
- 			background-size: 100%;
 
- 		}
 
- 		.lightRightOn {
 
- 			background: url($imagesUrl+'manage/icon_yuo.png');
 
- 			background-size: 100%;
 
- 		}
 
- 		.lightRightOff {
 
- 			background: url($imagesUrl+'manage/icon_you_hs.png');
 
- 			background-size: 100%;
 
- 		}
 
- 		.broadcast_m_t_back_a {
 
- 			background: url($imagesUrl+'commonality/icon_sskz_skfs_1.png');
 
- 			color: #FFFFFF;
 
- 			background-size: 100%;
 
- 		}
 
- 	
 
- 		.broadcast_m_t_back_b {
 
- 			background: url($imagesUrl+'commonality/icon_sskz_azsh_1.png');
 
- 			color: #0183FA;
 
- 			background-size: 100%;
 
- 		}
 
- 	}
 
- </style>
 
 
  |