| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092 |
- <template>
- <view class="content">
- <view class="header" style="margin:0;padding: 0px;">
- <view class="bg" style="position: fixed;top:0px;bottom:0px;left:0px;right:0px;background-image: url('https://hyscancode.oss-cn-hangzhou.aliyuncs.com/jianyaoji/images/device/bg.png');background-size: 100% 100%;padding:0 40rpx">
- <view style="position: absolute;right:10rpx;top:30rpx;z-index: 9999">
- <u-button @click="reportError" color="#EC6D2F" text="上报异常" type="error" size="mini"></u-button>
- </view>
- <view style="position: absolute;right:52rpx;top:116rpx;" v-if="deviceInfo.status == 3">
- <view>
- <u-image :showLoading="true" src="/static/images/device/zaixian.png" width="200rpx" height="200rpx" ></u-image>
- </view>
- <view style="position: absolute;color:#48C373;top:110rpx;left:70rpx">在线</view>
- </view>
- <view style="position: absolute;right:52rpx;top:116rpx;" v-if="deviceInfo.status == 4">
- <view>
- <u-image :showLoading="true" src="/static/images/device/offline.png" width="200rpx" height="200rpx" ></u-image>
- </view>
- <view style="position: absolute;color:lightgray;top:110rpx;left:70rpx">离线</view>
- </view>
- <view style="font-weight: bold;font-size: 30rpx;margin-top:20rpx">
- {{deviceInfo.deviceName}}
- </view>
- <view class="prop-text">
- <text class="text-left">所属用户:</text>
- <text class="text-right">{{sysDept.deptName}}</text>
- </view>
- <view class="prop-text">
- <text class="text-left">设备编号:</text>
- <text class="text-right">{{deviceInfo.serialNumber}}</text>
- </view>
- <view class="prop-text">
- <text class="text-left">二维码ID:</text>
- <text class="text-right">{{deviceInfo.qrcodeId==null?"未绑定":deviceInfo.qrcodeId}}</text>
- </view>
- <view class="prop-text">
- <text class="text-left">激活时间:</text>
- <text class="text-right">{{deviceInfo.activeTime}}</text>
- </view>
- <view class="prop-text">
- <text class="text-left">查看位置:</text>
- <view style="position: absolute;top:0px;left:120rpx">
- <u-icon name="map-fill" label="查看位置" color="#2979ff" size="20" labelSize="12"></u-icon>
- </view>
- </view>
- <view class="prop-card-area">
- <view class="prop-card">
- <view class="prop-card-top">{{ deviceInfo.rssi }}</view>
- <view class="prop-card-bottom">设备信号</view>
- </view>
- <view class="prop-card">
- <view class="prop-card-top">{{ timeobj.alltime }}</view>
- <view class="prop-card-bottom">累计时长</view>
- </view>
- <view class="prop-card">
- <view class="prop-card-top">{{ timeobj.avgtime }}</view>
- <view class="prop-card-bottom">平均时长</view>
- </view>
- </view>
- <view class="tab-area">
- <u-tabs lineWidth="80" :activeStyle="{ color: '#3E9CFC' }" :list="summary" keyName="tabName" @change="getDeviceStatus"></u-tabs>
- <view>
- <uni-row class="demo-uni-row">
- <uni-col :span="12">
- </uni-col>
- </uni-row>
- <uni-row class="demo-uni-row">
- <uni-col :span="12">
- </uni-col>
- </uni-row>
- <view v-if="deviceInfo.status == 3">
- <view class="prop-item">
- <view class="prop-item-left">开机</view>
- <view class="prop-item-right"> <u-switch inactiveColor="lightgray" activeColor="rgb(96,195,113)" v-model="power.value" :loading ="power.loading" @change="changeProp('PowerControl')"></u-switch>
- </view>
- </view>
- <view class="prop-item">
- <view class="prop-item-left">锁定</view>
- <view class="prop-item-right">
- <u-switch inactiveColor="lightgray" activeColor="rgb(96,195,113)" v-model="lock.value" :loading ="lock.loading" @change="changeProp('LockControl')"></u-switch>
- </view>
- </view>
- </view>
- <view v-if="deviceInfo.status != 3">
- <view class="prop-item">
- <view class="prop-item-left">开机</view>
- <view class="prop-item-right"> <u-switch inactiveColor="lightgray" activeColor="rgb(96,195,113)" value="0" :loading ="power.loading" @change="changeProp('PowerControl')"></u-switch>
- </view>
- </view>
- <view class="prop-item">
- <view class="prop-item-left">锁定</view>
- <view class="prop-item-right">
- <u-switch inactiveColor="lightgray" activeColor="rgb(96,195,113)" value="0" :loading ="lock.loading" @change="changeProp('LockControl')"></u-switch>
- </view>
- </view>
- </view>
- <view v-for="item in inputProp" v-if="checkCommonProp(item)">
- <view class="prop-item">
- <view class="prop-item-left">{{item.name}}</view>
- <view class="prop-item-right">
- <view v-if="item.type === 'integer'" style="width:240rpx;position: absolute;left: -260rpx;top: 10rpx;;">
- <u-input :customStyle="inputStyle" fontSize="20rpx" placeholder="请输入整数" v-model="item.shadow">
- </u-input>
- </view>
- <view style="padding:0 10rpx;width:260rpx;position: absolute;left: -270rpx;top: -10rpx;" v-if="item.type === 'string'">
- <u-input :customStyle="inputStyle" fontSize="20rpx" placeholder="请输入字符串" v-model="item.shadow">
- </u-input>
- </view>
- <view style="padding:0 10rpx;width:260rpx;position: absolute;left: -270rpx;top: -10rpx;" v-if="item.type === 'array'">
- <u-input :customStyle="inputStyle" fontSize="20rpx" placeholder="请使用英文逗号分隔的字符串" v-model="item.shadow">
- </u-input>
- </view>
- <view style="padding:0 10rpx;position: absolute;left: -300rpx;top: -10rpx;" v-if="item.type === 'enum'">
- <u-cell customStyle="border:0px;" size="mini" @click="chooseItemData(item)" arrow-direction="left" v-if="item.text != null && item.text.length>0" :title="item.text">
- <u-icon slot="icon" size="12" name="arrow-down"></u-icon>
- </u-cell>
- <u-cell customStyle="border:0px;" size="mini" @click="chooseItemData(item)" arrow-direction="down" v-else title="请选择">
- <u-icon slot="icon" size="12" name="arrow-down"></u-icon>
- </u-cell>
- </view>
- <view class="item" style="padding-top:10rpx">
- <u-button v-if="deviceInfo.status==3"
- @tap="send(item)"
- text="发送"
- type="success"
- size="mini"
- ></u-button>
- <u-button v-if="deviceInfo.status!=3"
- @tap="send(item)"
- text="发送"
- type="info"
- size="mini"
- ></u-button>
- </view>
- </view>
- </view>
- </view>
- <view style="margin-top:20rpx;margin-left:20rpx">
- <u--text text="属性监控" style="margin-top:20px"></u--text>
- </view>
- <view class="prop-item" v-if="checkCommonProp(item)" v-for="item in deviceInfo.readOnlyList">
- <view class="prop-item-left">{{item.name}}</view>
- <view class="prop-item-right" style="top:0rpx;">
- <u-input v-if="checkItemValue(item)" placeholder="请输入字符串" disabled="" :value="item.shadow+' '+item.unit">
- </u-input>
- </view>
- </view>
- </view>
- </view>
- </view>
- <!-- <u--form>-->
- <!-- <u-form-item style="border:0px"-->
- <!-- label="设备名称:"-->
- <!-- labelWidth="auto"-->
- <!-- :borderBottom="false"-->
- <!-- >-->
- <!-- <u--input disabled-->
- <!-- placeholder="请选择分组"-->
- <!-- border="none"-->
- <!-- color="gray"-->
- <!-- disabledColor="white"-->
- <!-- v-model="deviceInfo.deviceName"-->
- <!-- ></u--input>-->
- <!-- </u-form-item>-->
- <!-- <u-form-item style="border:0px"-->
- <!-- label="所属机构:"-->
- <!-- labelWidth="auto"-->
- <!-- :borderBottom="false"-->
- <!-- >-->
- <!-- <u--input v-if="sysDept != null" disabled-->
- <!-- placeholder="请选择分组22"-->
- <!-- border="none"-->
- <!-- color="gray"-->
- <!-- disabledColor="white"-->
- <!-- :value="sysDept.deptName"-->
- <!-- ></u--input>-->
- <!-- <u--input v-else-if="deviceInfo.deptId == -1" disabled-->
- <!-- placeholder="请选择分组11"-->
- <!-- border="none"-->
- <!-- color="gray"-->
- <!-- disabledColor="white"-->
- <!-- value="已注销"-->
- <!-- ></u--input>-->
- <!-- <u--input v-else disabled-->
- <!-- placeholder="未绑定"-->
- <!-- border="none"-->
- <!-- color="gray"-->
- <!-- disabledColor="white"-->
- <!-- value="未绑定"-->
- <!-- ></u--input>-->
- <!-- </u-form-item>-->
- <!-- <u-form-item style="border:0px"-->
- <!-- label="设备编号:"-->
- <!-- labelWidth="auto"-->
- <!-- :borderBottom="false"-->
- <!-- ref="item1"-->
- <!-- >-->
- <!-- <u--input disabled-->
- <!-- border="none"-->
- <!-- color="gray"-->
- <!-- disabledColor="white"-->
- <!-- v-model="deviceInfo.serialNumber"-->
- <!-- ></u--input>-->
- <!-- </u-form-item>-->
- <!-- <u-form-item style="border:0px"-->
- <!-- label="二维码ID:"-->
- <!-- labelWidth="auto"-->
- <!-- :borderBottom="false"-->
- <!-- ref="item1"-->
- <!-- >-->
- <!-- <u--input disabled-->
- <!-- border="none"-->
- <!-- color="gray"-->
- <!-- disabledColor="white"-->
- <!-- v-model="deviceInfo.qrcodeId"-->
- <!-- ></u--input>-->
- <!-- </u-form-item>-->
- <!-- <u-form-item style="border:0px"-->
- <!-- label="激活时间:"-->
- <!-- labelWidth="auto"-->
- <!-- :borderBottom="false"-->
- <!-- ref="item1"-->
- <!-- >-->
- <!-- <u--input disabled-->
- <!-- border="none"-->
- <!-- color="gray"-->
- <!-- disabledColor="white"-->
- <!-- :value="deviceInfo.activeTime"-->
- <!-- ></u--input>-->
- <!-- </u-form-item>-->
- <!-- <u-form-item style="border:0px"-->
- <!-- label="运行时长:"-->
- <!-- labelWidth="auto"-->
- <!-- :borderBottom="false"-->
- <!-- ref="item1"-->
- <!-- >-->
- <!-- <view style="width: 20%">-->
- <!-- <u-button @click="seeTime()" type="primary" size="mini" text="查看时长"></u-button>-->
- <!-- </view>-->
- <!-- </u-form-item>-->
- <!-- <u-form-item style="border:0px"-->
- <!-- label="位置信息:"-->
- <!-- labelWidth="auto"-->
- <!-- :borderBottom="false"-->
- <!-- ref="item1"-->
- <!-- >-->
- <!-- <view style="width: 20%">-->
- <!-- <u-button @click="openLocation(deviceInfo)" type="primary" size="mini" text="查看位置"></u-button>-->
- <!-- </view>-->
- <!-- </u-form-item>-->
- <!-- <u-form-item style="border:0px"-->
- <!-- label="设备信号:"-->
- <!-- labelWidth="auto"-->
- <!-- :borderBottom="false"-->
- <!-- >-->
- <!-- <u--input disabled-->
- <!-- border="none"-->
- <!-- color="gray"-->
- <!-- disabledColor="white"-->
- <!-- :value="deviceInfo.rssi"-->
- <!-- ></u--input>-->
- <!-- </u-form-item>-->
- <!-- <u-form-item v-if="deviceInfo.networkAddress != null" style="border:0px"-->
- <!-- label="设备网络:"-->
- <!-- labelWidth="auto"-->
- <!-- :borderBottom="false"-->
- <!-- ref="item1"-->
- <!-- >-->
- <!-- <u--input disabled-->
- <!-- border="none"-->
- <!-- color="gray"-->
- <!-- disabledColor="white"-->
- <!-- :value="deviceInfo.networkAddress+'('+deviceInfo.networkIp+')'"-->
- <!-- ></u--input>-->
- <!-- </u-form-item>-->
- <!-- <u-form-item style="border:0px"-->
- <!-- label="设备状态:"-->
- <!-- labelWidth="auto"-->
- <!-- :borderBottom="false"-->
- <!-- >-->
- <!-- <view style="width:90rpx">-->
- <!-- <u-tag v-if="deviceInfo.status === 4" text="离线" size="mini" type="info"></u-tag>-->
- <!-- <u-tag v-if="deviceInfo.status === 3" text="在线" size="mini" type="success"></u-tag>-->
- <!-- <u-tag v-if="deviceInfo.status === 2" text="禁用" size="mini" type="error"></u-tag>-->
- <!-- <u-tag v-if="deviceInfo.status === 1" text="未激活" size="mini" type="error"></u-tag>-->
- <!-- </view>-->
- <!-- </u-form-item>-->
- <!-- </u--form>-->
- <!-- </view>-->
- <!-- <view class="text-area">-->
- <!-- <u-tabs :list="summary" keyName="tabName" @change="getDeviceStatus"></u-tabs>-->
- <!-- <view class="prop-container" style="background: white;padding:10px ">-->
- <!-- <u-form>-->
- <!-- <u-form-item style="border:0px;position: relative"-->
- <!-- label=" "-->
- <!-- labelWidth="auto"-->
- <!-- :borderBottom="false"-->
- <!-- >-->
- <!-- <uni-row class="demo-uni-row">-->
- <!-- <uni-col :span="12">-->
- <!-- 开机: <u-switch v-model="power.value" :loading ="power.loading" @change="changeProp('PowerControl')"></u-switch>-->
- <!-- </uni-col>-->
- <!-- <uni-col :span="12">-->
- <!-- 锁定: <u-switch v-model="lock.value" :loading ="lock.loading" @change="changeProp('LockControl')"></u-switch>-->
- <!-- </uni-col>-->
- <!-- </uni-row>-->
- <!-- </u-form-item>-->
- <!-- <u-line></u-line>-->
- <!-- <view>-->
- <!-- <uni-row class="demo-uni-row" v-if="checkCommonProp(item)" v-for="item in deviceInfo.readOnlyList">-->
- <!-- <uni-col :span="10">-->
- <!-- <view class="item">{{item.name}}</view>-->
- <!-- </uni-col>-->
- <!-- <uni-col :span="10">-->
- <!-- <view style="padding:0 10rpx">-->
- <!-- <u-input placeholder="请输入字符串" disabled="" :value="item.shadow+' '+item.unit">-->
- <!-- </u-input>-->
- <!-- </view>-->
- <!-- </uni-col>-->
- <!-- </uni-row>-->
- <!-- </view>-->
- <!-- </u-form>-->
- <!-- </view>-->
- <u-picker @cancel="show=null" :show="show!=null" :columns="columns" @confirm="confirmItemData" keyName="text"></u-picker>
- <u-modal @cancel="cancel" :show="showErrDlg" title="异常上报" :showCancelButton="true" @confirm="doReportError" >
- <view class="slot-content">
- <view style="margin:10px">
- <textarea auto-height ="true" v-model="errorMsg" placeholder="请输入异常内容" ></textarea>
- </view>
- </view>
- </u-modal>
- <!-- <u-modal :show="showTimeDlg" title="查看时长" @confirm="closeTime" >-->
- <!-- <view class="slot-content">-->
- <!-- <view v-if="timeobj!=null && deviceInfo.status == 3">本次运行时长:{{ timeobj.runtime }}</view>-->
- <!-- <view v-if="timeobj!=null ">累计时长:{{ timeobj.alltime }}</view>-->
- <!-- <view v-if="timeobj!=null ">平均每天运行时长:{{ timeobj.avgtime }}</view>-->
- <!-- </view>-->
- <!-- </u-modal>-->
- </view>
- </view>
- </template>
- <script>
- import { getDetail,getDeviceStatus,cacheJsonThingsModel,reportError ,getDeviceRunTime} from '@/api/device/device.js'
- import UButton from "../../uni_modules/uview-ui/components/u-button/u-button";
- import UForm from "../../uni_modules/uview-ui/components/u--form/u--form";
- import UInput from "../../uni_modules/uview-ui/components/u--input/u--input";
- import UImage from "../../uni_modules/uview-ui/components/u--image/u--image";
- export default {
- components: {UImage, UInput, UForm, UButton},
- data(){
- return {
- inputStyle:{height:'44rpx','fontSize':'20rpx'},
- modelKey:['PowerControl','LockControl'],
- power:{
- loading:true,
- value:0,
- },
- lock:{
- loading:true,
- value:0,
- },
- showTimeDlg:false,
- showErrDlg:null,
- errorMsg:"asdasdasdasd",
- show:null,
- value:"",
- deviceInfo:{},
- id:0,
- summary:[],
- activeName:0,
- childId:"",
- oneToMul:false,
- inputProp:[],
- watchProp:[],
- columns:[],
- location:{},
- sysDept:null,
- timeobj:{alltime:0,avgtime:0},
- publishMsg:false,
- checkTimer:null,
- }
- },
- onLoad: function(opt) {
- this.id = opt.id;
- // this.id = 61;
- this.connectMqtt();
- this.getDetail();
- },
- destroyed() {
- // 取消订阅主题
- this.mqttUnSubscribe(this.deviceInfo);
- clearInterval(this.checkTimer);
- },
- methods:{
- checkItemValue(item){
- if(!item.shadow){
- item.shadow = 0;
- }
- if(!item.unit){
- item.unit = "";
- }
- return true;
- },
- changeProp(key){
- let item = null;
- let obj = null;
- if(key === "LockControl"){
- item = this.lock;
- }else if(key === "PowerControl"){
- item = this.power;
- }
- let value = item.value;
- obj = item.item;
- if(value){
- obj.value = 1;
- obj.shadow = 1;
- }else{
- obj.value = 0;
- obj.shadow = 0;
- }
- this.publishThingsModel(this.deviceInfo,obj);
- },
- checkCommonProp(item){
- let id =item.id;
- let isCommonKey = this.modelKey.some(res=>{
- return id === res;
- })
- return !isCommonKey;
- },
- getRunTime(){
- let self = this;
- getDeviceRunTime(this.id).then(res=>{
- self.timeobj = res.data;
- if(self.timeobj.avgtime == ""){
- self.timeobj.avgtime = 0;
- }
- if(self.timeobj.alltime == ""){
- self.timeobj.alltime = 0;
- }
- })
- },
- seeTime(){
- this.showTimeDlg = true;
- this.getRunTime();
- },
- closeTime(){
- this.showTimeDlg = false;
- },
- cancel(){
- this.showErrDlg = false;
- },
- reportError(){
- this.showErrDlg = true;
- },
- doReportError(){
- if(!this.errorMsg){
- this.$modal.showToast('异常信息不能为空')
- }else{
- let self = this;
- let errObj = {};
- errObj.deviceId = this.deviceInfo.deviceId;
- errObj.deviceName = this.deviceInfo.deviceName
- errObj.desc = this.errorMsg;
- errObj.deptId= this.deviceInfo.deptId;
- reportError(errObj).then(res=>{
- self.$modal.showToast(res.msg)
- self.cancel();
- })
- }
- },
- openLocation(){
- uni.openLocation({
- latitude: this.location.latitude,
- longitude: this.location.longitude,
- success: function () {
- console.log('success');
- }
- });
- },
- confirmItemData(e){
- let data = e.value[0];
- this.show.text = data.text;
- this.show.shadow=data.value;
- this.show = null;
- console.log(data);
- },
- send(item){
- if(this.deviceInfo.status != 3){
- uni.showToast({
- title:"设备暂未上线",
- icon:"error"
- })
- return;
- }
- if(!item.shadow){
- uni.showToast({
- title:"数据不能为空",
- icon:"error"
- })
- return;
- }
- this.publishThingsModel(this.deviceInfo,item)
- },
- /** 更新设备状态 */
- updateDeviceStatus(device) {
- },
- chooseItemData(data){
- if(this.deviceInfo.status != 3){
- uni.showToast({
- title:"设备暂未上线",
- icon:"error"
- })
- return;
- }
- this.columns = [data.enumList];
- this.show =data;
- },
- getDetail(){
- let self = this;
- getDetail(this.id).then(res=>{
- self.deviceInfo = res.data;
- self.location = {
- latitude: self.deviceInfo.latitude,
- longitude: self.deviceInfo.longitude};
- self.sysDept = self.deviceInfo.sysDept;
- self.parseSummay(res.data.summary)
- self.mqttSubscribe(res.data);
- self.getDeviceStatus();
- self.seeTime();
- });
- },
- getDeviceStatus(e){
- let self = this;
- if(!e){
- e = {index:0};
- }
- this.activeName = e.index;
- this.childId = this.summary[this.activeName].id;
- getDeviceStatus(this.id,this.childId).then(res=>{
- let data =res.data;
- this.deviceInfo = data;
- self.parseStatusData(data)
- });
- },
- parseEnumList(){
- let enumList = this.deviceInfo.enumList;
- for (let enumListElement of enumList) {
- let id = enumListElement.id;
- let isCommonKey = this.modelKey.some(res=>{
- return id === res;
- })
- if(isCommonKey){
- if(id.indexOf("LockControl") !=-1){
- let shadow = enumListElement.shadow;
- this.lock.item = enumListElement;
- if(shadow == 1){
- this.lock.value = true;
- this.lock.loading = false;
- }else if(shadow == 0){
- this.lock.value = false;
- this.lock.loading = false;
- }else{
- this.lock.loading = true;
- }
- }
- if(id.indexOf("PowerControl") !=-1){
- let shadow = enumListElement.shadow;
- this.power.item = enumListElement;
- if(shadow == 1){
- this.power.value = true;
- this.power.loading = false;
- }else if(shadow == 0){
- this.power.value = false;
- this.power.loading = false;
- }else{
- this.power.loading = true;
- }
- }
- }
- let shadow = enumListElement.shadow
- let valueList = enumListElement.enumList;
- for (let valueObj of valueList){
- if(valueObj.value == shadow){
- enumListElement.text = valueObj.text;
- }
- }
- }
- },
- parseStatusData(data){
- let arr = [];
- let arrayList = data.arrayList;
- arr = arr.concat(arrayList);
- let enumList = data.enumList;
- arr = arr.concat(enumList);
- let integerList = data.integerList;
- arr = arr.concat(integerList);
- let stringList = data.stringList;
- arr = arr.concat(stringList);
- this.inputProp = arr;
- let readOnlyList = data.readOnlyList;
- this.watchProp = readOnlyList;
- this.parseEnumList();
- },
- parseSummay(summary){
- let self = this;
- if(!summary){
- summary = "";
- }
- if(summary.length>0){
- this.summary = JSON.parse(summary);
- if(self.summary.length>0){
- this.oneToMul = true;
- }
- for (let i = 0; i < self.summary.length; i++) {
- self.summary[i].tabName = self.summary[i].id+"_"+self.summary[i].name
- }
- let childId = "";
- if(this.oneToMul){
- let info = self.summary[self.activeName];
- childId = info.id;
- }
- this.childId = childId;
- }else{
- this.summary = [{tabName:"详情查看"}]
- }
- },
- goDeviceDetail(id){
- uni.navigateTo({
- url: '/pages/device/detail/detail?id='+id
- });
- },
- async connectMqtt() {
- if (this.$mqttTool.client == null) {
- await this.$mqttTool.connect(this.vuex_token);
- }
- this.mqttCallback();
- this.startCheck();
- },
- /** Mqtt订阅主题 */
- mqttSubscribe(device) {
- // 订阅当前设备状态和实时监测
- let topicStatus = '/' + device.productId + '/' + device.serialNumber + '/status/post';
- let topicProperty = '/' + device.productId + '/' + device.serialNumber + '/property/post';
- let topicFunction = '/' + device.productId + '/' + device.serialNumber + '/function/post';
- let topics = [];
- topics.push(topicStatus);
- topics.push(topicProperty);
- topics.push(topicFunction);
- this.$mqttTool.subscribe(topics);
- },
- /** Mqtt取消订阅主题 */
- mqttUnSubscribe(device) {
- // 订阅当前设备状态和实时监测
- let topicStatus = '/' + device.productId + '/' + device.serialNumber + '/status/post';
- let topicProperty = '/' + device.productId + '/' + device.serialNumber + '/property/post';
- let topicFunction = '/' + device.productId + '/' + device.serialNumber + '/function/post';
- let topics = [];
- topics.push(topicStatus);
- topics.push(topicProperty);
- topics.push(topicFunction);
- console.log('取消订阅', topics);
- this.$mqttTool.unsubscribe(topics);
- },
- /* Mqtt回调处理 */
- mqttCallback() {
- this.$mqttTool.client.on('message', (topic, message, buffer) => {
- let topics = topic.split('/');
- let productId = topics[1];
- let deviceNum = topics[2];
- console.log('接收到内容:'+message);
- message = JSON.parse(message.toString());
- if (topics[3] == 'status') {
- console.log('接收到【设备状态-运行】主题:', topic);
- console.log('接收到【设备状态-运行】内容:', message);
- // 更新列表中设备的状态
- if (this.deviceInfo.serialNumber == deviceNum) {
- this.deviceInfo.status = message.status;
- this.deviceInfo.isShadow = message.isShadow;
- this.deviceInfo.rssi = message.rssi;
- this.updateDeviceStatus(this.deviceInfo);
- }
- }
- if (topics[3] == 'property' || topics[3] == 'function') {
- console.log('接收到【物模型】主题:', topic);
- console.log('接收到【物模型】内容:', message);
- if(this.oneToMul){
- let curTabId = this.summary[this.activeName].id;
- let msg = [];
- for (let i = 0; i < message.length; i++) {
- let curMsg = message[i];
- let id = curMsg.id;
- let ids = id.split("_");
- let value = curMsg.value;
- if(ids.length == 2){
- if(curTabId == ids[1]){
- msg.push({id:ids[0],value:value});
- }
- }
- }
- message = msg;
- }
- // 更新列表中设备的属性
- if (this.deviceInfo.serialNumber == deviceNum) {
- for (let j = 0; j < message.length; j++) {
- let isComplete = false;
- // 布尔类型
- for (let k = 0; k < this.deviceInfo.boolList.length && !isComplete; k++) {
- if (this.deviceInfo.boolList[k].id == message[j].id) {
- this.deviceInfo.boolList[k].shadow = message[j].value;
- isComplete = true;
- break;
- }
- }
- // 枚举类型
- for (let k = 0; k < this.deviceInfo.enumList.length && !isComplete; k++) {
- if (this.deviceInfo.enumList[k].id == message[j].id) {
- this.deviceInfo.enumList[k].shadow = message[j].value;
- isComplete = true;
- break;
- }
- }
- // 字符串类型
- for (let k = 0; k < this.deviceInfo.stringList.length && !isComplete; k++) {
- if (this.deviceInfo.stringList[k].id == message[j].id) {
- this.deviceInfo.stringList[k].shadow = message[j].value;
- isComplete = true;
- break;
- }
- }
- // 数组类型
- for (let k = 0; k < this.deviceInfo.arrayList.length && !isComplete; k++) {
- if (this.deviceInfo.arrayList[k].id == message[j].id) {
- this.deviceInfo.arrayList[k].shadow = message[j].value;
- isComplete = true;
- break;
- }
- }
- // 整数类型
- for (let k = 0; k < this.deviceInfo.integerList.length && !isComplete; k++) {
- if (this.deviceInfo.integerList[k].id == message[j].id) {
- this.deviceInfo.integerList[k].shadow = message[j].value;
- isComplete = true;
- break;
- }
- }
- // 小数类型
- for (let k = 0; k < this.deviceInfo.decimalList.length && !isComplete; k++) {
- if (this.deviceInfo.decimalList[k].id == message[j].id) {
- this.deviceInfo.decimalList[k].shadow = message[j].value;
- isComplete = true;
- break;
- }
- }
- // 监测数据
- for (let k = 0; k < this.deviceInfo.readOnlyList.length && !isComplete; k++) {
- if (this.deviceInfo.readOnlyList[k].id == message[j].id) {
- this.deviceInfo.readOnlyList[k].shadow = message[j].value;
- // 更新图表
- // for (let m = 0; m < this.monitorChart.length; m++) {
- // if (message[j].id == this.monitorChart[m].data.id) {
- // let data = [{
- // value: message[j].value,
- // name: this.monitorChart[m].data.name
- // }];
- // this.monitorChart[m].chart.setOption({
- // series: [{
- // data: data
- // }]
- // });
- // break;
- // }
- // }
- isComplete = true;
- break;
- }
- }
- }
- this.parseEnumList();
- }
- }
- });
- },
- /** 发布物模型 类型(1=属性,2=功能) */
- publishThingsModel(device, model) {
- // 获取缓存的Json物模型
- cacheJsonThingsModel(device.productId).then(response => {
- let thingsModel = JSON.parse(response.data);
- let type = 0;
- for (let i = 0; i < thingsModel.functions.length; i++) {
- if (model.id == thingsModel.functions[i].id) {
- type = 2;
- break;
- }
- }
- if (type == 0) {
- for (let i = 0; i < thingsModel.properties.length; i++) {
- if (model.id == thingsModel.properties[i].id) {
- type = 1;
- break;
- }
- }
- }
- if (type != 0) {
- this.mqttPublish(type, device, model);
- }
- });
- },
- notifyError(res){
- uni.showToast({
- title:res,
- icon:"error"
- })
- },
- notifySuccess(res){
- uni.showToast({
- title:res,
- icon:"success"
- })
- },
- /**
- * Mqtt发布消息
- * @type 类型(1=属性,2=功能,3=OTA升级,4=实时监测)
- * @device 设备
- * @model 物模型
- * */
- mqttPublish(type, device, model) {
- let topic = "";
- let message = ""
- let oneToMul = false;
- if(this.summary.length>0){
- oneToMul = true;
- }
- let modelId = model.id;
- if(oneToMul){
- let info = this.summary[this.activeName];
- let childId = info.id;
- modelId = modelId+"_"+childId;
- }
- if (type == 1) {
- if (device.status == 3) {
- // 属性,在线模式
- topic = "/" + device.productId + "/" + device.serialNumber + "/property-online/get";
- } else if (device.isShadow) {
- // 属性,离线模式
- topic = "/" + device.productId + "/" + device.serialNumber + "/property-offline/post";
- }
- message = '[{"id":"' + modelId + '","value":"' + model.shadow + '"}]';
- } else if (type == 2) {
- if (device.status == 3) {
- // 功能,在线模式
- topic = "/" + device.productId + "/" + device.serialNumber + "/function-online/get";
- } else if (device.isShadow) {
- // 功能,离线模式
- topic = "/" + device.productId + "/" + device.serialNumber + "/function-offline/post";
- }
- message = '[{"id":"' + modelId + '","value":"' + model.shadow + '"}]';
- } else if (type == 3) {
- // OTA升级
- topic = "/" + device.productId + "/" + device.serialNumber + "/ota/get";
- message = '{"version":' + this.firmware.version + ',"downloadUrl":"' + this.getDownloadUrl(this.firmware.filePath) + '"}';
- } else {
- return;
- }
- if (topic != "") {
- // 发布
- let self = this;
- this.$mqttTool.publish(topic, message, model.name).then(res => {
- this.notifySuccess(res);
- }).catch(res => {
- this.notifyError(res);
- });
- }
- },
- startCheck(){
- let self = this;
- this.checkTimer = setInterval(function (){
- self.sendHeart();
- },20000);
- },
- checkActive(){
- let self = this;
- setTimeout(function (){
- if(self.publishMsg){
- self.resetConn()
- }
- },3000);
- },
- sendHeart(){
- console.log("发送心跳")
- let device = this.deviceInfo;
- let self = this;
- let topic = "/property-offline/post";
- self.publishMsg = true;
- self.checkActive();
- this.$mqttTool.publish(topic, "ok", "heart").then(res => {
- self.publishMsg = false;
- }).catch(res => {
- self.publishMsg = false;
- });
- },
- resetConn(){
- console.log("检测异常,重连")
- this.$mqttTool.end();
- this.$mqttTool.client = null;
- this.connectMqtt();
- this.getDetail();
- }
- }
- }
- </script>
- <style>
- .header{
- width: 100%;
- background: white;
- padding:0px 20rpx;
- position: relative;
- }
- .content {
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .logo {
- height: 200rpx;
- width: 200rpx;
- margin-top: 200rpx;
- margin-left: auto;
- margin-right: auto;
- margin-bottom: 50rpx;
- }
- .text-area {
- margin:10px;
- padding-bottom: 10px;
- justify-content: center;
- width: 100%;
- }
- .grid-text {
- font-size: 14px;
- color: #909399;
- padding: 10rpx 0 20rpx 0rpx;
- /* #ifndef APP-PLUS */
- box-sizing: border-box;
- /* #endif */
- }
- .title {
- font-size: 36rpx;
- color: #8f8f94;
- }
- .item{
- height: 80rpx;
- line-height: 80rpx;
- }
- .bg{
- position: relative;
- }
- .text-left{
- color: #8A92A5;
- }
- .text-right{
- color: #545454;
- }
- .prop-text{
- position: relative;
- margin:20rpx 0;
- font-size: 26rpx;
- }
- .prop-card-area{
- }
- .prop-card{
- width: 28%;
- height: 100rpx;
- text-align: center;
- display: inline-block;
- background: #F5FCFF;
- box-shadow: 0px 9rpx 8rpx 0px rgba(0,0,0,0.09);
- border-radius: 8rpx;
- margin:0px 15rpx;
- line-height: 48rpx;
- }
- .prop-card-top{
- color: #3E9CFC;
- }
- .prop-card-bottom{
- color: #8A92A5;
- }
- .tab-area {
- background: white;
- position: absolute;
- left: 0px;
- right: 0px;
- top:480rpx;
- bottom:-20px;
- min-height: 200rpx;
- box-shadow: 0rpx 5rpx 27rpx 0rpx rgba(195, 195, 195, 0.4);
- border-radius: 40rpx;
- overflow-y: auto;
- padding-bottom:80rpx;
- }
- .prop-item{
- justify-content:center;
- position: relative;
- border-bottom: 1px solid lightgray;
- height: 80rpx;
- margin:0 20rpx;
- }
- .prop-item-left{
- position: absolute;
- left:10rpx;
- top:22rpx;
- color: #545454;
- }
- .prop-item-right{
- position: absolute;
- right:10rpx;
- top:10rpx;
- }
- input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{
- color:#666;
- font-size:12px;
- }
- </style>
|