|
@@ -47,7 +47,6 @@
|
|
|
<view class="uni-input">{{item.attributeList[5].value}}</view>
|
|
|
<u-icon name="arrow-down" color="#999" size="16" class="inline"></u-icon>
|
|
|
</picker>
|
|
|
- {{item.attributeList[0].value|findInd(speedTypeList)}}
|
|
|
<picker @change="(val)=>confirmHandle(val,'speedType',item.deviceId)" :value="item.attributeList[0].value|findInd(speedTypeList)"
|
|
|
:range="speedTypeList" style="width:100%;height: 100%;" range-key="dictLabel">
|
|
|
<view class="uni-input">{{findInd2(item.attributeList[0].value,speedTypeList)}}</view>
|
|
@@ -204,11 +203,9 @@
|
|
|
},
|
|
|
getModeTypeList() {
|
|
|
this.modeTypeList = getDictDataList("ModeType");
|
|
|
- console.log(this.modeTypeList)
|
|
|
},
|
|
|
getSpeedTypeList() {
|
|
|
this.speedTypeList = getDictDataList("SpeedType");
|
|
|
- console.log(this.speedTypeList)
|
|
|
},
|
|
|
setTemperatureList() {
|
|
|
this.temperatureList = [];
|
|
@@ -217,12 +214,10 @@
|
|
|
}
|
|
|
},
|
|
|
confirmHandle(e, type,deviceId) {
|
|
|
- console.log(e)
|
|
|
this.dataForm.page = 1;
|
|
|
if(type=='position'){
|
|
|
this.p1= e.detail.value[0];
|
|
|
this.p2= e.detail.value[1];
|
|
|
- console.log(this.positionList[0])
|
|
|
this.dataForm.buildingId =this.p1==0?'':this.positionList[0][this.p1].orgId;
|
|
|
this.dataForm.storeyId =this.p2==0?"":this.positionList[1][this.p2].orgId;
|
|
|
let buildName = this.p1 ==0? "" :'-'+this.positionList[0][this.p1].orgName;
|
|
@@ -358,7 +353,6 @@
|
|
|
},
|
|
|
//下发指令开关
|
|
|
changeSwitch(type, val, deviceId, index) {
|
|
|
- console.log(val)
|
|
|
let msg = "";
|
|
|
if (val.detail.value) {
|
|
|
msg = "开启";
|