更新 src/views/page/air-conditioning.vue
This commit is contained in:
parent
3a9402395d
commit
d135c6ab3b
@ -76,7 +76,7 @@
|
|||||||
<div class="flex-view padding-none shrink-none">
|
<div class="flex-view padding-none shrink-none">
|
||||||
<div class="input-sel input-sel-w180">
|
<div class="input-sel input-sel-w180">
|
||||||
<span>3.空调设置冷暖模式</span>
|
<span>3.空调设置冷暖模式</span>
|
||||||
<el-dropdown @command="handleCommand1($event, 22042)">
|
<el-dropdown @command="handleCommand2($event, 22042)">
|
||||||
<div class="el-dropdown-link">
|
<div class="el-dropdown-link">
|
||||||
<input
|
<input
|
||||||
v-model="inputDataNew[22042]"
|
v-model="inputDataNew[22042]"
|
||||||
@ -223,9 +223,9 @@
|
|||||||
<div class="input-main-80">
|
<div class="input-main-80">
|
||||||
<span>空调设置最低温庶值</span>
|
<span>空调设置最低温庶值</span>
|
||||||
<input
|
<input
|
||||||
@blur="blurChange(22048, $event)"
|
@blur="blurChange10(22048, $event)"
|
||||||
v-model="inputData[22048]"
|
v-model="inputData[22048]"
|
||||||
@input="change(22048, $event)"
|
@input="changeCount10(22048, $event)"
|
||||||
type="text"
|
type="text"
|
||||||
placeholder="0"
|
placeholder="0"
|
||||||
/>
|
/>
|
||||||
@ -372,6 +372,21 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
this.changeBtn(code, dataNum);
|
this.changeBtn(code, dataNum);
|
||||||
|
},
|
||||||
|
//制冷制热类型选择
|
||||||
|
handleCommand2(command, code) {
|
||||||
|
this.typeList2.forEach((el, index) => {
|
||||||
|
if (el.value == command) {
|
||||||
|
this.inputDataNew[code] = el.label;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
this.inputData[code] = command;
|
||||||
|
var dataNum = {
|
||||||
|
target: {
|
||||||
|
value: command,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
this.changeBtn(code, dataNum);
|
||||||
},
|
},
|
||||||
// 工作方式选择
|
// 工作方式选择
|
||||||
changeOpen(index) {
|
changeOpen(index) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user