|
|
@@ -787,7 +787,7 @@
|
|
|
<view class="control_item_detail">
|
|
|
<view class="control_item_left" style="left:22%;top:-41rpx" @click="subTemperature(1)">-</view>
|
|
|
<view class="control_item_center" style="top:-2px;left: 40%;">
|
|
|
- <u-input fontSize="20px" customStyle="width:150rpx;border:0px;font-size:20px" disabledColor="white" v-model="currentTemperature"/>
|
|
|
+ <u-input fontSize="20px" customStyle="width:150rpx;border:0px;font-size:20px" disabledColor="white" @confirm="propBlur(1)" @blur="propBlur(1)" v-model="currentTemperature"/>
|
|
|
</view>
|
|
|
<view class="control_item_center_unit" style="; font-size: 12px;
|
|
|
left: 37vw;
|
|
|
@@ -811,7 +811,7 @@
|
|
|
<view class="control_item_detail">
|
|
|
<view class="control_item_left" style="left:22%;top:-41rpx" @click="subTemperatureTime(1)">-</view>
|
|
|
<view class="control_item_center" style="top:-2px;left: 40%;">
|
|
|
- <u-input fontSize="20px" customStyle="width:150rpx;border:0px;font-size:20px" disabledColor="white" @change="propChange(1)" @focus="propFocus(2)" @confirm="propBlur(2)" @blur="propBlur(2)" v-model="leftJianyaoTime"></u-input>
|
|
|
+ <u-input fontSize="20px" customStyle="width:150rpx;border:0px;font-size:20px" disabledColor="white" @change="propChange(0)" @focus="propFocus(0)" @confirm="propBlur(16)" @blur="propBlur(16)" v-model="leftJianyaoTime"></u-input>
|
|
|
</view>
|
|
|
<view class="control_item_center_unit" style="; font-size: 12px;
|
|
|
left: 37vw;
|
|
|
@@ -2125,8 +2125,13 @@ export default {
|
|
|
},
|
|
|
propBlur(type){
|
|
|
if(type == 1){
|
|
|
- this.jianyaoWenduSetting = false;
|
|
|
- this.changeTemperature();
|
|
|
+ if(this.jianyaoMode == 1){
|
|
|
+ this.wenduSetting = true;
|
|
|
+ this.changeFirstTemperature();
|
|
|
+ }else{
|
|
|
+ this.jianyaoWenduSetting = false;
|
|
|
+ this.changeTemperature();
|
|
|
+ }
|
|
|
}
|
|
|
if(type == 2){
|
|
|
this.temperatureTime = this.leftJianyaoTime;
|
|
|
@@ -2178,6 +2183,9 @@ export default {
|
|
|
if(type ==15){
|
|
|
this.changeTimeSecond();
|
|
|
}
|
|
|
+ if(type == 16){
|
|
|
+ this.changeFirstTime();
|
|
|
+ }
|
|
|
|
|
|
|
|
|
},
|