manualIndex.vue 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452
  1. <template>
  2. <div class="air">
  3. <div class="com-top">
  4. <div class="com-desc">
  5. <p class="com-top-title">空调</p>
  6. <p class="com-top-temperature">
  7. {{ airTemp ? airTemp : "--" }}
  8. <sup>℃</sup>
  9. </p>
  10. </div>
  11. <div class="com-right">
  12. <img
  13. v-if="airData.isOpen"
  14. :src="parseImgUrl('page-officehome', 'openair.svg')"
  15. alt=""
  16. />
  17. <img
  18. v-else
  19. :src="parseImgUrl('page-officehome', 'air_close.svg')"
  20. alt=""
  21. />
  22. <!-- <van-loading style="padding-top: 20px" v-else /> -->
  23. </div>
  24. </div>
  25. <!--温度调节-->
  26. <div class="top-switch">
  27. <div class="top-nav" v-if="equipList && equipList.length > 1">
  28. <span
  29. :class="navType == 'all' ? 'nav-active' : ''"
  30. @click="checkNav('all')"
  31. >
  32. 总控制
  33. </span>
  34. <span
  35. :class="navType == 'child' ? 'nav-active' : ''"
  36. @click="checkNav('child')"
  37. >
  38. 子设备
  39. </span>
  40. </div>
  41. <div v-else></div>
  42. <Switch
  43. class="switch-btn"
  44. v-if="navType == 'all' && airData.boundPoint && airData.boundPoint.switchSetBound "
  45. :size="23"
  46. inactive-color="rgba(196, 196, 196, 0.4)"
  47. @click="airChange"
  48. :model-value="airData.isOpen"
  49. />
  50. </div>
  51. <!--温度调节的box-->
  52. <template v-if="airData.boundPoint && (airData.boundPoint.tempSetBound || airData.boundPoint.gearSetBound || airData.boundPoint.modeSetBound)">
  53. <div class="line" v-if="airData.isOpen"></div>
  54. <div class="main-temp" v-if="navType == 'all' && airData.isOpen">
  55. <div class="com-control com-control-padding" v-if="airData.boundPoint && airData.boundPoint.tempSetBound" >
  56. <div class="temp-slider" id="sliderId">
  57. <div class="slider-bar" id="barId">
  58. <div class="bar-temp">{{ realTemp }}℃</div>
  59. <div
  60. class="bar-circle"
  61. style="border: 2px solid rgba(255, 255, 255, 1)"
  62. id="handId"
  63. ></div>
  64. </div>
  65. <div class="temp-left" id="tempManualLeftId">
  66. {{ airData.minTempSet }}
  67. </div>
  68. <div class="temp-right">
  69. {{ airData.maxTempSet }}
  70. </div>
  71. </div>
  72. </div>
  73. <div class="com-control" v-if="airData.boundPoint && airData.boundPoint.gearSetBound">
  74. <div class="control-box">
  75. <div class="volume-box">
  76. <div class="number">
  77. <span
  78. v-for="(item, index) in windGearArr"
  79. :class="airData.gear === item ? 'number-active' : ''"
  80. :key="'volume' + index"
  81. >{{ item }}</span
  82. >
  83. </div>
  84. <div class="text">风量调节</div>
  85. </div>
  86. <div class="volume-icon">
  87. <div
  88. class="icon-item"
  89. :style="{
  90. opacity: airData.gear <= 1 ? '0.6' : 1,
  91. }"
  92. @click="changeZongAir('gear', 'windLow')"
  93. >
  94. <img :src="parseImgUrl('ipdImages', 'wind_small.svg')" />
  95. </div>
  96. <div
  97. class="icon-item"
  98. :style="{ opacity: airData.gear >= 3 ? '0.6' : 1 }"
  99. @click="changeZongAir('gear', 'windUp')"
  100. >
  101. <img :src="parseImgUrl('ipdImages', 'wind_big.svg')" />
  102. </div>
  103. <div
  104. class="icon-item"
  105. @click="changeZongAir('gear', 'auto')"
  106. :class="airData.isAutoGear ? 'active-color' : ''"
  107. >
  108. <img :src="parseImgUrl('ipdImages', 'A.svg')" />
  109. </div>
  110. </div>
  111. </div>
  112. </div>
  113. <div class="com-control" v-if="airData.boundPoint && airData.boundPoint.modeSetBound">
  114. <div class="control-box">
  115. <div class="volume-box">
  116. <div class="model">
  117. {{
  118. airData.workMode == 1
  119. ? "制冷"
  120. : airData.workMode == 2
  121. ? "制热"
  122. : "通风"
  123. }}
  124. </div>
  125. <div class="text">模式设定</div>
  126. </div>
  127. <div class="volume-icon">
  128. <div
  129. class="icon-item"
  130. :class="airData.workMode === 1 ? 'active-color' : ''"
  131. @click="changeZongAir('mode', 1)"
  132. >
  133. <img
  134. :src="
  135. airData.workMode === 1
  136. ? parseImgUrl('ipdImages', 'aircoldblue.svg')
  137. : parseImgUrl('ipdImages', 'aircoldblack.svg')
  138. "
  139. />
  140. </div>
  141. <div
  142. class="icon-item"
  143. :class="airData.workMode === 2 ? 'active-color' : ''"
  144. @click="changeZongAir('mode', 2)"
  145. >
  146. <img
  147. :src="
  148. airData.workMode === 2
  149. ? parseImgUrl('ipdImages', 'airsunred.svg')
  150. : parseImgUrl('ipdImages', 'airsunblack.svg')
  151. "
  152. />
  153. </div>
  154. <div
  155. class="icon-item"
  156. :class="airData.workMode === 3 ? 'active-color' : ''"
  157. @click="changeZongAir('mode', 3)"
  158. >
  159. <img
  160. :src="
  161. airData.workMode === 3
  162. ? parseImgUrl('ipdImages', 'aircloudgreen.svg')
  163. : parseImgUrl('ipdImages', 'aircloudblack.svg')
  164. "
  165. />
  166. </div>
  167. </div>
  168. </div>
  169. </div>
  170. </div>
  171. </template>
  172. <!--子设备-->
  173. <div class="air-child" v-if="navType == 'child'">
  174. <div
  175. class="child-control-box"
  176. @click="showAirColorCtrol(childItem)"
  177. :key="'child' + index"
  178. v-for="(childItem, index) in equipList"
  179. >
  180. <div class="open-title">
  181. <div class="open-temp-box">
  182. <span>{{ childItem.tempSet? childItem.tempSet:'--' }}<sup>°C</sup></span>
  183. <template v-if="childItem.boundPoint && childItem.boundPoint.modeSetBound">
  184. <div class="text-box" v-if="childItem.workMode == 2">
  185. <img :src="parseImgUrl('ipdImages', 'hot-small.svg')" alt="" />
  186. <span>制热模式</span>
  187. </div>
  188. <div class="text-box" v-else-if="childItem.workMode == 1">
  189. <img :src="parseImgUrl('ipdImages', 'cold-small.svg')" alt="" />
  190. <span>制冷模式</span>
  191. </div>
  192. <div class="text-box" v-else>
  193. <img
  194. :src="parseImgUrl('ipdImages', 'tongfeng-small.svg')"
  195. alt=""
  196. />
  197. <span>通风模式</span>
  198. </div>
  199. </template>
  200. </div>
  201. <Switch
  202. v-if="childItem.boundPoint && childItem.boundPoint.switchSetBound"
  203. @click.stop="changeChildItemAir('switch', childItem, 'switch')"
  204. :model-value="childItem.isOpen"
  205. class="child-switch"
  206. inactive-color="rgba(196, 196, 196, 0.4)"
  207. />
  208. </div>
  209. <div class="control-bottom">
  210. <div class="control-title">
  211. {{ childItem.localName }}
  212. </div>
  213. <img
  214. v-if="childItem.boundPoint && (childItem.boundPoint.tempSetBound || childItem.boundPoint.gearSetBound || childItem.boundPoint.modeSetBound)"
  215. :class="childItem.isOpen ? '' : 'img-disabled'"
  216. :src="lightColorImg"
  217. alt=""
  218. />
  219. </div>
  220. </div>
  221. </div>
  222. </div>
  223. </template>
  224. <script lang="ts">
  225. import {
  226. defineComponent,
  227. onMounted,
  228. reactive,
  229. toRefs,
  230. computed,
  231. watch,
  232. onUnmounted,
  233. onBeforeMount,
  234. onBeforeUnmount,
  235. nextTick
  236. } from "vue";
  237. import { Switch, Dialog, Toast } from "vant";
  238. import { swiper } from "@/utils/swiper";
  239. import { querySpaceConditioners, setSpaceCondtioners } from "@/apis/envmonitor";
  240. import { getRelNowTime, parseImgUrl, setQueryConfig } from "@/utils";
  241. import any = jasmine.any;
  242. export default defineComponent({
  243. props: {
  244. temperature: {
  245. // 空调基本信息
  246. type: Number,
  247. default: () => 0
  248. },
  249. // hasAir: {
  250. // // 有无空调
  251. // type: Boolean,
  252. // default: () => false,
  253. // },
  254. airVolumes: {
  255. // 风量信息
  256. type: Array,
  257. default: () => []
  258. },
  259. projectId: {
  260. type: String,
  261. default: () => ""
  262. },
  263. spaceId: {
  264. type: String,
  265. default: () => ""
  266. },
  267. userIsControl: {
  268. type: Boolean,
  269. default: () => false
  270. },
  271. forceOverTimeFlag: {
  272. type: Boolean,
  273. default: () => false
  274. },
  275. seviceEquipmentList: {
  276. // 是否走服务定制的设备
  277. type: Array,
  278. default: () => []
  279. }
  280. },
  281. components: {
  282. Switch,
  283. [Dialog.Component.name]: Dialog.Component
  284. },
  285. setup(props, contx) {
  286. const propsVal = props;
  287. let airData: any = {
  288. avg: "", // 算法调节温度(目标值)
  289. icon: 1, // 固定框文案ID 7 为关机,其它都是开机
  290. spaceStatus: "", // 固定框文案展示
  291. notice: "", // 弹框文案展示
  292. mode: 0, // 模式
  293. tempSet: 0, // 温度
  294. maxTempSet: 32,
  295. minTempSet: 16,
  296. isAutoGear: 0,
  297. workMode: 0, //1=cold(制冷);2=hot(制热);3=wind(通风)
  298. gear: 0, // 风量
  299. boundPoint: {}, // 开关 档位 温度 模式点位
  300. isOpen: false, // 空调开关 true 是开
  301. runStatus: 0 // 查询设备的真实状态
  302. };
  303. const feedbackTimer: any = null;
  304. const airTimer: any = null;
  305. const domAirOpeen: any = false;
  306. const switchTimer: any = null;
  307. let realTemp: any = 16;
  308. let windGearArr: any = [0, 1, 2, 3];
  309. let equipList: any = [];
  310. let valueDom: any = null;
  311. let valueHeight: any = null;
  312. let spaceId: any = "";
  313. const proxyData: any = reactive({
  314. seviceEquipmentList: props.seviceEquipmentList,
  315. lightColorImg: parseImgUrl("page-officehome", "lightColorControl.svg"),
  316. navType: "all",
  317. valueDom: valueDom,
  318. spaceId: props.spaceId,
  319. valueHeight: valueHeight,
  320. equipList: equipList,
  321. cotrolLoading: false,
  322. loadingNum: 0,
  323. airTemp: 0, // 设备真实温度
  324. loadingAir: false,
  325. windGearArr: windGearArr, // 风量3/5个档位
  326. lightIcon: "arrow-down",
  327. showChild: false,
  328. realTemp: realTemp,
  329. temperature: props.temperature,
  330. userIsControl: props.userIsControl,
  331. forceOverTimeFlag: props.forceOverTimeFlag,
  332. firstLoadingAir: true,
  333. domAirOpeen: domAirOpeen,
  334. swiperIinit: false,
  335. parseImgUrl: parseImgUrl,
  336. part: 1,
  337. airData: airData,
  338. modeName: "",
  339. showAirVolumeBtn: false, // 是否展示风量调节按钮
  340. showDialog: false,
  341. airTimer: airTimer,
  342. distroyFlag: false,
  343. airSetText: {
  344. // 空调反馈文案
  345. notice: "",
  346. remark: [],
  347. nowImg: "",
  348. toWhere: "",
  349. designTemperature: 0
  350. },
  351. checkNav(type: any = "all") {
  352. proxyData.navType = type;
  353. proxyData.swiperIinit = false;
  354. if (proxyData.navType == "child") {
  355. // proxyData.updateChildSatus();
  356. } else {
  357. proxyData.updateParentSatus();
  358. }
  359. // isAddTimer==0(需要定时再调) isAddTimer==1(不需要定时调)
  360. proxyData.getAirInfo(1);
  361. },
  362. // 展示空调子设备的控制页面
  363. showAirColorCtrol(item: any) {
  364. // 只要空调开着的时候才可以调档位和风量
  365. console.log(item);
  366. if (item.isOpen) {
  367. item.maxTempSet = proxyData.airData.maxTempSet;
  368. item.minTempSet = proxyData.airData.minTempSet;
  369. contx.emit("showChildAirControl", item);
  370. }
  371. },
  372. // 点击展示所有的登录
  373. async showAll() {
  374. proxyData.showChild = !proxyData.showChild;
  375. if (proxyData.lightIcon === "arrow-up") {
  376. proxyData.lightIcon = "arrow-down";
  377. } else {
  378. proxyData.lightIcon = "arrow-up";
  379. }
  380. // if (proxyData.showChild) {
  381. // await nextTick(() => {
  382. // proxyData.setChildSelectList();
  383. // });
  384. // } else {
  385. // await nextTick(() => {
  386. // proxyData.barSwiperInit();
  387. // });
  388. // }
  389. if (proxyData.showChild) {
  390. proxyData.updateChildSatus();
  391. } else {
  392. proxyData.updateParentSatus();
  393. }
  394. // isAddTimer==0(需要定时再调) isAddTimer==1(不需要定时调)
  395. proxyData.getAirInfo(1);
  396. // proxyData.getAirInfoToTimer(0);
  397. },
  398. // 设置温度条的位置
  399. setBarNowPerstion() {
  400. proxyData.realTemp = proxyData.airTemp;
  401. let barBox: any = document.querySelector("#barId");
  402. if (!barBox) {
  403. return;
  404. }
  405. let sliderBox: any = document.querySelector("#sliderId");
  406. let sliderWidth: any = proxyData.getEleWidth(sliderBox);
  407. if (
  408. proxyData.airTemp >= proxyData.airData.minTempSet &&
  409. proxyData.airTemp <= proxyData.airData.maxTempSet
  410. ) {
  411. let left: any =
  412. (proxyData.airTemp - proxyData.airData.minTempSet) / proxyData.part;
  413. left = Math.floor(left);
  414. if (barBox) {
  415. barBox.style.left = left + "px";
  416. }
  417. } else {
  418. if (!proxyData.airTemp) {
  419. barBox.style.left = 0;
  420. } else if (proxyData.airTemp < proxyData.airData.minTempSet) {
  421. barBox.style.left = 0;
  422. } else if (proxyData.airTemp > proxyData.airData.maxTempSet) {
  423. let barWidth: any = barBox.offsetWidth;
  424. barBox.style.left =
  425. sliderWidth - barWidth + proxyData.sliderPading + "px";
  426. }
  427. }
  428. },
  429. getEleWidth(ele: any) {
  430. // debugger;
  431. if (ele) {
  432. return ele.getBoundingClientRect().width;
  433. } else {
  434. return 1;
  435. }
  436. },
  437. // 滑动
  438. endBoxSwiper() {
  439. proxyData.swiperIinit = true;
  440. let handBox: any = document.querySelector("#handId");
  441. let barBox: any = document.querySelector("#barId");
  442. let sliderBox: any = document.querySelector("#sliderId");
  443. let isMove: any = false;
  444. let barLeft: any = 0;
  445. proxyData.sliderPading = 2;
  446. let sliderWidth: any = proxyData.getEleWidth(sliderBox);
  447. let barWidth: any = proxyData.getEleWidth(barBox);
  448. if (sliderWidth > 1) {
  449. sliderWidth = sliderWidth - barWidth;
  450. }
  451. let tempPart =
  452. (proxyData.airData.maxTempSet - proxyData.airData.minTempSet) /
  453. sliderWidth;
  454. let part: any = tempPart;
  455. proxyData.part = tempPart;
  456. if (!handBox) {
  457. return;
  458. }
  459. handBox.addEventListener("touchstart", function(e: any) {
  460. barLeft = isNaN(parseInt(barBox.style.left))
  461. ? 0
  462. : parseInt(barBox.style.left);
  463. isMove = true;
  464. });
  465. handBox.addEventListener("touchend", function(e: any) {
  466. isMove = false;
  467. proxyData.changeZongAir("temp", proxyData.realTemp);
  468. proxyData.airTemp = proxyData.realTemp;
  469. });
  470. swiper(handBox, {
  471. swipeLeft: function(e: any) {
  472. if (isMove) {
  473. barLeft = Math.abs(barLeft);
  474. let moveRealX: any = Math.abs(e.mation.moveX - e.mation.startX);
  475. let left: any = barLeft - moveRealX;
  476. left = left < 0 ? 0 : left;
  477. barBox.style.left = left + "px";
  478. proxyData.realTemp = left * part + proxyData.airData.minTempSet;
  479. proxyData.realTemp = Math.round(proxyData.realTemp);
  480. }
  481. },
  482. swipeRight: function(e: any) {
  483. if (isMove) {
  484. barLeft = Math.abs(barLeft);
  485. let moveRealX: any = Math.abs(e.mation.moveX - e.mation.startX);
  486. let left: any = barLeft + moveRealX;
  487. left = left > sliderWidth ? sliderWidth : left;
  488. proxyData.realTemp = left * part + proxyData.airData.minTempSet;
  489. proxyData.realTemp = Math.round(proxyData.realTemp);
  490. barBox.style.left = left + proxyData.sliderPading + "px";
  491. }
  492. }
  493. });
  494. },
  495. // 定时获取空调状态
  496. getAirInfoToTimer(timerLong: any = 15000) {
  497. let nowTime: any = getRelNowTime();
  498. if (timerLong == 15000 && nowTime < "070000" && nowTime > "200000") {
  499. timerLong = 300000;
  500. }
  501. console.log("nowTime===", nowTime);
  502. if (proxyData.airTimer) {
  503. clearTimeout(proxyData.airTimer);
  504. proxyData.airTimer = null;
  505. }
  506. proxyData.airTimer = setTimeout(() => {
  507. if (!proxyData.distroyFlag) {
  508. // 销毁是同事销毁http请求
  509. if (!proxyData.loadingNum) {
  510. proxyData.getAirInfo();
  511. }
  512. }
  513. }, timerLong);
  514. },
  515. // 获取操作时长
  516. getTimerLen() {
  517. // debugger;
  518. let equipmentCategory: any = "";
  519. if (proxyData.equipList && proxyData.equipList.length) {
  520. equipmentCategory = proxyData.equipList[0].equipmentCategory;
  521. }
  522. let timerLen: any = 15;
  523. if (equipmentCategory && equipmentCategory == "ACATVI") {
  524. // timerLen = 120;
  525. timerLen = 15;
  526. }
  527. return timerLen;
  528. },
  529. switchTimer: switchTimer,
  530. // 计算loading时间
  531. setLoadingNumber() {
  532. let timerLen: any = proxyData.getTimerLen();
  533. proxyData.switchTimer = setInterval(() => {
  534. proxyData.loadingNum++;
  535. if (proxyData.loadingNum >= timerLen) {
  536. clearInterval(proxyData.switchTimer);
  537. proxyData.switchTimer = null;
  538. proxyData.loadingAir = false;
  539. proxyData.loadingNum = 0;
  540. proxyData.getAirInfoToTimer(0);
  541. }
  542. console.log("proxyData.loadingNum==", proxyData.loadingNum, timerLen);
  543. }, 1000);
  544. },
  545. // 格式化空调数据
  546. formatAirData(btnType: any, text: any) {
  547. let obj: any = {};
  548. if (btnType == "temp") {
  549. obj.codeKey = "tempSetCode";
  550. obj.value = text;
  551. }
  552. if (btnType == "gear" && text == "windLow") {
  553. //降挡
  554. if (proxyData.airData.gear > 1) {
  555. proxyData.airData.gear--;
  556. proxyData.airData.isAutoGear = 0;
  557. obj.value = proxyData.airData.gear;
  558. obj.codeKey = "gearCode";
  559. } else {
  560. return;
  561. }
  562. }
  563. if (btnType == "gear" && text == "windUp") {
  564. //升档
  565. if (proxyData.airData.gear < 3) {
  566. proxyData.airData.gear++;
  567. proxyData.airData.isAutoGear = 0;
  568. obj.value = proxyData.airData.gear;
  569. obj.codeKey = "gearCode";
  570. } else {
  571. return;
  572. }
  573. }
  574. if (btnType == "gear" && text == "auto") {
  575. proxyData.airData.isAutoGear = proxyData.airData.isAutoGear ? 0 : 1;
  576. obj.value = proxyData.airData.isAutoGear ? 4 : proxyData.airData.gear;
  577. obj.codeKey = "gearCode";
  578. }
  579. if (btnType == "mode") {
  580. proxyData.airData.workMode = text;
  581. obj.codeKey = "modeSetCode";
  582. obj.value = text;
  583. }
  584. return obj;
  585. },
  586. /**
  587. * 加载loading
  588. */
  589. loadingStart() {
  590. proxyData.cotrolLoading = true;
  591. },
  592. /**
  593. * 结束
  594. */
  595. loadinngEnd() {
  596. proxyData.cotrolLoading = false;
  597. },
  598. // 计算loading时间
  599. setChildLoadingNumber(childItem: any) {
  600. let timerLen: any = proxyData.getTimerLen();
  601. childItem.loadingNum = 1;
  602. childItem.timer = setInterval(() => {
  603. childItem.loadingNum++;
  604. if (childItem.loadingNum >= timerLen) {
  605. clearInterval(childItem.timer);
  606. childItem.timer = null;
  607. childItem.loadingNum = 0;
  608. proxyData.getAirInfoToTimer(0);
  609. }
  610. console.log("===");
  611. console.log(childItem.loadingNum);
  612. }, 1000);
  613. },
  614. // 连续点击2秒内未点击才发指令
  615. childDisabled(childItem: any, data: any) {
  616. clearTimeout(childItem.timeOuter);
  617. childItem.timeOuter = setInterval(() => {
  618. childItem.num--;
  619. if (childItem.num == 0) {
  620. proxyData.setSpaceCondtioners(data);
  621. clearTimeout(childItem.timeOuter);
  622. }
  623. }, 1000);
  624. },
  625. // 子设备开关控制
  626. changeChildItemAir(btnType: any, childItem: any, symbol: any) {
  627. const domAirOpen = !childItem.isOpen;
  628. let isExeSpaceTime: Boolean = proxyData.checkDeviceIsExeSpaceTime([
  629. childItem
  630. ]);
  631. if (
  632. proxyData.forceOverTimeFlag &&
  633. domAirOpen &&
  634. isExeSpaceTime &&
  635. btnType == "switch"
  636. ) {
  637. //需要强制加班
  638. contx.emit("triggerWork", 2, childItem);
  639. return;
  640. }
  641. // 空调没有开的时候不让调温度和风量
  642. if (!childItem.isOpen && btnType !== "switch") {
  643. return;
  644. }
  645. let arr: any = [];
  646. if (btnType === "switch") {
  647. if (childItem.loadingNum >= 1 && childItem.loadingNum <= 15) {
  648. return;
  649. }
  650. childItem.isOpen = !childItem.isOpen;
  651. let obj: any = {
  652. id: childItem.id, //类型:String 必有字段 备注:设备id
  653. code: childItem.switchCode, //类型:String 必有字段 备注:编码 EquipSwtichSet
  654. value: childItem.isOpen ? "1" : "0" //类型:String 必有字段 备注:值 0
  655. };
  656. arr.push(obj);
  657. } else if (btnType === "temp") {
  658. childItem.num = 2;
  659. if (symbol === "up") {
  660. if (childItem.tempSet >= proxyData.airData.maxTempSet) {
  661. return;
  662. }
  663. childItem.tempSet = childItem.tempSet + 0.5;
  664. } else if (symbol === "down") {
  665. if (childItem.tempSet <= proxyData.airData.minTempSet) {
  666. return;
  667. }
  668. childItem.tempSet = childItem.tempSet - 0.5;
  669. }
  670. let obj: any = {
  671. id: childItem.id, //类型:String 必有字段 备注:设备id
  672. code: childItem.tempSetCode, //类型:String 必有字段 备注:编码 EquipSwtichSet
  673. value: childItem.tempSet //类型:String 必有字段 备注:值 0
  674. };
  675. arr.push(obj);
  676. proxyData.childDisabled(childItem, arr);
  677. } else if (btnType === "gear") {
  678. if (symbol === "up") {
  679. if (childItem.isAutoGear) {
  680. return;
  681. }
  682. if (childItem.gear >= 3) {
  683. childItem.isAutoGear = 1;
  684. } else {
  685. childItem.gear++;
  686. childItem.isAutoGear = 0;
  687. }
  688. } else if (symbol === "down") {
  689. if (!childItem.isAutoGear && childItem.gear <= 1) {
  690. return;
  691. }
  692. if (childItem.isAutoGear) {
  693. childItem.isAutoGear = 0;
  694. childItem.gear = 3;
  695. } else {
  696. childItem.gear--;
  697. }
  698. }
  699. let obj: any = {
  700. id: childItem.id, //类型:String 必有字段 备注:设备id
  701. code: childItem.gearCode, //类型:String 必有字段 备注:编码 EquipSwtichSet
  702. value: childItem.isAutoGear ? 4 : childItem.gear //类型:String 必有字段 备注:值 0
  703. };
  704. arr.push(obj);
  705. } else if (btnType === "model") {
  706. if (symbol === "up") {
  707. if (childItem.workMode >= 3) {
  708. return;
  709. }
  710. childItem.workMode++;
  711. } else if (symbol === "down") {
  712. if (childItem.workMode <= 1) {
  713. return;
  714. }
  715. childItem.workMode--;
  716. }
  717. let obj: any = {
  718. id: childItem.id, //类型:String 必有字段 备注:设备id
  719. code: childItem.modeSetCode, //类型:String 必有字段 备注:编码 EquipSwtichSet
  720. value: childItem.workMode //类型:String 必有字段 备注:值 0
  721. };
  722. arr.push(obj);
  723. }
  724. // 空调调节后先不刷新,等2分钟后更新状态
  725. proxyData.updateAirStatus();
  726. // 修改单个设备的状态
  727. if (btnType !== "temp") {
  728. proxyData.setSpaceCondtioners(arr);
  729. }
  730. },
  731. // 改变设备状态
  732. setSpaceCondtioners(data: any) {
  733. setSpaceCondtioners(data)
  734. .then(res => {
  735. // proxyData.setLoadingNumber();
  736. proxyData.loadinngEnd();
  737. })
  738. .catch(() => {
  739. // proxyData.setLoadingNumber();
  740. proxyData.loadinngEnd();
  741. Toast("连接异常,请检查网络!");
  742. });
  743. },
  744. // 改变空调状态
  745. changeZongAir(btnType: any, text: any) {
  746. if (!proxyData.airData.isOpen) return;
  747. let equpObj: any = proxyData.formatAirData(btnType, text);
  748. if (!(equpObj && equpObj.codeKey)) return;
  749. let data: any = [];
  750. proxyData.equipList.map((item: any) => {
  751. let obj: any = {
  752. id: item.id, //类型:String 必有字段 备注:设备id
  753. code: item[equpObj.codeKey], //类型:String 必有字段 备注:编码 EquipSwtichSet
  754. value: equpObj.value //类型:String 必有字段 备注:值 0
  755. };
  756. data.push(obj);
  757. });
  758. console.log("设备数据处理---");
  759. console.log(data);
  760. if (!proxyData.cotrolLoading) {
  761. proxyData.loadingStart();
  762. // 调整设备状态
  763. proxyData.updateAirStatus();
  764. proxyData.setSpaceCondtioners(data);
  765. }
  766. },
  767. // 检查设备是否执行空间服务时间
  768. checkDeviceIsExeSpaceTime(deviceAll: any = []) {
  769. let seviceEquipmentList: any = proxyData.seviceEquipmentList;
  770. let flag: any = false;
  771. // debugger
  772. for (let i = 0; i < seviceEquipmentList.length; i++) {
  773. for (let j = 0; j < deviceAll.length; j++) {
  774. if (
  775. seviceEquipmentList[i].id == deviceAll[j].id &&
  776. seviceEquipmentList[i].isExeSpaceTime
  777. ) {
  778. flag = true;
  779. break;
  780. }
  781. }
  782. if (flag) {
  783. break;
  784. }
  785. }
  786. return flag;
  787. },
  788. // 加班更新按钮的状态
  789. updateSwitchFromWork(deviceItem: any) {
  790. if (deviceItem) {
  791. proxyData.equipList.map((item: any) => {
  792. if (item.id === deviceItem.id) {
  793. item.isOpen = true;
  794. proxyData.airData.isOpen = true;
  795. }
  796. });
  797. } else {
  798. proxyData.airData.isOpen = true;
  799. }
  800. nextTick(() => {
  801. proxyData.barSwiperInit();
  802. });
  803. },
  804. // 刷新空调状态的接口
  805. updateAirStatus() {
  806. clearTimeout(proxyData.airTimer);
  807. proxyData.airTimer = null;
  808. proxyData.loadingNum = 1;
  809. if (!proxyData.switchTimer) {
  810. proxyData.setLoadingNumber();
  811. }
  812. },
  813. // 点击总开关,前端更新子设备的状态
  814. updateChildSatus() {
  815. proxyData.equipList.map((item: any) => {
  816. item.isOpen = proxyData.airData.isOpen;
  817. });
  818. },
  819. // 更新总开关的开关状态
  820. updateParentSatus() {
  821. let flag: any = false;
  822. proxyData.equipList.map((item: any) => {
  823. if (item.isOpen) {
  824. flag = true;
  825. }
  826. });
  827. proxyData.airData.isOpen = flag;
  828. },
  829. // 总控制改变空调状态
  830. airChange() {
  831. // 先不更新状态等确认框弹出后再更新状
  832. // 操作空调
  833. const domAirOpen = !proxyData.airData.isOpen;
  834. let isExeSpaceTime: Boolean = proxyData.checkDeviceIsExeSpaceTime(
  835. proxyData.equipList
  836. );
  837. if (proxyData.forceOverTimeFlag && domAirOpen && isExeSpaceTime) {
  838. //需要强制加班
  839. contx.emit("triggerWork", 2);
  840. return;
  841. }
  842. proxyData.airData.isOpen = !proxyData.airData.isOpen;
  843. proxyData.loadingAir = true;
  844. // 操作空调后,先关闭定时刷新接口,等固定时间再更新空调状态
  845. proxyData.updateAirStatus();
  846. if (proxyData.airData.isOpen) {
  847. nextTick(() => {
  848. proxyData.barSwiperInit();
  849. });
  850. }
  851. let data: any = [];
  852. proxyData.equipList.map((item: any) => {
  853. let obj: any = {
  854. id: item.id, //类型:String 必有字段 备注:设备id
  855. code: item.switchCode, //类型:String 必有字段 备注:编码 EquipSwtichSet
  856. value: proxyData.airData.isOpen ? "1" : "0" //类型:String 必有字段 备注:值 0
  857. };
  858. data.push(obj);
  859. });
  860. // 设备状态处理
  861. proxyData.setSpaceCondtioners(data);
  862. },
  863. // 设置子设备的状态
  864. formateSetChildStatus() {
  865. proxyData.equipList.map((item: any) => {
  866. item.isOpen = item.runStatus === 1 ? true : false;
  867. item.boundPoint = item.boundPoint || {};
  868. });
  869. },
  870. // 初始化滚动
  871. async barSwiperInit() {
  872. if (proxyData.airData.isOpen && !proxyData.showChild) {
  873. proxyData.endBoxSwiper();
  874. // debugger
  875. proxyData.setBarNowPerstion();
  876. }
  877. },
  878. // 设置子设备的可调范围
  879. setChildSelectList() {
  880. proxyData.equipList.map((item: any) => {
  881. let tempArr: any = [];
  882. for (
  883. let i = proxyData.airData.minTempSet;
  884. i <= proxyData.airData.maxTempSet;
  885. i = i + 0.5
  886. ) {
  887. tempArr.push(i);
  888. }
  889. item.tempArr = tempArr;
  890. let index: any = item.tempArr.findIndex((ele: any) => {
  891. return ele == item.tempSet;
  892. });
  893. item.sel = index == -1 ? 0 : index;
  894. let modelArr: any = ["制冷", "制热", "通风"];
  895. item.modelArr = modelArr;
  896. if (item.workMode > 3) {
  897. item.workMode = 1;
  898. }
  899. let mIndex: any = item.workMode ? item.workMode - 1 : 2;
  900. item.mIndex = mIndex;
  901. let gearArr: any = [0, 1, 2, 3, "AUTO"];
  902. item.gearArr = gearArr;
  903. let gIndex: any = item.gearArr.findIndex((ele: any) => {
  904. if (item.isAutoGear == 1) {
  905. return ele == "AUTO";
  906. } else {
  907. return ele == item.gear;
  908. }
  909. });
  910. item.gIndex = gIndex == -1 ? 0 : gIndex;
  911. });
  912. proxyData.setValueHeight();
  913. },
  914. setValueHeight() {
  915. if (!proxyData.valueHeight) {
  916. proxyData.valueDom = proxyData.valueDom
  917. ? proxyData.valueDom
  918. : document.querySelectorAll(".value")[0];
  919. proxyData.valueHeight = proxyData.valueDom
  920. ? proxyData.valueDom.offsetHeight
  921. : 0;
  922. }
  923. console.log("proxyData.valueHeight==", proxyData.valueHeight);
  924. },
  925. // 改变子设备选中的位置
  926. updateChildPerstion() {
  927. proxyData.equipList.map((item: any) => {
  928. let index: any = item.tempArr.findIndex((ele: any) => {
  929. return ele == item.tempSet;
  930. });
  931. item.sel = index == -1 ? 0 : index;
  932. let mIndex: any = item.workMode ? item.workMode - 1 : 2;
  933. item.mIndex = mIndex;
  934. let gIndex: any = item.gearArr.findIndex((ele: any) => {
  935. if (item.isAutoGear == 1) {
  936. return ele == "AUTO";
  937. } else {
  938. return ele == item.gear;
  939. }
  940. });
  941. item.gIndex = gIndex == -1 ? 0 : gIndex;
  942. });
  943. },
  944. // 空调信息airTemp的修改
  945. getAirInfo(isAddTimer: any = 0) {
  946. const paramObj = {
  947. spaceId: proxyData.spaceId
  948. // spaceId: props.spaceId,//'Sp110108025564f438d7fef64eea8202a6462f1bbcce' 空间id
  949. };
  950. //wx.showLoading();
  951. let str: any = setQueryConfig(paramObj);
  952. querySpaceConditioners(str)
  953. .then(res => {
  954. let data: any = res.data || {};
  955. proxyData.firstLoadingAir = false;
  956. proxyData.loadingAir = false;
  957. proxyData.airTemp = data.tempSet;
  958. proxyData.airData.maxTempSet = data.maxTempSet;
  959. proxyData.airData.minTempSet = data.minTempSet;
  960. proxyData.airData.isOpen = data.runStatus ? true : false;
  961. proxyData.airData.runStatus = data.runStatus;
  962. proxyData.airData.isAutoGear = data.isAutoGear;
  963. proxyData.airData.gear = data.gear || 0;
  964. proxyData.airData.workMode = data.workMode;
  965. proxyData.airData.boundPoint = data.boundPoint || {};
  966. proxyData.equipList = data.equipList;
  967. // proxyData.equipList.push(data.equipList[0]);
  968. // 设置子设备的状态
  969. // proxyData.setChildSelectList();
  970. proxyData.formateSetChildStatus();
  971. nextTick(() => {
  972. proxyData.barSwiperInit();
  973. });
  974. if (isAddTimer == 0) {
  975. proxyData.getAirInfoToTimer();
  976. }
  977. })
  978. .catch(() => {
  979. if (isAddTimer == 0) {
  980. proxyData.getAirInfoToTimer();
  981. }
  982. });
  983. }
  984. });
  985. watch(
  986. [() => props, () => props.spaceId],
  987. (newProps: any, oldProps: any) => {
  988. if (newProps[0]) {
  989. proxyData.temperature = newProps[0].temperature;
  990. proxyData.userIsControl = newProps[0].userIsControl;
  991. proxyData.forceOverTimeFlag = newProps[0].forceOverTimeFlag;
  992. proxyData.seviceEquipmentList = newProps[0].seviceEquipmentList;
  993. }
  994. if (newProps[1] && newProps[1] != oldProps[1]) {
  995. proxyData.spaceId = newProps[1];
  996. proxyData.swiperIinit = false;
  997. proxyData.distroyFlag = false;
  998. proxyData.getAirInfoToTimer(0);
  999. }
  1000. },
  1001. {
  1002. deep: true,
  1003. immediate: true
  1004. }
  1005. );
  1006. onBeforeUnmount(() => {
  1007. if (proxyData.airTimer) {
  1008. clearTimeout(proxyData.airTimer);
  1009. proxyData.airTimer = null;
  1010. proxyData.distroyFlag = true;
  1011. console.log("定时器销毁了--");
  1012. }
  1013. });
  1014. onMounted(() => {
  1015. proxyData.spaceId = props.spaceId;
  1016. proxyData.distroyFlag = false;
  1017. proxyData.getAirInfoToTimer(0);
  1018. // 获取空调信息
  1019. });
  1020. return {
  1021. ...toRefs(proxyData)
  1022. };
  1023. }
  1024. });
  1025. </script>
  1026. <style lang="scss" scoped>
  1027. .air {
  1028. position: relative;
  1029. width: 100%;
  1030. background: #ffffff;
  1031. box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.07), 0px 4px 10px rgba(0, 0, 0, 0.05);
  1032. border-radius: 25px;
  1033. margin: 15px 0px;
  1034. .loading-box {
  1035. position: absolute;
  1036. left: 50%;
  1037. top: 50%;
  1038. transform: translate(-50%, -50%);
  1039. width: 100%;
  1040. height: 100%;
  1041. background: rgba(#000000, 0.3);
  1042. box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.07),
  1043. 0px 4px 10px rgba(0, 0, 0, 0.05);
  1044. text-align: center;
  1045. z-index: 999;
  1046. // line-height: 50px;
  1047. }
  1048. .com-top {
  1049. padding: 0 20px;
  1050. padding-bottom: 10px;
  1051. padding-top: 18px;
  1052. display: flex;
  1053. justify-content: space-between;
  1054. .com-desc {
  1055. position: relative;
  1056. font-family: "PingFang SC";
  1057. font-size: 16px;
  1058. font-weight: 600;
  1059. line-height: 22px;
  1060. letter-spacing: 0em;
  1061. padding-top: 8px;
  1062. text-align: left;
  1063. color: rgba(77, 82, 98, 1);
  1064. .com-top-title {
  1065. font-family: "PingFang SC";
  1066. font-size: 16px;
  1067. font-weight: 600;
  1068. line-height: 22px;
  1069. padding-bottom: 4px;
  1070. letter-spacing: 0;
  1071. text-align: left;
  1072. color: rgba(77, 82, 98, 1);
  1073. }
  1074. .com-top-temperature {
  1075. position: relative;
  1076. display: inline-block;
  1077. font-family: "Persagy";
  1078. font-size: 32px;
  1079. font-weight: 400;
  1080. line-height: 39px;
  1081. letter-spacing: 0px;
  1082. text-align: right;
  1083. color: rgba(27, 33, 41, 1);
  1084. sup {
  1085. position: absolute;
  1086. font-family: "Persagy";
  1087. top: 3px;
  1088. // right: -12px;
  1089. padding-left: 4px;
  1090. font-size: 12px;
  1091. font-weight: 400;
  1092. line-height: 15px;
  1093. letter-spacing: 0em;
  1094. text-align: left;
  1095. color: rgba(196, 196, 196, 1);
  1096. }
  1097. }
  1098. .show-all {
  1099. position: absolute;
  1100. width: 110px;
  1101. bottom: -8px;
  1102. font-family: PingFang SC;
  1103. font-size: 14px;
  1104. line-height: 16px;
  1105. color: #c4c4c4;
  1106. margin: 0px 5px;
  1107. span {
  1108. font-size: 12px;
  1109. }
  1110. .light-icon {
  1111. font-size: 12px;
  1112. padding-right: 10px;
  1113. }
  1114. }
  1115. }
  1116. .com-right {
  1117. position: relative;
  1118. width: 130px;
  1119. text-align: center;
  1120. img {
  1121. width: 130px;
  1122. height: 64px;
  1123. }
  1124. }
  1125. }
  1126. .top-switch {
  1127. display: flex;
  1128. justify-content: space-between;
  1129. padding: 8px 20px;
  1130. // margin-bottom: 16px;
  1131. padding-bottom: 16px;
  1132. .top-nav {
  1133. height: 28px;
  1134. // line-height: 28px;
  1135. border-radius: 21px;
  1136. background: #f1f4f6;
  1137. span {
  1138. box-sizing: border-box;
  1139. display: inline-block;
  1140. font-family: "PingFang SC";
  1141. font-style: normal;
  1142. font-weight: 400;
  1143. font-size: 14px;
  1144. // padding: 5px 8px;
  1145. padding: 0px 8px;
  1146. height: 28px;
  1147. line-height: 28px;
  1148. color: #424c59;
  1149. }
  1150. .nav-active {
  1151. background: #fff;
  1152. border: 1px solid #e1e5eb;
  1153. border-radius: 21px;
  1154. }
  1155. }
  1156. // .switch-btn {
  1157. // margin-top: 0;
  1158. // }
  1159. }
  1160. .line {
  1161. width: 100%;
  1162. height: 0px;
  1163. border-top: 1px solid rgba(232, 236, 240, 1);
  1164. }
  1165. .active-color {
  1166. background: $elActiveColor !important;
  1167. span {
  1168. color: #fff !important;
  1169. }
  1170. }
  1171. .air-child {
  1172. width: 100%;
  1173. padding-left: 12px;
  1174. padding-right: 12px;
  1175. padding-top: 16px;
  1176. padding-bottom: 4px;
  1177. .child-control-box {
  1178. display: inline-block;
  1179. width: 49%;
  1180. margin-right: 2%;
  1181. margin-bottom: 12px;
  1182. padding: 14px 16px;
  1183. justify-content: space-between;
  1184. border-radius: 16px;
  1185. background: rgba(247, 249, 250, 1);
  1186. &:nth-child(2n) {
  1187. margin-right: 0;
  1188. }
  1189. .open-title {
  1190. width: 100%;
  1191. font-size: 14px;
  1192. display: flex;
  1193. justify-content: space-between;
  1194. margin-bottom: 26px;
  1195. .open-temp-box {
  1196. position: relative;
  1197. display: inline-block;
  1198. // width: calc(100% - 50px);
  1199. overflow: hidden;
  1200. span {
  1201. text-overflow: ellipsis;
  1202. white-space: nowrap;
  1203. font-family: "Persagy";
  1204. font-size: 22px;
  1205. font-weight: 400;
  1206. line-height: 22px;
  1207. letter-spacing: 0;
  1208. }
  1209. sup {
  1210. position: absolute;
  1211. top: -3px;
  1212. font-family: Mulish;
  1213. font-size: 12px;
  1214. font-weight: 400;
  1215. text-align: left;
  1216. color: rgba(196, 196, 196, 1);
  1217. }
  1218. }
  1219. .text-box {
  1220. margin-left: -2px;
  1221. padding-top: 4px;
  1222. img {
  1223. display: inline-block;
  1224. vertical-align: middle;
  1225. width: 16px;
  1226. height: 16px;
  1227. margin-right: 2px;
  1228. }
  1229. span {
  1230. display: inline-block;
  1231. vertical-align: middle;
  1232. font-family: "PingFang SC";
  1233. font-size: 12px;
  1234. font-weight: 400;
  1235. color: rgba(196, 201, 207, 1);
  1236. }
  1237. }
  1238. }
  1239. .control-bottom {
  1240. display: flex;
  1241. justify-content: space-between;
  1242. .control-title {
  1243. font-family: "PingFang SC";
  1244. font-size: 16px;
  1245. font-weight: 600;
  1246. line-height: 22px;
  1247. padding-right: 8px;
  1248. overflow: hidden;
  1249. text-overflow: ellipsis;
  1250. white-space: nowrap;
  1251. color: rgba(77, 82, 98, 1);
  1252. }
  1253. img {
  1254. width: 20px;
  1255. height: 20px;
  1256. opacity: 1;
  1257. cursor: pointer;
  1258. }
  1259. .img-disabled {
  1260. opacity: 0.3;
  1261. cursor: no-drop;
  1262. }
  1263. }
  1264. }
  1265. }
  1266. .main-temp {
  1267. padding-bottom: 16px;
  1268. .com-control {
  1269. padding: 20px;
  1270. padding-top: 28px;
  1271. padding-bottom: 0;
  1272. .control-box {
  1273. display: flex;
  1274. justify-content: space-between;
  1275. }
  1276. .volume-box {
  1277. .number {
  1278. span {
  1279. font-family: "Persagy";
  1280. font-size: 12px;
  1281. font-weight: 400;
  1282. padding-right: 8px;
  1283. line-height: 24px;
  1284. letter-spacing: 0px;
  1285. color: rgba(196, 201, 207, 1);
  1286. }
  1287. .number-active {
  1288. font-family: "Persagy";
  1289. font-size: 18px;
  1290. font-weight: 400;
  1291. line-height: 24px;
  1292. letter-spacing: 0px;
  1293. color: rgba(27, 33, 41, 1);
  1294. }
  1295. }
  1296. .model {
  1297. font-family: "PingFang SC";
  1298. font-size: 16px;
  1299. font-weight: 400;
  1300. line-height: 24px;
  1301. letter-spacing: 0px;
  1302. }
  1303. .text {
  1304. font-family: "PingFang SC";
  1305. display: block;
  1306. font-size: 13px;
  1307. font-weight: 400;
  1308. padding-top: 3px;
  1309. margin-left: -3px;
  1310. transform: scale(0.9);
  1311. text-align: left;
  1312. // line-height: 17px;
  1313. letter-spacing: 0px;
  1314. color: rgba(196, 201, 207, 1);
  1315. }
  1316. }
  1317. .volume-icon {
  1318. .icon-item {
  1319. position: relative;
  1320. display: inline-block;
  1321. width: 42px;
  1322. height: 42px;
  1323. background: rgba(196, 196, 196, 0.2);
  1324. border-radius: 50%;
  1325. img {
  1326. width: 20px;
  1327. height: 20px;
  1328. position: absolute;
  1329. left: 50%;
  1330. top: 50%;
  1331. transform: translate(-50%, -50%);
  1332. }
  1333. &:nth-child(2) {
  1334. margin-left: 10px;
  1335. margin-right: 10px;
  1336. }
  1337. span {
  1338. font-size: 12px;
  1339. color: #000000;
  1340. position: absolute;
  1341. left: 50%;
  1342. top: 50%;
  1343. transform: translate(-50%, -50%) scale(0.8);
  1344. }
  1345. }
  1346. }
  1347. .temp-slider {
  1348. position: relative;
  1349. display: flex;
  1350. height: 22px;
  1351. border-radius: 16px;
  1352. background: linear-gradient(
  1353. 270deg,
  1354. #ffbab6 0%,
  1355. #ffe7d1 29.05%,
  1356. #f1efff 62%,
  1357. #c8d6ff 100%
  1358. );
  1359. .slider-bar {
  1360. position: absolute;
  1361. left: 0;
  1362. bottom: -5px;
  1363. width: 32px;
  1364. z-index: 333;
  1365. text-align: center;
  1366. color: rgba(98, 108, 120, 1);
  1367. .bar-temp {
  1368. display: inline-block;
  1369. font-family: "Persagy";
  1370. font-size: 12px;
  1371. font-weight: 400;
  1372. line-height: 14px;
  1373. letter-spacing: 0px;
  1374. padding-bottom: 4px;
  1375. text-align: left;
  1376. color: rgba(98, 108, 120, 1);
  1377. }
  1378. .bar-circle {
  1379. width: 30px;
  1380. height: 30px;
  1381. background: rgba(246, 249, 254, 1);
  1382. border-radius: 50%;
  1383. box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.1);
  1384. }
  1385. }
  1386. .temp-left,
  1387. .temp-right {
  1388. position: absolute;
  1389. display: inline-block;
  1390. font-family: "Persagy";
  1391. top: 50%;
  1392. transform: translateY(-50%);
  1393. font-size: 12px;
  1394. padding-top: 1px;
  1395. font-weight: 400;
  1396. letter-spacing: 0px;
  1397. color: rgba(98, 108, 120, 1);
  1398. }
  1399. .temp-left {
  1400. left: 0px;
  1401. padding-left: 8px;
  1402. }
  1403. .temp-right {
  1404. right: 0px;
  1405. padding-right: 8px;
  1406. text-align: left;
  1407. }
  1408. }
  1409. .control-text {
  1410. font-style: normal;
  1411. font-weight: 600;
  1412. font-size: 11px;
  1413. line-height: 15px;
  1414. color: #c4c4c4;
  1415. padding: 10px 0 0 10px;
  1416. }
  1417. }
  1418. .com-control-padding {
  1419. padding-top: 23px;
  1420. margin-top: 8px;
  1421. }
  1422. }
  1423. }
  1424. </style>