|
@@ -104,8 +104,7 @@
|
|
|
/>
|
|
|
</div>
|
|
|
<div class="dialog-text">
|
|
|
- <div
|
|
|
- class="air-body-item-num">
|
|
|
+ <div class="air-body-item-num">
|
|
|
<!-- <div class="air-temp-num">{{ temperature }}</div> -->
|
|
|
<!-- <div
|
|
|
class="air-temp-num"
|
|
@@ -339,21 +338,20 @@ export default defineComponent({
|
|
|
proxyData.airData = resData;
|
|
|
proxyData.formateModel(proxyData.airData.mode);
|
|
|
contx.emit("updateAirTemp", proxyData.airData.tempSet);
|
|
|
- if (
|
|
|
- proxyData.airData.icon &&
|
|
|
- (proxyData.airData.icon === 7 || proxyData.airData.icon === 8)
|
|
|
- ) {
|
|
|
+ if (proxyData.airData.icon && proxyData.airData.icon === 7) {
|
|
|
proxyData.airData.isOpen = false;
|
|
|
proxyData.airData.airImg = parseImgUrl(
|
|
|
"page-officehome",
|
|
|
"air_close.png"
|
|
|
);
|
|
|
} else {
|
|
|
- proxyData.airData.isOpen = true;
|
|
|
- proxyData.airData.airImg = parseImgUrl(
|
|
|
- "page-officehome",
|
|
|
- "openair.png"
|
|
|
- );
|
|
|
+ if (proxyData.airData.icon && proxyData.airData.icon !== 6) {
|
|
|
+ proxyData.airData.isOpen = true;
|
|
|
+ proxyData.airData.airImg = parseImgUrl(
|
|
|
+ "page-officehome",
|
|
|
+ "openair.png"
|
|
|
+ );
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -361,8 +359,8 @@ export default defineComponent({
|
|
|
if (type === "feedback") {
|
|
|
if (resData.notice) {
|
|
|
proxyData.airSetText.notice = resData.notice;
|
|
|
- if(resData.remark && resData.remark.length){
|
|
|
- proxyData.airSetText.remark =resData.remark.split("*")
|
|
|
+ if (resData.remark && resData.remark.length) {
|
|
|
+ proxyData.airSetText.remark = resData.remark.split("*");
|
|
|
}
|
|
|
if (proxyData.feedbackTimer) {
|
|
|
clearTimeout(proxyData.feedbackTimer); // 拿到反馈文案清除定时器
|
|
@@ -513,8 +511,8 @@ export default defineComponent({
|
|
|
// debugger
|
|
|
if (resData.notice) {
|
|
|
proxyData.airSetText.notice = resData.notice;
|
|
|
- if(resData.remark && resData.remark.length){
|
|
|
- proxyData.airSetText.remark =resData.remark.split("*")
|
|
|
+ if (resData.remark && resData.remark.length) {
|
|
|
+ proxyData.airSetText.remark = resData.remark.split("*");
|
|
|
}
|
|
|
} else {
|
|
|
proxyData.getFeedbackTimer(btnType, resData.id);
|