index.js 36 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070
  1. import $ from "./../../utils/Tool";
  2. import router from "./../../utils/router";
  3. import { getSetting, getLocation } from "./../../utils/auth";
  4. const AUTH = require("../../utils/auth");
  5. import icons from "../../utils/icon";
  6. import {
  7. getPropertyData,
  8. submitAdjust,
  9. getCurrentSeason,
  10. queryUseranswer,
  11. } from "../../requests/api";
  12. import Toast from "../../vant-weapp/dist/toast/toast";
  13. import {
  14. userCheck,
  15. powerCheck,
  16. getEquipmentAction,
  17. getfeedBack,
  18. getSpacedetail,
  19. openSpace,
  20. workLeave,
  21. contactTenant,
  22. } from "../../requests/api";
  23. let refreshTimer = null;
  24. Page({
  25. /**
  26. * 页面的初始数据
  27. */
  28. data: {
  29. surveyShow: false,
  30. lottieShow: true,
  31. spaceDetail: null,
  32. effectTime: -1,
  33. statusList: icons.statusList,
  34. spacestatusList: icons.spacestatusList,
  35. spaceStatus: "",
  36. spaceStatusId: null,
  37. tempType: [
  38. {
  39. id: 1,
  40. value: "有点冷",
  41. checked: false,
  42. imgSrc: "../../static/images/cold.png",
  43. },
  44. {
  45. id: 3,
  46. value: "有点热",
  47. checked: false,
  48. imgSrc: "../../static/images/hot.png",
  49. },
  50. {
  51. id: 2,
  52. value: "太冷了",
  53. checked: false,
  54. imgSrc: "../../static/images/severityCold.png",
  55. },
  56. {
  57. id: 4,
  58. value: "太热了",
  59. checked: false,
  60. imgSrc: "../../static/images/severityHot.png",
  61. },
  62. ],
  63. windType: [
  64. {
  65. id: 5,
  66. value: "风太大",
  67. checked: false,
  68. imgSrc: "../../static/images/severityWind.png",
  69. },
  70. ],
  71. windTypeValue: -1,
  72. tempTypeValue: -1,
  73. currentIndex: -1,
  74. StandardMode: true, //模式选择
  75. envNamelist: $.store.get("envNamelist"),
  76. imgbaseUrl: $.store.get("imgbaseUrl"),
  77. headerShow: false,
  78. pageHight: 0,
  79. guideInit: false,
  80. guideStep: 1,
  81. longitude: null,
  82. latitude: null,
  83. feedBack: false, //控制反馈弹窗
  84. targetTemp: null,
  85. trunAction: false,
  86. equipmentStatustext: "",
  87. equipmentStatus: null,
  88. willAvg: null,
  89. tragetChart: [],
  90. tragetChartcopy: [],
  91. customPlan: [],
  92. customPlancopy: null,
  93. planTemp: null,
  94. trunupAction: false, //开机提示框
  95. secondIcon: 0,
  96. secondSpaceStatus: null,
  97. chartIndex: null,
  98. targetIndex: 0,
  99. singleOffice: false,
  100. nextOpenTime: "",
  101. bgSeasonType: null,
  102. havePower: {
  103. result: "fail",
  104. message: "",
  105. },
  106. picInitUrl: $.store.get("picInitUrl"),
  107. },
  108. clearTimer() {
  109. clearInterval(refreshTimer);
  110. refreshTimer = null;
  111. },
  112. onHide() {
  113. this.clearTimer();
  114. },
  115. onUnload() {
  116. this.clearTimer();
  117. },
  118. // 关闭问卷
  119. surveyClose(value) {
  120. this.setData({ surveyShow: false, lottieShow: true });
  121. if (value.detail.good) {
  122. wx.showToast({
  123. title: "感谢您的反馈",
  124. image: "../../static/images/bixin.png",
  125. duration: 2000,
  126. });
  127. }
  128. },
  129. // 检查是否需要填写问卷
  130. async userAnswer() {
  131. let day = new Date();
  132. let year = day.getFullYear();
  133. let month = day.getMonth() + 1;
  134. month = month < 10 ? "0" + month : month;
  135. let today = day.getDate();
  136. today = today < 10 ? "0" + today : today;
  137. let seasonType = "";
  138. const dataSeason = {
  139. projectId: $.store.get("projectId") || $.storage.get("projectId"),
  140. date: `${year}${month}${today}`,
  141. };
  142. await getCurrentSeason(dataSeason).then((res) => {
  143. if (res.result == "success") {
  144. seasonType = res.data;
  145. }
  146. });
  147. let projectId = $.store.get("projectId");
  148. let tenantId = $.store.get("tenantId");
  149. let data = {
  150. criteria: {
  151. userId: $.store.get("userId"),
  152. projectId: projectId,
  153. tenantId: tenantId,
  154. startTime: {
  155. $ge: `${year}${month}${today}`,
  156. },
  157. endTime: {
  158. $le: `${year}${month}${today}`,
  159. },
  160. seasonType: seasonType,
  161. },
  162. };
  163. queryUseranswer(data).then((res) => {
  164. !res.count && this.setData({ surveyShow: true, lottieShow: false });
  165. });
  166. },
  167. goBack() {
  168. router.pop();
  169. },
  170. changeMode() {
  171. if (this.data.spaceDetail.isClose.toString() !== "true") {
  172. this.setData({ StandardMode: !this.data.StandardMode }, () => {
  173. if (!this.data.StandardMode) {
  174. this.setData({ effectTime: -1 });
  175. this.getChartDate();
  176. }
  177. });
  178. }
  179. },
  180. toDetail(e) {
  181. if (Object.keys(e.currentTarget.dataset).length) {
  182. router.push("detail", e.currentTarget.dataset);
  183. } else {
  184. router.push("detail", {
  185. name: "温度",
  186. localname: "温度",
  187. param: "temperature",
  188. funcid: "Tdb",
  189. spaceid: this.data.spaceDetail.id,
  190. projectid: this.data.spaceDetail.projectId,
  191. });
  192. }
  193. },
  194. checkLevel(value, name) {
  195. let objList = {
  196. humidity: {
  197. range: [30, 70],
  198. text: ["干燥", "适宜", "湿润"],
  199. },
  200. co2: {
  201. range: [800, 1500],
  202. text: ["适宜", "偏高", "超标"],
  203. },
  204. pm25: {
  205. range: [35, 75],
  206. text: ["优", "良", "差"],
  207. },
  208. hcho: {
  209. range: [0.08, 0.1],
  210. text: ["适宜", "偏高", "超标"],
  211. },
  212. };
  213. value = Number(value);
  214. let sortArr = [value, ...objList[name].range].sort((a, b) => {
  215. return a - b;
  216. });
  217. let level = sortArr.findIndex((item) => item === value);
  218. let levelTxt = objList[name].text[level];
  219. return { level, levelTxt };
  220. },
  221. // 检查是否过引导
  222. checkGuide(value) {
  223. if (this.data.spaceDetail.isClose.toString() == "true") {
  224. return;
  225. }
  226. $.storage.get("guideInit") &&
  227. !$.storage.get("nextRemind") &&
  228. value &&
  229. this.userAnswer();
  230. !$.storage.get("guideInit") && this.getPageheight();
  231. this.setData({ guideInit: !$.storage.get("guideInit") });
  232. },
  233. // 反馈数据
  234. changeType(e) {
  235. this.setData({
  236. notice: "", // 默认无值
  237. willAvg: "--",
  238. });
  239. if (this.data.bgSeasonType == "Transition") {
  240. wx.showModal({
  241. title: "现在是过渡季不可调节",
  242. showCancel: false,
  243. confirmText: "我知道了", //默认是“确定”
  244. // confirmColor: 'skyblue',//确定文字的颜色
  245. success: function (res) {},
  246. fail: function (res) {}, //接口调用失败的回调函数
  247. complete: function (res) {}, //接口调用结束的回调函数(调用成功、失败都会执行)
  248. });
  249. return;
  250. }
  251. if (this.data.havePower.result !== "success") {
  252. Toast.fail(this.data.havePower.message);
  253. return;
  254. }
  255. var currentIndex = e.currentTarget.dataset.index;
  256. if (e.currentTarget.dataset.type === "temp") {
  257. this.setData({
  258. tempTypeValue: currentIndex,
  259. currentIndex: currentIndex,
  260. checkType: "temp",
  261. feedBack: true,
  262. });
  263. } else {
  264. this.setData({
  265. windTypeValue: currentIndex,
  266. currentIndex: currentIndex,
  267. checkType: "wind",
  268. feedBack: true,
  269. });
  270. }
  271. let data = {
  272. projectId: this.data.spaceDetail.projectId, //项目id
  273. objectId: this.data.spaceDetail.id, //空间id
  274. valueType: 1, //固定为1
  275. itemId: currentIndex,
  276. model: this.data.StandardMode ? 1 : 2,
  277. userId: $.store.get("userId"),
  278. };
  279. getEquipmentAction(data).then((res) => {
  280. this.setData({
  281. equipmentStatus: res.equipmentStatus,
  282. });
  283. let textMsg = "";
  284. let textMsgarr = [];
  285. this.data.equipmentStatus &&
  286. this.data.equipmentStatus.forEach((item) => {
  287. if (item.actions) {
  288. item.actions.forEach((items) => {
  289. let textMsgobj = {};
  290. textMsgobj.name = item.localName;
  291. textMsgobj.actions = items;
  292. textMsgarr.push(textMsgobj);
  293. textMsg =
  294. textMsg + item.localName + "--" + items + " ";
  295. });
  296. }
  297. });
  298. this.setData({
  299. equipmentStatustext: textMsgarr,
  300. });
  301. });
  302. getfeedBack(data).then((res) => {
  303. let notice = res.notice ? res.notice.split("。") : [];
  304. this.setData({
  305. spaceStatus: res.spaceStatus || res.message,
  306. spaceStatusId: res.icon - 1,
  307. notice: notice,
  308. willAvg: res.avg || "--",
  309. });
  310. this.buildContact();
  311. });
  312. },
  313. // 建立租户关联
  314. async buildContact() {
  315. // let tenatList=$.store.get("tenants");
  316. let currentTenantId = $.storage.get("tenantId");
  317. // let flag=false;
  318. // if(tenatList&&tenatList.length){
  319. // flag = tenatList.some(item=>{
  320. // return item.tenantId === currentTenantId;
  321. // })
  322. // }
  323. // if(flag){
  324. // return;
  325. // }
  326. if (currentTenantId !== this.data.spaceDetail.tenantId) {
  327. // 通过扫码改变租户
  328. $.store.set("projectId", this.data.spaceDetail.projectId);
  329. $.store.set("tenantId", this.data.spaceDetail.tenantId);
  330. $.store.set("changeTenantId", true);
  331. $.storage.set("projectId", this.data.spaceDetail.projectId);
  332. $.storage.set("tenantId", this.data.spaceDetail.tenantId);
  333. }
  334. this.data.spaceDetail.top =
  335. this.data.spaceDetail.top + "" === "undefined"
  336. ? false
  337. : this.data.spaceDetail.top;
  338. let top = this.data.spaceDetail.top.toString() == "false" ? 0 : 1;
  339. const data = {
  340. userId: $.store.get("userId"), //用户id
  341. projectId: this.data.spaceDetail.projectId, //项目id
  342. spaceId: this.data.spaceDetail.id, //空间id
  343. openId: $.store.get("openId"),
  344. flag: 1,
  345. top: top,
  346. };
  347. await contactTenant(data).then((res) => {
  348. console.log("成功");
  349. });
  350. },
  351. // 下班节能
  352. turnDown() {
  353. if (this.data.havePower.result !== "success") {
  354. Toast.fail(this.data.havePower.message);
  355. return;
  356. }
  357. let data = {
  358. model: 1,
  359. projectId: this.data.spaceDetail.projectId, //项目id
  360. objectId: [this.data.spaceDetail.id], //空间id
  361. userId: $.store.get("userId"),
  362. nextOpenTime: this.data.spaceDetail.nextOpenTime || "",
  363. };
  364. workLeave(data).then((res) => {
  365. // TODO 关
  366. this.setData({ trunAction: true, failmessage: res.message || "" });
  367. this.buildContact();
  368. });
  369. },
  370. // 重新开启
  371. turnUp() {
  372. if (this.data.bgSeasonType == "Transition") {
  373. wx.showModal({
  374. title: "现在是过渡季不可调节",
  375. showCancel: false,
  376. confirmText: "我知道了", //默认是“确定”
  377. // confirmColor: 'skyblue',//确定文字的颜色
  378. success: function (res) {},
  379. fail: function (res) {}, //接口调用失败的回调函数
  380. complete: function (res) {}, //接口调用结束的回调函数(调用成功、失败都会执行)
  381. });
  382. return;
  383. }
  384. if (this.data.havePower.result !== "success") {
  385. Toast.fail(this.data.havePower.message);
  386. return;
  387. }
  388. let data = {
  389. projectId: this.data.spaceDetail.projectId, //项目id
  390. objectId: this.data.spaceDetail.id, //空间id
  391. model: 1,
  392. userId: $.store.get("userId"),
  393. };
  394. openSpace(data).then((res) => {
  395. // TODO kai
  396. // if (res.message) {
  397. // this.setData({failmessage:res.message, trunupAction: true})
  398. // }else{
  399. this.setData({
  400. secondSpaceStatus: res.spaceStatus,
  401. secondNotice: res.notice,
  402. secondIcon: res.icon,
  403. failmessage: res.message || "",
  404. trunupAction: true,
  405. });
  406. // }
  407. this.buildContact();
  408. });
  409. },
  410. commitClose() {
  411. this.setData({ trunupAction: false }, () => {
  412. this.isfeeded(true);
  413. this.getDetail();
  414. });
  415. },
  416. knowClick() {
  417. this.setData(
  418. { feedBack: false, tempTypeValue: -1, windTypeValue: -1 },
  419. () => {
  420. this.isfeeded();
  421. }
  422. );
  423. },
  424. knowCloseClick() {
  425. this.setData({ feedBack: false, trunAction: false }, () => {
  426. this.getDetail();
  427. this.isfeeded(true);
  428. });
  429. },
  430. // 获取容器高度
  431. getPageheight: function () {
  432. let that = this;
  433. wx.createSelectorQuery()
  434. .select("#j_page")
  435. .boundingClientRect(function (rect) {
  436. that.setData({ pageHight: rect.height });
  437. })
  438. .exec();
  439. },
  440. //使页面滚动到容器底部
  441. pageScrollToBottom: function () {
  442. wx.pageScrollTo({
  443. scrollTop: this.data.pageHight,
  444. });
  445. },
  446. // 步骤引导函数
  447. nextStep(e) {
  448. if (this.data.guideStep == 2) {
  449. $.storage.set("guideInit", true);
  450. this.setData({ guideInit: false });
  451. }
  452. this.setData({ guideStep: 2 });
  453. this.pageScrollToBottom();
  454. },
  455. async isGetSetting(value) {
  456. let { authSetting } = await getSetting();
  457. if (authSetting["scope.userLocation"]) {
  458. await this.getUserLocation();
  459. } else {
  460. wx.showModal({
  461. title: "是否授权当前位置",
  462. content: "需要获取您的地理位置,请确认授权",
  463. confirmColor: "#f16765",
  464. success: (res) => {
  465. if (res.confirm) {
  466. wx.openSetting({
  467. success: async (data) => {
  468. await this.getUserLocation();
  469. value && this.checkPower();
  470. },
  471. });
  472. } else {
  473. this.setData({
  474. havePower: {
  475. result: "fail",
  476. message: "未定位到您的位置",
  477. },
  478. });
  479. }
  480. },
  481. });
  482. }
  483. },
  484. // 获取位置信息
  485. async getUserLocation(cb) {
  486. var that = this;
  487. let { latitude, longitude } = await getLocation();
  488. this.setData({ latitude, longitude });
  489. },
  490. // 是否有操作权限
  491. async checkPower() {
  492. await this.isGetSetting("cb");
  493. const data = {
  494. criteria: {
  495. projectId: this.data.spaceDetail.projectId,
  496. spaceId: this.data.spaceDetail.id,
  497. userId: $.store.get("userId"),
  498. tenantId: this.data.spaceDetail.tenantId,
  499. longitude: this.data.longitude,
  500. latitude: this.data.latitude,
  501. },
  502. };
  503. await powerCheck(data).then((res) => {
  504. this.setData({
  505. havePower: res,
  506. });
  507. });
  508. },
  509. // 获取实时曲线
  510. async getChartDate() {
  511. wx.showLoading({
  512. title: "加载中",
  513. });
  514. let data = {
  515. projectId: this.data.spaceDetail.projectId,
  516. spaceId: this.data.spaceDetail.id,
  517. funcid: "Tdb",
  518. };
  519. let res = await getPropertyData(data);
  520. if (!res) {
  521. throw "网络错误";
  522. }
  523. let { propertyData, dayTarget } = res;
  524. // 获取期望温度
  525. this.getHopeTemp(dayTarget).then(() => {
  526. this.initDaytarget(dayTarget);
  527. this.initChartdate(propertyData, dayTarget);
  528. });
  529. wx.hideLoading();
  530. },
  531. initChartdate(propertyData, dayTarget) {
  532. if (
  533. !propertyData &&
  534. !propertyData.length &&
  535. dayTarget &&
  536. !dayTarget.length
  537. ) {
  538. return;
  539. }
  540. // 目标 { time: "1951",release:0, sales: 38,标准区间: [ 25, 45 ] },
  541. let baseArr = (propertyData && propertyData.slice(1)) || [];
  542. let tragetChart = [];
  543. baseArr.forEach((item) => {
  544. item[1] =
  545. item[1] == "-9999" ? null : Number(Number(item[1]).toFixed(1));
  546. });
  547. if (baseArr.length === dayTarget.length) {
  548. dayTarget.forEach((item, index) => {
  549. let time = "";
  550. item.time &&
  551. (time =
  552. item.time.slice(0, 2) + ":" + item.time.slice(2, 4));
  553. item["temperatureMin"] &&
  554. (item["temperatureMin"] = Number(
  555. item["temperatureMin"].toFixed(1)
  556. ));
  557. item["temperatureMax"] &&
  558. (item["temperatureMax"] = Number(
  559. item["temperatureMax"].toFixed(1)
  560. ));
  561. let initObj = {
  562. time: time,
  563. release: index,
  564. sales: baseArr[index][1],
  565. 标准区间: [item["temperatureMin"], item["temperatureMax"]],
  566. };
  567. tragetChart.push(initObj);
  568. });
  569. }
  570. this.setData({ tragetChart, tragetChartcopy: tragetChart });
  571. },
  572. initDaytarget(value) {
  573. if (!value || !value.length) {
  574. return;
  575. }
  576. let customPlan = [];
  577. // 格式化单位 15px为1度 28 18
  578. let lenpx = 25;
  579. value.forEach((item, index) => {
  580. if (item.time.slice(2, 6) == "0000") {
  581. let obj = {};
  582. obj.time = item.date + item.time;
  583. obj.id = index;
  584. obj.name = item.time.slice(0, 2) + ":" + item.time.slice(2, 4);
  585. obj.maxValue = item.temperatureMax;
  586. obj.minValue = item.temperatureMin || 0;
  587. obj.distance = obj.maxValue - obj.minValue || 0;
  588. obj.height = obj.distance * lenpx;
  589. obj.planTemp = Number(
  590. ((obj.maxValue + obj.minValue) / 2).toFixed(1)
  591. );
  592. obj.y = (28 - obj.maxValue) * lenpx;
  593. customPlan.push(obj);
  594. }
  595. });
  596. this.setData({ customPlancopy: this.copyobj(customPlan) });
  597. },
  598. getHopeTemp(value) {
  599. return new Promise((reslove, reject) => {
  600. if (!value || !value.length) {
  601. return;
  602. }
  603. let data = new Date();
  604. let hour = data.getHours();
  605. let min = data.getMinutes();
  606. let minIndex = Math.floor(min / 15);
  607. if (minIndex >= 3) {
  608. hour = hour + 1;
  609. min = 0;
  610. } else {
  611. min = (minIndex + 1) * 15;
  612. }
  613. let targetTime =
  614. (hour >= 10 ? `${hour}` : `0${hour}`) +
  615. (min >= 10 ? `${min}` : `0${min}`);
  616. let isDatelist = [];
  617. let targetTemp;
  618. let targetIndex;
  619. value.forEach((item, index) => {
  620. if (item.temperatureMax && item.temperatureMin) {
  621. isDatelist.push(index);
  622. }
  623. if (item.time === `${targetTime}00`) {
  624. targetTemp = parseInt(
  625. (item.temperatureMax + item.temperatureMin) / 2
  626. );
  627. targetIndex = index;
  628. }
  629. });
  630. if (targetTemp) {
  631. this.setData({
  632. targetTemp: targetTemp,
  633. targetIndex: targetIndex,
  634. });
  635. } else {
  636. let index = isDatelist.pop();
  637. targetTemp = parseInt(
  638. (value[index].temperatureMax +
  639. value[index].temperatureMin) /
  640. 2
  641. );
  642. this.setData({
  643. targetTemp: targetTemp,
  644. targetIndex: targetIndex,
  645. });
  646. }
  647. reslove();
  648. });
  649. // 获取当前时间最近的15分钟
  650. },
  651. // 更改即时调节选项
  652. effectChange(event) {
  653. this.setData(
  654. {
  655. effectTime: event.detail,
  656. },
  657. () => {
  658. let changeDate = JSON.parse(
  659. JSON.stringify(this.data.tragetChartcopy)
  660. );
  661. if (event.detail === "1") {
  662. let len =
  663. this.data.targetIndex + 8 > changeDate.length
  664. ? changeDate.length
  665. : this.data.targetIndex + 8;
  666. for (var i = this.data.targetIndex; i < len; i++) {
  667. changeDate[i].sales = this.data.targetTemp;
  668. changeDate[i]["标准区间"] = [
  669. changeDate[i].sales - 1,
  670. changeDate[i].sales + 1,
  671. ];
  672. }
  673. } else if (event.detail === "2") {
  674. let len = changeDate.length;
  675. for (var i = this.data.targetIndex; i < len; i++) {
  676. changeDate[i].sales = this.data.targetTemp;
  677. changeDate[i]["标准区间"] = [
  678. changeDate[i].sales - 1,
  679. changeDate[i].sales + 1,
  680. ];
  681. }
  682. } else {
  683. let len =
  684. this.data.targetIndex + 4 > changeDate.length
  685. ? changeDate.length
  686. : this.data.targetIndex + 4;
  687. let start =
  688. this.data.targetIndex - 4 < 0
  689. ? 0
  690. : this.data.targetIndex - 4;
  691. for (var i = start; i < len; i++) {
  692. changeDate[i].sales = this.data.targetTemp;
  693. changeDate[i]["标准区间"] = [
  694. changeDate[i].sales - 1,
  695. changeDate[i].sales + 1,
  696. ];
  697. }
  698. }
  699. this.setData({ tragetChart: changeDate });
  700. }
  701. );
  702. },
  703. // 加期望温度
  704. addClick() {
  705. let tepNum = this.data.targetTemp;
  706. let firstNum = tepNum.toString().split(".")[0];
  707. let lastNum = tepNum.toString().split(".")[1];
  708. if (firstNum >= 28) {
  709. return;
  710. }
  711. if (lastNum >= 5) {
  712. this.setData({ targetTemp: Number(firstNum) + 1 });
  713. } else {
  714. this.setData({ targetTemp: Number(firstNum) + 0.5 });
  715. }
  716. },
  717. // 减期望温度
  718. minusClick() {
  719. let tepNum = this.data.targetTemp;
  720. let firstNum = tepNum.toString().split(".")[0];
  721. let lastNum = tepNum.toString().split(".")[1];
  722. if (firstNum <= 18 && !lastNum) {
  723. return;
  724. }
  725. if (lastNum > 5) {
  726. this.setData({ targetTemp: Number(firstNum) + 0.5 });
  727. } else if (lastNum <= 5) {
  728. this.setData({ targetTemp: Number(firstNum) });
  729. } else {
  730. this.setData({ targetTemp: Number(firstNum) - 0.5 });
  731. }
  732. },
  733. // 修改期望温度
  734. taboneSubmit() {
  735. if (this.data.havePower.result !== "success") {
  736. Toast.fail(this.data.havePower.message);
  737. return;
  738. }
  739. if (!this.data.effectTime || this.data.effectTime < 0) {
  740. wx.showToast({
  741. title: "未选择保持时间",
  742. icon: "none",
  743. duration: 1500,
  744. });
  745. return;
  746. }
  747. const data = {
  748. projectId: this.data.spaceDetail.projectId,
  749. objectId: this.data.spaceDetail.id,
  750. valueType: 2,
  751. model: 2,
  752. durationType: this.data.effectTime || "",
  753. value: this.data.targetTemp,
  754. };
  755. submitAdjust(data).then(async (res) => {
  756. if ((res.result = "success")) {
  757. wx.hideLoading();
  758. setTimeout(function () {
  759. wx.showToast({
  760. title: "提交成功",
  761. duration: 2000,
  762. });
  763. }, 300);
  764. }
  765. // this.setData({effectTime:-1})
  766. await this.buildContact();
  767. this.isfeeded();
  768. // this.getChartDate();
  769. });
  770. },
  771. // 修改全天温度
  772. tabtwoSubmit() {
  773. if (this.data.havePower.result !== "success") {
  774. Toast.fail(this.data.havePower.message);
  775. return;
  776. }
  777. let customPlan = JSON.parse(JSON.stringify(this.data.customPlan));
  778. customPlan.forEach((item) => {
  779. delete item.id;
  780. delete item.name;
  781. delete item.planTemp;
  782. delete item.y;
  783. delete item.height;
  784. delete item.distance;
  785. });
  786. const data = {
  787. projectId: this.data.spaceDetail.projectId,
  788. objectId: this.data.spaceDetail.id,
  789. valueType: 3,
  790. model: 2,
  791. value: this.data.targetTemp,
  792. customPlan: customPlan,
  793. };
  794. submitAdjust(data).then(async (res) => {
  795. wx.hideLoading();
  796. setTimeout(function () {
  797. wx.showToast({
  798. title: "提交成功",
  799. duration: 2000,
  800. });
  801. }, 300);
  802. await this.buildContact();
  803. this.isfeeded();
  804. // this.getChartDate();
  805. });
  806. },
  807. showTips() {
  808. wx.showModal({
  809. title: "提示",
  810. content: "非工作时间如需使用空调,或遇特殊问题,请联系环境管理员",
  811. showCancel: false,
  812. success: function (res) {},
  813. });
  814. },
  815. chartChange(e) {
  816. let y = e.detail.y;
  817. this.throttle(this.updateChart(y, e), 500);
  818. },
  819. preventTouchMove: function () {
  820. return;
  821. },
  822. updateChart(y, e) {
  823. let lenpx = 25;
  824. let planTempMax = 28 - y / lenpx;
  825. let { index, distance } = e.currentTarget.dataset;
  826. let planTemp = Number(((planTempMax * 2 - distance) / 2).toFixed(1));
  827. let target = `customPlan[${index}].y`;
  828. let targetplan = `customPlan[${index}].planTemp`;
  829. let targetTempMax = `customPlan[${index}].maxValue`;
  830. let targetTempMin = `customPlan[${index}].minValue`;
  831. this.setData({
  832. [target]: y,
  833. [targetplan]: planTemp,
  834. chartIndex: index,
  835. [targetTempMax]: planTempMax,
  836. [targetTempMin]: planTempMax - 2,
  837. });
  838. },
  839. throttle(func, delay) {
  840. let prev = Date.now();
  841. return function () {
  842. let context = this;
  843. let args = arguments;
  844. let now = Date.now();
  845. if (now - prev >= delay) {
  846. func.apply(context, args);
  847. prev = Date.now();
  848. }
  849. };
  850. },
  851. fillZore(value) {
  852. if (value < 10) {
  853. value = 0 + value;
  854. }
  855. return value;
  856. },
  857. formatTimeall(value) {
  858. let stringValue;
  859. const date = new Date();
  860. var nowMonth = date.getMonth() + 1;
  861. let nowDay = date.getDate();
  862. let torrowDay = new Date(date);
  863. torrowDay.setDate(date.getDate() + 1);
  864. let torrowMonth = torrowDay.getMonth() + 1;
  865. nowDay = this.fillZore(nowDay);
  866. nowMonth = this.fillZore(nowMonth);
  867. torrowMonth = this.fillZore(torrowMonth);
  868. if (
  869. nowMonth == value.substring(4, 6) ||
  870. torrowMonth == value.substring(4, 6)
  871. ) {
  872. if (value.substring(6, 8) == nowDay) {
  873. stringValue = "今日";
  874. }
  875. let torrowVlue = torrowDay.getDate();
  876. torrowVlue = this.fillZore(torrowVlue);
  877. if (value.substring(6, 8) == torrowVlue) {
  878. stringValue = "明日";
  879. }
  880. }
  881. if (stringValue) {
  882. stringValue =
  883. stringValue +
  884. `${value.substring(8, 10)}:${value.substring(10, 12)}`;
  885. } else {
  886. stringValue = `${value.substring(4, 6)}月${value.substring(
  887. 6,
  888. 8
  889. )}日${value.substring(8, 10)}:${value.substring(10, 12)}`;
  890. }
  891. return stringValue;
  892. },
  893. isfeeded(value) {
  894. !value && router.pop();
  895. },
  896. copyobj(a) {
  897. var c = {};
  898. c = JSON.parse(JSON.stringify(a));
  899. return c;
  900. },
  901. tabChange(event) {
  902. let that = this;
  903. if (event.detail.name == 1) {
  904. that.setData({ customPlan: null, chartIndex: null }, () => {
  905. that.setData({
  906. customPlan: this.copyobj(this.data.customPlancopy),
  907. });
  908. });
  909. } else {
  910. this.setData({ effectTime: -1 });
  911. this.getChartDate();
  912. }
  913. },
  914. getnowSeason() {
  915. let day = new Date();
  916. let year = day.getFullYear();
  917. let month = day.getMonth() + 1;
  918. month = month < 10 ? "0" + month : month;
  919. let today = day.getDate();
  920. today = today < 10 ? "0" + today : today;
  921. const data = {
  922. projectId: this.data.spaceDetail.projectId,
  923. date: `${year}${month}${today}`,
  924. };
  925. getCurrentSeason(data).then((res) => {
  926. if (res.result == "success") {
  927. this.setData({ bgSeasonType: res.data });
  928. }
  929. });
  930. },
  931. // 自动刷新
  932. autoRefresh(fn) {
  933. if (refreshTimer) {
  934. this.clearTimer();
  935. }
  936. let refreshTime = $.store.get("autoRefreshTime");
  937. refreshTimer = setInterval(() => {
  938. fn();
  939. // this.autoRefresh(fn);
  940. }, refreshTime);
  941. },
  942. /**
  943. * 生命周期函数--监听页面加载
  944. */
  945. onLoad: function (options) {
  946. options = JSON.parse(decodeURIComponent(JSON.stringify(options)));
  947. if (options.md1) {
  948. this.getDetail(options.md1);
  949. this.autoRefresh(this.getDetail);
  950. } else {
  951. /* options.humidity&&(options.humiditylevel = this.checkLevel(options.humidity,"humidity"));
  952. options.co2&&(options.co2level = this.checkLevel(options.co2,"co2"));
  953. options.pm25&&(options.pm25level = this.checkLevel(options.pm25,"pm25"));
  954. options.hcho&&(options.hcholevel = this.checkLevel(options.hcho,"hcho"));
  955. */
  956. options.isPassengerPassShow &&
  957. (options.isPassengerPassShow = JSON.parse(
  958. options.isPassengerPassShow
  959. ));
  960. // if(typeof options.isPassengerPass==="undefined"){
  961. // options.isPassengerPassShow=false;
  962. // }else{
  963. // options.isPassengerPassShow=true;
  964. // options.isPassengerPass=options.isPassengerPass?'有人':'无人'
  965. // }
  966. this.setData({ spaceDetail: options }, () => {
  967. this.checkGuide();
  968. this.getnowSeason();
  969. let higthSpace = ["311", "312"];
  970. if (
  971. this.data.spaceDetail.roomFuncType &&
  972. higthSpace.includes(this.data.spaceDetail.roomFuncType)
  973. ) {
  974. this.setData({ singleOffice: true });
  975. }
  976. this.checkPower();
  977. this.getDetail();
  978. this.autoRefresh(this.getDetail);
  979. });
  980. }
  981. },
  982. async getDetail(value) {
  983. let data;
  984. if (value) {
  985. let projectId = "Pj" + value.substring(2, 12);
  986. this.setData({ spaceId: value, projectId: projectId });
  987. data = {
  988. criteria: {
  989. spaceId: value,
  990. userId: $.store.get("userId") || $.storage.get("userId"),
  991. projectId: projectId,
  992. },
  993. };
  994. } else {
  995. data = {
  996. criteria: {
  997. spaceId: this.data.spaceDetail.id,
  998. userId: $.store.get("userId") || $.storage.get("userId"),
  999. projectId: this.data.spaceDetail.projectId,
  1000. },
  1001. };
  1002. }
  1003. // wx.showLoading();
  1004. let res = await getSpacedetail(data);
  1005. // wx.hideLoading();
  1006. // res.content[0].pm25= 0.034
  1007. let { content } = res;
  1008. if (content) {
  1009. (content[0].humidity || content[0].humidity == 0) &&
  1010. (content[0].humiditylevel = this.checkLevel(
  1011. content[0].humidity,
  1012. "humidity"
  1013. ));
  1014. (content[0].co2 || content[0].co2 == 0) &&
  1015. (content[0].co2level = this.checkLevel(content[0].co2, "co2"));
  1016. (content[0].pm25 || content[0].pm25 == 0) &&
  1017. (content[0].pm25level = this.checkLevel(
  1018. content[0].pm25,
  1019. "pm25"
  1020. ));
  1021. (content[0].hcho || content[0].hcho == 0) &&
  1022. (content[0].hcholevel = this.checkLevel(
  1023. content[0].hcho,
  1024. "hcho"
  1025. ));
  1026. if (typeof content[0].isPassengerPass === "undefined") {
  1027. content[0].isPassengerPassShow = false;
  1028. } else {
  1029. content[0].isPassengerPassShow = true;
  1030. content[0].isPassengerPass = content[0].isPassengerPass
  1031. ? "有人"
  1032. : "无人";
  1033. }
  1034. }
  1035. this.setData({ spaceDetail: content[0] }, () => {
  1036. this.checkGuide(value);
  1037. this.getnowSeason();
  1038. // if(this.data.spaceDetail.nextOpenTime){
  1039. // let value = this.formatTimeall(this.data.spaceDetail.nextOpenTime);
  1040. // this.setData({nextOpenTime:value})
  1041. // }
  1042. if (
  1043. this.data.spaceDetail.roomFuncType &&
  1044. this.data.spaceDetail.roomFuncType.startsWith("31")
  1045. ) {
  1046. this.setData({ singleOffice: true });
  1047. }
  1048. });
  1049. $.storage.get("wxqcode") && $.storage.set("wxqcode", "");
  1050. // 判断是否可以调节
  1051. await this.checkPower();
  1052. },
  1053. /**
  1054. * 生命周期函数--监听页面初次渲染完成
  1055. */
  1056. onReady: function () {
  1057. setTimeout(() => {
  1058. this.setData({ headerShow: true });
  1059. }, 500);
  1060. },
  1061. });