| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302 |
- // index.js
- // 获取应用实例
- import * as echarts from '../../ec-canvas/echarts';
- // const { connect } = require("../../utils/mqtt4/mqtt");
- /******************* 必须要改!!不然得不到天气!! ******************/
- const hefengKey = " aa373d4025b0487196c15d8e6526cfcf"; // 和风天气Web api的key
- /******************* 可能需要你修改的部分 ******************/
- //const mqttHost = "broker.emqx.io"; //mqtt 服务器域名/IP
- // const mqttHost = "www.nekolee.top";
- const mqttHost = "haold.aidsleep.cn";
- // const mqttHost = "192.168.3.65";
- // const mqttPort = 8084; //mqtt 服务器域名/IP
- const mqttPort = 8083; //mqtt 服务器域名/IP
- const hefengVIP = false; // 和风天气是免费的api(false)还是付费api(true)
- const deviceSubTopic_LED = "/NekoHome/sub_LED"; // 设备订阅topic(小程序发布命令topic)
- const deviceSubTopic_BEEP = "/NekoHome/sub_BEEP";
- const deviceSubTopic_CU = "/NekoHome/sub_CU";
- const deviceSubTopic_DO = "/NekoHome/sub_DO";
- const deviceSubTopic_SAN = "/NekoHome/sub_SAN";
- const deviceSubTopic_Mode = "/NekoHome/sub_mode";
- // const devicePubTopic_env = "/NekoHome/pub/Environment"; // 设备发布topic(订阅环境参数)
- // const devicePubTopic_con = "/NekoHome/pub/Controll"; // 设备发布topic(订阅控制参数)
- const devicePubTopic_env = "testtopic/1"; // 设备发布topic(订阅环境参数)
- const devicePubTopic_con = "testtopic/1"; // 设备发布topic(订阅控制参数)
- /********************* 一般不用动这些 ********************/
- //小程序接收的主题
- const mpSubTopic_env = devicePubTopic_env;
- const mpSubTopic_con = devicePubTopic_con;
- //小程序发送的主题
- const mpPubTopic_LED = deviceSubTopic_LED;
- const mpPubTopic_BEEP = deviceSubTopic_BEEP;
- const mpPubTopic_CU = deviceSubTopic_CU;
- const mpPubTopic_DO = deviceSubTopic_DO;
- const mpPubTopic_SAN = deviceSubTopic_SAN;
- const mpPubTopic_Mode = deviceSubTopic_Mode;
- const mqttUrl = `wx://${mqttHost}:${mqttPort}/mqtt`; // mqtt连接路径
- const hefengApi = "https://api.qweather.com/v7"; // 和风天气付费API前缀
- const hefengFreeApi = "https://devapi.qweather.com/v7"; // 和风天气免费API前缀
- const hefengWeather = `${hefengVIP ? hefengApi : hefengFreeApi}/weather/now?`; // 和风天气实时天气api
- const hefengAir = `${hefengVIP ? hefengApi : hefengFreeApi}/air/now?`; // 和风天气空气质量api
- const geoApi = "https://geoapi.qweather.com/v2/city/lookup?" // 地理位置api(用来获取经纬度对应的城市/城区名字)
- var homeApi = "http://haold.aidsleep.cn:8123/api";
- var homeApiLater = "http://haold.aidsleep.cn:8123";
- var homeApi_https = "https://haold.aidsleep.cn/api";
- var homeApiLater_https = "https://haold.aidsleep.cn";
- var entity = "";
- // const token = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJiN2JlOGE0MDExZjY0NjA2OGUxYjJiZTE4M2Y2NzU0NSIsImlhdCI6MTcxMTYxNDY2NCwiZXhwIjoyMDI2OTc0NjY0fQ.XJ73cXAoEsouTgvgpNVobq9oKdwlJr88TiAFLYlaahE";
- var token = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJlZGVjOWI3YWQ0MTQ0ZTIxYWQ1NTE1Nzc5NTkzNjBjNiIsImlhdCI6MTcxMjEzNTM2MywiZXhwIjoyMDI3NDk1MzYzfQ.IfrvdiaVuhCKsdy69JvUYhJ64bnhMT8MI1hN8R38whc";
- const aipushApi = "https://aipush.aidsleep.cn";
- const token_push = "b74fd5754c5ef24cf600c39194abdaeb";
- const options = {
- connectTimeout: 4000,//超时时间
- clientId: 'emqx_ODAyNT',//随机生成ID
- username: 'test1',
- password: '123456'
- }
- var humidityValue = 0;
- var humidityMax = 0;
- var humidityMin = 0;
- var humidityMarginLeft = 110;
- function checkState(state) {
- return state == 'on' || state == 'off';
- }
- function setOption(chart) {
- var option = {
- backgroundColor: "#ffffff",
- series: [{
- name: '加湿器',
- type: 'gauge',
- startAngle: 230,
- endAngle: -50,
- splitNumber: 8,
- min: humidityMin || 40,
- max: humidityMax || 70,
- axisLine: {
- show: false
- },
- axisLabel: {
- show: false,
- },
- anchor: {
- show: false
- },
- splitLine: {
- distance: -10,
- length: 6,
- lineStyle: {
- width: 1.5,
- color: '#9499C3'
- }
- },
- pointer: {
- show: false
- },
- axisTick: {
- distance: -10,
- splitNumber: 5,
- lineStyle: {
- width: 1,
- color: '#9499C3'
- }
- },
- progress: {
- show: true,
- width: 10,
- itemStyle: {
- color: "#0BC3AA"
- }
- },
- title: {
- color: '#6C6970',
- offsetCenter: [0, '-50%'],
- lineHeight: 15,
- fontSize: 12
- },
- detail: {
- valueAnimation: true,
- width: '60%',
- offsetCenter: [0, '20%'],
- fontSize: 28,
- fontWeight: 'bolder',
- formatter: function (value) {
- return value.toFixed(0) + '{units|%}'
- },
- color: '#3E3D44',
- rich: {
- units: {
- fontSize: 12,
- padding: [10, 0, 0, 0],
- fontWeight: 'bolder',
- color: '#333333'
- },
- }
- },
- data: [{
- value: humidityValue || 0,
- name: '湿度',
- }]
- }]
- };
- chart.setOption(option);
- }
- // import Notify from '../../@vant/weapp/notify/notify';
- // import Dialog from '../../@vant/weapp/dialog/dialog';
- import Toast from '../../@vant/weapp/toast/toast';
- Page({
- data: {
- ecHumidifier: {
- lazyLoad: true, // 懒加载
- },
- //单选框
- radio_select: '10',
- radio_switch: '10',
- //倒计时时间
- Time: 0,
- //火灾时的呼吸效果变量
- breathNum: 0,
- currentMenuTabIndex: -1,
- currentDialogIndex: 0,
- menuTabDialogShow: false,
- //火灾头顶警示
- topTips: true,
- hide: false,
- //火灾弹窗显示
- fire_show: false,
- //设备控制弹窗参数 开始
- show_led: false,
- show_beep: false,
- show_curtain: false,
- show_san: false,
- show_door: false,
- show_time: false,
- actions_led: [
- {
- name: '打开',
- subname: '打开客厅灯',
- id: 1,
- url: '',
- entity_id: '',
- },
- {
- name: '关闭',
- subname: '关闭客厅灯',
- id: 0,
- url: '',
- entity_id: '',
- },
- ],
- actions_beep: [
- {
- name: '打开',
- subname: '打开警报器',
- id: 1,
- url: '/services/switch/turn_on',
- entity_id: 'switch.deerma_jsq2g_392f_alarm',
- },
- {
- name: '关闭',
- subname: '关闭警报器',
- id: 0,
- url: '/services/switch/turn_off',
- entity_id: 'switch.deerma_jsq2g_392f_alarm',
- },
- ],
- actions_curtain: [
- {
- name: '打开',
- subname: '打开香薰机',
- id: 90,
- url: '',
- entity_id: '',
- },
- {
- name: '关闭',
- subname: '关闭香薰机',
- id: 0,
- url: '',
- entity_id: '',
- },
- ],
- actions_san: [
- {
- name: '打开',
- subname: '打开音响',
- id: 1,
- url: '',
- entity_id: '',
- },
- {
- name: '关闭',
- subname: '关闭音响',
- id: 0,
- url: '',
- entity_id: '',
- },
- ],
- actions_door: [
- {
- name: '打开',
- subname: '打开智能开关',
- id: 90,
- url: '',
- entity_id: '',
- },
- {
- name: '关闭',
- subname: '关闭智能开关',
- id: 0,
- url: '',
- entity_id: '',
- },
- ],
- //设备控制弹窗参数 结束
- client: {},
- //设备状态参数 开始
- status_beep: 0,
- status_led: 0,
- status_san: 0,
- status_curtain: 0,
- status_door: 0,
- status_fire: 0,
- status_light: 0,
- status_mode: 0,
- //设备状态参数 结束
- //设备环境参数 开始
- Temp: 0,
- Humi: 0,
- Voltage1: 0,
- Voltage2: 0,
- //设备环境参数 结束
- //香薰机参数 开始
- Light: 0,
- LiquidLevel: 0,
- //香薰机参数 开始
- area: "请求中", //城区
- city: "请求中", //城市
- airText: "请求中", //空气优良
- airValue: 0, //空气指数
- weather: "请求中", //天气
- //weatherAdvice: "今天天气不错", //天气建议
- time: 30 * 60 * 60 * 1000,
- gradientColor: {
- '0%': '#ffd01e',
- '100%': '#ee0a24',
- },
- value: 25,
- pickerValue: [0], // picker-view 的当前值,数组形式,表示选择器的当前位置
- array: ['0%', '10%', '20%', '30%', '40%', '50%', '60%', '70%', '80%', '90%', '100%'], // 滑动块可选的值
- items: ['0%', '10%', '20%', '30%', '40%', '50%', '60%', '70%', '80%', '90%', '100%'], // 滑动块可选的值
- scaleTextStyle: {
- show: true,
- size: 12,
- color: ''
- },
- indicatorTextStyle: {
- show: true,
- size: 16,
- text: '湿度'
- },
- indicatorTextStyleClimate: {
- show: true,
- size: 16,
- text: '温度'
- },
- indicatorValueStyle: {
- show: true,
- size: 55,
- color: ''
- },
- indicatorCircleStyle: {
- show: true,
- boderColor: [
- {
- progress: 0,
- value: "#4575e8"
- },
- {
- progress: 1,
- value: "#fff"
- }
- ]
- },
- listCover: [],//窗帘开关
- listSwitch: [],//开关
- listScroll: [],//滚动条
- listUnit: [],//rgb、%、minutes、w等
- listConversation: [],//智能音响
- listConversation1: [],//智能音响
- listHumidity: [],//加湿器
- listButton: [],//按钮 '按下'
- listSelect: [],//下拉框的
- listClimate: [],//空调控制 图像
- listMiotMediaPlayer: [],//智能音箱 图像
- listMitvMediaPlayer: [],//电视 图像
- listHumidifier: [],//加湿器 图像
- listAromatherapyMachine: [],//香薰机 图像
- listSensor: [],//文字描述的
- listText: [],//文本框填写的
- isPlaying: false,
- currentTime: 0,
- currentIndex: 0,
- duration: 0,
- currentSongTitle: '--',
- currentSongArtist: '--',
- canPrev: true,
- canNext: true,
- songs: [], // 歌曲列表
- scrollValue: [],
- modelList1: [],//起床模式
- modelList2: [],//观影模式
- modelList3: [],//睡眠模式
- selectedIndex: 0, // 默认选中第一个选项
- home_room: [
- 'company_laboratory',
- '2802',
- ],
- climateMode: '',//空调模式:加热还是除湿。在空调增加按钮和减少按钮 时使用
- canvasWidth: 300, // 画布宽度
- canvasHeight: 150, // 画布高度
- value: 60, // 当前得分
- total: 100, // 总分值
- tvEntityId: '',// 电视实体Id
- tvEntityIds: [],// 电视实体
- entityName: '',//
- sleep_duration: '50',
- itemList: [
- { name: '1', data: [{ value: 10 }, { value: 1 }] },
- { name: '2', data: [{ value: 10 }, { value: 4 }] },
- { name: '3', data: [{ value: 10 }, { value: 7 }] },
- ],
- blackList: [
- // '指示灯','电视模式','电视音量','空调遥控','智能音箱','电视控制码','传感器模式','开关模式','耗电量','智能音箱会话'
- '加湿器', '空调', '音箱', '窗帘', '纱帘'
- ],
- temperatureHumidifyName: '温度',
- isButtonPressedHumidityUp: false,
- isButtonPressedHumidityDown: false,
- isButtonPressedClimateUp: false,
- isButtonPressedClimateDown: false,
- tcp: '',
- w_temp: '',//温度
- w_humidity: '',//湿度
- imgSrc: '',//图片地址
- isLoading: false,
- observer: '',
- hotelcode: '',//酒店编码
- roomcode: '',//房间编码
- isClickedPrevSong: false,
- isClickedTogglePlayPause: false,
- isClickedNextSong: false,
- isClickedOnHumidifierUp: false,
- isClickedOnHumidifierDown: false,
- isClickedOnClimateAuto: false,
- isClickedOnClimateUp: false,
- isClickedToggleAromlight: false,//香薰机灯光
- intervalId1: null,
- intervalId2: null,
- sliderValueHumidifier: '',
- sliderValueClimate: '',
- humidityMarginLeft: humidityMarginLeft
- },
- checkMenuTap(e) {
- // 三种模式
- console.log(e.currentTarget.dataset.index)
- const index = e.currentTarget.dataset.index;
- if (this.data.currentMenuTabIndex == index) {
- // 选中的打断
- return
- }
- if (index == 0 && !this.data.modelList1.length) {
- // 没有的打断
- return
- }
- if (index == 1 && !this.data.modelList2.length) {
- // 没有的打断
- return
- }
- if (index == 2 && !this.data.modelList3.length) {
- // 没有的打断
- return
- }
- this.setData({
- menuTabDialogShow: true,
- currentDialogIndex: index
- })
- },
- onClickHideMenuTabDialog() {
- this.setData({
- menuTabDialogShow: false
- })
- },
- onClickHideSureMenuTabDialog() {
- var item = null;
- if (this.data.currentDialogIndex == 0) {
- item = this.data.modelList1[0];
- } else if (this.data.currentDialogIndex == 1) {
- item = this.data.modelList2[0];
- } else if (this.data.currentDialogIndex == 2) {
- item = this.data.modelList3[0];
- }
- // 确认模式
- this.setData({
- menuTabDialogShow: false,
- currentMenuTabIndex: this.data.currentDialogIndex
- })
- wx.request({
- url: `${homeApi_https}/services/automation/trigger`,
- method: 'POST',
- data: {
- "entity_id": item.entity_id,
- "skip_condition": true,
- },
- header: {
- 'content-type': 'application/json', // 默认值
- 'Authorization': 'Bearer ' + token // 在头部设置认证信息,例如使用Bearer Token
- },
- success(res) {
- },
- });
- },
- checkHumidityMarginLeft() {
- var proportion = 440;
- var percentage = (humidityValue - humidityMin) / (humidityMax - humidityMin);
- const value = percentage * proportion + humidityMarginLeft;
- this.setData({
- humidityMarginLeft: value
- })
- },
- // 加湿器
- handleTouchEndHumidifier: function (e) {
- this.setData({
- sliderValueHumidifier: '',
- });
- },
- // 加湿器更改湿度
- handleChangingHumidifier: function (e) {
- // 假设 slider 宽度为屏幕宽度(或某个固定值),这里需要根据实际情况调整
- const sliderValueHumidifier = e.detail.value;
- var proportion = 440;
- var percentage = (sliderValueHumidifier - humidityMin) / (humidityMax - humidityMin);
- const humidityMarginLeftValue = percentage * proportion + humidityMarginLeft;
- this.setData({
- sliderValueHumidifier: sliderValueHumidifier,
- humidityMarginLeft: humidityMarginLeftValue
- });
- },
- handleTouchEndClimate: function (e) {
- this.setData({
- sliderValueClimate: '',
- });
- },
- handleChangingClimate: function (e) {
- // 假设 slider 宽度为屏幕宽度(或某个固定值),这里需要根据实际情况调整
- const screenWidth = wx.getSystemInfoSync().windowWidth;
- const sliderValueClimate = e.detail.value;
- this.setData({
- sliderValueClimate: sliderValueClimate
- })
- },
- replaceAll: function (str, find, replace) {
- return str.replace(new RegExp(find, 'g'), replace);
- },
- checkFuzzyMatch: function (data) {
- var searchString = data.attributes.friendly_name
- var domain = data.entity_id.split(".")[0]
- var isMatched = true;
- var list = this.data.blackList;
- if (!searchString || !list) return false;
- for (var i = 0; i < list.length; i++) {
- if (searchString.indexOf(list[i]) !== -1) {
- isMatched = false;
- break;
- }
- }
- return isMatched;
- },
- onChange: function (e) {
- this.setData({
- pickerValue: e.detail.value, // 更新picker-view的值
- });
- // 在这里添加点击事件的处理逻辑
- // 根据pickerValue的变化执行相应的操作
- },
- swiperTap(e) {
- // 处理整个swiper的点击事件
- },
- itemTap(e) {
- // 处理swiper-item的点击事件
- const index = e.currentTarget.dataset.index;
- // 根据index执行其他操作
- },
- //定时组件
- start() {
- const countDown = this.selectComponent('.control-count-down');
- countDown.start();
- },
- pause() {
- const countDown = this.selectComponent('.control-count-down');
- countDown.pause();
- },
- reset() {
- const countDown = this.selectComponent('.control-count-down');
- countDown.reset();
- },
- set() {
- this.setData({
- show_time: true,
- })
- },
- onClose_TimeSet() {
- this.setData({ show_time: false });
- },
- onChange_Silder(event) {
- wx.showToast({
- icon: 'none',
- title: `定时:${event.detail}s`,
- });
- this.setData({
- Time: event.detail,
- })
- },
- onChange_Select(event) {
- this.setData({
- radio_select: event.detail,
- });
- },
- onChange_Switch(event) {
- this.setData({
- radio_switch: event.detail,
- });
- },
- finished() {
- var that = this;
- //定时开关哪个设备?
- if (that.data.radio_select == 2) {
- if (that.data.radio_switch == 1) {
- console.log("选择了开");
- that.data.client.publish(mpPubTopic_LED, '{"target":"LED","value":1}', function (err) {
- if (!err) {
- console.log("成功下发命令——打开客厅灯");
- }
- });
- } else {
- console.log("选择了关");
- that.data.client.publish(mpPubTopic_LED, '{"target":"LED","value":0}', function (err) {
- if (!err) {
- console.log("成功下发命令——关闭客厅灯");
- }
- });
- }
- } else if (that.data.radio_select == 3) {
- console.log("选择了BEEP");
- if (that.data.radio_switch == 1) {
- console.log("选择了开");
- that.data.client.publish(mpPubTopic_BEEP, '{"target":"BEEP","value":1}', function (err) {
- if (!err) {
- console.log("成功下发命令——打开报警器");
- }
- });
- } else {
- console.log("选择了关");
- that.data.client.publish(mpPubTopic_BEEP, '{"target":"BEEP","value":0}', function (err) {
- if (!err) {
- console.log("成功下发命令——关闭报警器");
- }
- });
- }
- } else if (that.data.radio_select == 4) {
- console.log("选择了CU");
- if (that.data.radio_switch == 1) {
- console.log("选择了开");
- that.data.client.publish(mpPubTopic_CU, '{"target":"CU","value":1}', function (err) {
- if (!err) {
- console.log("成功下发命令——开窗帘");
- }
- });
- } else {
- console.log("选择了关");
- that.data.client.publish(mpPubTopic_CU, '{"target":"CU","value":0}', function (err) {
- if (!err) {
- console.log("成功下发命令——关窗帘");
- }
- });
- }
- } else if (that.data.radio_select == 5) {
- console.log("选择了SAN");
- if (that.data.radio_switch == 1) {
- console.log("选择了开");
- that.data.client.publish(mpPubTopic_SAN, '{"target":"SAN","value":1}', function (err) {
- if (!err) {
- console.log("成功下发命令——开风扇");
- }
- });
- } else {
- console.log("选择了关");
- that.data.client.publish(mpPubTopic_SAN, '{"target":"SAN","value":0}', function (err) {
- if (!err) {
- console.log("成功下发命令——关风扇");
- }
- });
- }
- }
- Toast('倒计时结束');
- },
- setTextBreathing: function (cls, e) {
- //使用记录呼吸效果
- var transparency = 10;
- var reduce = true; //记录当前做透明度增加或降低操作
- setInterval(function () {
- if (reduce === true) {
- transparency -= 1;
- if (transparency === 0) {
- reduce = false;
- }
- } else if (reduce === false) {
- transparency += 1;
- if (transparency === 10) {
- reduce = true;
- }
- }
- cls._defaultComponent.setData({
- breathNum: transparency / 10
- })
- //通过setData的方式,设置breathNum的值
- }, 80)
- },
- // 各个设备弹窗逻辑
- onOpen_led() {
- this.setData({ show_led: true });
- },
- onClose_led() {
- this.setData({
- show_led: false
- })
- },
- onSelect_led(event) {
- console.log(event.detail.id);
- this.onLedChange(event.detail.id);
- },
- onOpen_beep() {
- this.setData({ show_beep: true });
- },
- onClose_beep() {
- this.setData({
- show_beep: false
- })
- },
- onSelect_beep(event) {
- console.log(event.detail.id);
- this.onBeepChange(event.detail.id, event.detail.url, event.detail.entity_id);
- },
- getRealApi() {
- // if(wx.getStorageSync('res').result && wx.getStorageSync('res').result.includes('辰悦颐养斋')){
- // homeApi = "http://zhh.aidsleep.cn:9123/api";
- // homeApiLater = "http://zhh.aidsleep.cn:9123";
- // homeApi_https = "https://zhh.aidsleep.cn/api";
- // homeApiLater_https = "https://zhh.aidsleep.cn";
- // entity = wx.getStorageSync('res').result=='company_laboratory'?'公司实验室':wx.getStorageSync('res').result
- // if(entity && entity.includes('-')){
- // entity = entity.slice(entity.indexOf('-')+1)
- // }
- // if(entity && entity.includes('|')){
- // entity = entity.slice(entity.indexOf('|')+1)
- // }
- // }else if(wx.getStorageSync('res').result && (!wx.getStorageSync('res').result.includes('辰悦颐养斋'))){
- // homeApi = "http://haold.aidsleep.cn:8123/api";
- // homeApiLater = "http://haold.aidsleep.cn:8123";
- // homeApi_https = "https://haold.aidsleep.cn/api";
- // homeApiLater_https = "https://haold.aidsleep.cn";
- // entity = wx.getStorageSync('res').result=='company_laboratory'?'公司实验室':wx.getStorageSync('res').result
- // if(entity && entity.includes('-')){
- // entity = str.slice(str.indexOf('-')+1)
- // }
- // if(entity && entity.includes('|')){
- // entity = str.slice(str.indexOf('|')+1)
- // }
- // }
- },
- onSelect_vangrid(url, entity_id) {
- // this.setData({
- // status_beep: Number(param4)
- // })
- wx.request({
- url: `${homeApi_https}` + url,
- method: 'POST',
- data: {
- "entity_id": entity_id
- },
- header: {
- 'content-type': 'application/json', // 默认值
- 'Authorization': 'Bearer ' + token // 在头部设置认证信息,例如使用Bearer Token
- },
- success(res) {
- },
- });
- },
- tvFanChange(e) {
- var that = this;
- // 获取绑定的参数
- var entity_id = e.currentTarget.dataset.id;
- //模式
- var fan = e.currentTarget.dataset.fan;
- wx.request({
- url: `${homeApi_https}` + '/services/media_player/select_source',
- method: 'POST',
- data: {
- "entity_id": entity_id,
- "source": fan
- },
- header: {
- 'content-type': 'application/json', // 默认值
- 'Authorization': 'Bearer ' + token // 在头部设置认证信息,例如使用Bearer Token
- },
- success(res) {
- // if(res.data){
- // that.getSwitch(res.data,that)
- // }
- },
- });
- },
- // switch
- onSelect_All(e) {
- var that = this;
- const tempListSwitch = that.data.listSwitch;
- // 获取绑定的参数
- var param0 = e.currentTarget.dataset.param0;
- var param1 = e.currentTarget.dataset.param1;
- var param2 = e.currentTarget.dataset.param2;
- // var param3 = e.currentTarget.dataset.param3;
- var param4 = e.currentTarget.dataset.param4 // 0 || 1;
- var param5 = e.currentTarget.dataset.param5;
- console.log('param1=' + param1);
- console.log('param2=' + param2);
- // console.log('param3='+param3);
- // console.log('param4='+param4);
- console.log('param5=' + param5);
- if (param4 == '1') {
- tempListSwitch[param0].state = "on"
- } else {
- tempListSwitch[param0].state = "off"
- }
- that.setData({
- listSwitch: tempListSwitch
- })
- // this.setData({
- // status_beep: Number(param4)
- // })
- // if(param3 == "/turn_on"){
- // that.data.listSwitch[param0].state = "off";
- // that.data.listSwitch[param0].service = "turn_off";
- // }else if(param3 == "/turn_off"){
- // that.data.listSwitch[param0].state = "on";
- // that.data.listSwitch[param0].service = "turn_on";
- // }
- console.log('switch 发生 change 事件,携带值为', e.detail)
- wx.request({
- url: `${homeApi_https}` + param1 + param2 + (e.detail ? '/turn_on' : '/turn_off'),
- method: 'POST',
- data: {
- "entity_id": param5
- },
- header: {
- 'content-type': 'application/json', // 默认值
- 'Authorization': 'Bearer ' + token // 在头部设置认证信息,例如使用Bearer Token
- },
- success(res) {
- // if(res.data){
- // that.getSwitch(res.data,that)
- // }
- },
- });
- },
- // 香薰机开关
- onSelect_All_AromatherapyMachine(e) {
- var that = this;
- const tempListSwitch = that.data.listAromatherapyMachine;
- // 获取绑定的参数
- var param0 = e.currentTarget.dataset.param0;
- var param1 = e.currentTarget.dataset.param1;
- var param2 = e.currentTarget.dataset.param2;
- // var param3 = e.currentTarget.dataset.param3;
- var param4 = e.currentTarget.dataset.param4 // 0 || 1;
- var param5 = e.currentTarget.dataset.param5;
- console.log('param1=' + param1);
- console.log('param2=' + param2);
- // console.log('param3='+param3);
- // console.log('param4='+param4);
- console.log('param5=' + param5);
- if (param4 == '1') {
- tempListSwitch[param0].state = "on"
- } else {
- tempListSwitch[param0].state = "off"
- }
- that.setData({
- listAromatherapyMachine: tempListSwitch
- })
- // this.setData({
- // status_beep: Number(param4)
- // })
- // if(param3 == "/turn_on"){
- // that.data.listSwitch[param0].state = "off";
- // that.data.listSwitch[param0].service = "turn_off";
- // }else if(param3 == "/turn_off"){
- // that.data.listSwitch[param0].state = "on";
- // that.data.listSwitch[param0].service = "turn_on";
- // }
- console.log('switch 发生 change 事件,携带值为', e.detail)
- wx.request({
- url: `${homeApi_https}` + param1 + param2 + (e.detail ? '/turn_on' : '/turn_off'),
- method: 'POST',
- data: {
- "entity_id": param5
- },
- header: {
- 'content-type': 'application/json', // 默认值
- 'Authorization': 'Bearer ' + token // 在头部设置认证信息,例如使用Bearer Token
- },
- success(res) {
- // if(res.data){
- // that.getSwitch(res.data,that)
- // }
- },
- });
- },
- onTap_All(e) {
- var that = this;
- // 获取绑定的参数
- var param0 = e.currentTarget.dataset.param0;
- var param1 = e.currentTarget.dataset.param1;
- var param2 = e.currentTarget.dataset.param2;
- // var param3 = e.currentTarget.dataset.param3;
- var param4 = e.currentTarget.dataset.param4;
- var param5 = e.currentTarget.dataset.param5;
- console.log('param1=' + param1);
- console.log('param2=' + param2);
- // console.log('param3='+param3);
- // console.log('param4='+param4);
- console.log('param5=' + param5);
- // this.setData({
- // status_beep: Number(param4)
- // })
- // if(param3 == "/turn_on"){
- // that.data.listSwitch[param0].state = "off";
- // that.data.listSwitch[param0].service = "turn_off";
- // }else if(param3 == "/turn_off"){
- // that.data.listSwitch[param0].state = "on";
- // that.data.listSwitch[param0].service = "turn_on";
- // }
- console.log('switch 发生 change 事件,携带值为', param4)
- wx.request({
- url: `${homeApi_https}` + param1 + param2 + (param4 == '1' ? '/turn_on' : '/turn_off'),
- method: 'POST',
- data: {
- "entity_id": param5
- },
- header: {
- 'content-type': 'application/json', // 默认值
- 'Authorization': 'Bearer ' + token // 在头部设置认证信息,例如使用Bearer Token
- },
- success(res) {
- // if(res.data){
- // that.getSwitch(res.data,that)
- // }
- },
- });
- },
- //香薰机灯光控制
- onSelect_All_aromlight(e) {
- var that = this;
- this.setData({
- isClickedToggleAromlight: true
- });
- // 获取绑定的参数
- var param0 = e.currentTarget.dataset.param0;
- var param1 = e.currentTarget.dataset.param1;
- var param2 = e.currentTarget.dataset.param2;
- // var param3 = e.currentTarget.dataset.param3;
- // var param4 = e.currentTarget.dataset.param4;
- var param5 = e.currentTarget.dataset.param5;
- console.log('param1=' + param1);
- console.log('param2=' + param2);
- // console.log('param3='+param3);
- // console.log('param4='+param4);
- console.log('param5=' + param5);
- // this.setData({
- // status_beep: Number(param4)
- // })
- // if(param3 == "/turn_on"){
- // that.data.listSwitch[param0].state = "off";
- // that.data.listSwitch[param0].service = "turn_off";
- // }else if(param3 == "/turn_off"){
- // that.data.listSwitch[param0].state = "on";
- // that.data.listSwitch[param0].service = "turn_on";
- // }
- // console.log('switch 发生 change 事件,携带值为', e.detail.value)
- wx.request({
- url: `${homeApi_https}` + param1 + param2 + '/turn_on',
- method: 'POST',
- data: {
- "entity_id": param5
- },
- header: {
- 'content-type': 'application/json', // 默认值
- 'Authorization': 'Bearer ' + token // 在头部设置认证信息,例如使用Bearer Token
- },
- success(res) {
- // if(res.data){
- // that.getSwitch(res.data,that)
- // }
- },
- });
- },
- onSelect_Cover(e) {
- var that = this;
- // 获取绑定的参数
- var param0 = e.currentTarget.dataset.param0;
- var param1 = e.currentTarget.dataset.param1;
- var param2 = e.currentTarget.dataset.param2;
- // var param3 = e.currentTarget.dataset.param3;
- // var param4 = e.currentTarget.dataset.param4;
- var param5 = e.currentTarget.dataset.param5;
- console.log('param1=' + param1);
- console.log('param2=' + param2);
- // console.log('param3='+param3);
- // console.log('param4='+param4);
- console.log('param5=' + param5);
- // this.setData({
- // status_beep: Number(param4)
- // })
- // if(param3 == "/turn_on"){
- // that.data.listSwitch[param0].state = "off";
- // that.data.listSwitch[param0].service = "turn_off";
- // }else if(param3 == "/turn_off"){
- // that.data.listSwitch[param0].state = "on";
- // that.data.listSwitch[param0].service = "turn_on";
- // }
- console.log('switch 发生 change 事件,携带值为', e.detail.value)
- wx.request({
- url: `${homeApi_https}` + param1 + param2 + (e.detail.value ? '/open_cover' : '/close_cover'),
- method: 'POST',
- data: {
- "entity_id": param5
- },
- header: {
- 'content-type': 'application/json', // 默认值
- 'Authorization': 'Bearer ' + token // 在头部设置认证信息,例如使用Bearer Token
- },
- success(res) {
- // if(res.data){
- // that.getSwitch(res.data,that)
- // }
- },
- });
- },
- onStop_Cover(e) {
- var that = this;
- // 获取绑定的参数
- var param0 = e.currentTarget.dataset.param0;
- var param1 = e.currentTarget.dataset.param1;
- var param2 = e.currentTarget.dataset.param2;
- // var param3 = e.currentTarget.dataset.param3;
- // var param4 = e.currentTarget.dataset.param4;
- var param5 = e.currentTarget.dataset.param5;
- console.log('param1=' + param1);
- console.log('param2=' + param2);
- // console.log('param3='+param3);
- // console.log('param4='+param4);
- console.log('param5=' + param5);
- // this.setData({
- // status_beep: Number(param4)
- // })
- // if(param3 == "/turn_on"){
- // that.data.listSwitch[param0].state = "off";
- // that.data.listSwitch[param0].service = "turn_off";
- // }else if(param3 == "/turn_off"){
- // that.data.listSwitch[param0].state = "on";
- // that.data.listSwitch[param0].service = "turn_on";
- // }
- console.log('switch 发生 change 事件,携带值为', e.detail.value)
- wx.request({
- url: `${homeApi_https}` + param1 + param2 + '/stop_cover',
- method: 'POST',
- data: {
- "entity_id": param5
- },
- header: {
- 'content-type': 'application/json', // 默认值
- 'Authorization': 'Bearer ' + token // 在头部设置认证信息,例如使用Bearer Token
- },
- success(res) {
- // if(res.data){
- // that.getSwitch(res.data,that)
- // }
- },
- });
- },
- onPressButton(e) {
- var that = this;
- // 获取绑定的参数
- var param = e.currentTarget.dataset.param;
- console.log("sliderChange-param=" + param);
- // wx.request({
- // url: `${homeApi_https}`+param1+param2+param3,
- // method: 'POST',
- // data: {
- // "entity_id":param5
- // },
- // header: {
- // 'content-type': 'application/json', // 默认值
- // 'Authorization': 'Bearer ' + token // 在头部设置认证信息,例如使用Bearer Token
- // },
- // success(res) {
- // // if(res.data){
- // // that.getSwitch(res.data,that)
- // // }
- // console.log('res.data====='+JSON.stringify(res.data));
- // },
- // });
- let domain = e.currentTarget.dataset.domain;
- let entity_id = e.currentTarget.dataset.id;
- let data = {
- "entity_id": entity_id,
- // "value":newValue
- }
- this.getService("/services", "/" + domain, "/press", "POST", data);
- },
- onSelect_beep1(e) {
- // 获取绑定的参数
- var param1 = e.currentTarget.dataset.param1;
- var param2 = e.currentTarget.dataset.param2;
- var param3 = e.currentTarget.dataset.param3;
- var param4 = e.currentTarget.dataset.param4;
- var param5 = e.currentTarget.dataset.param5;
- console.log('param1=' + param1);
- console.log('param2=' + param2);
- console.log('param3=' + param3);
- console.log('param4=' + param4);
- console.log('param5=' + param5);
- this.setData({
- status_beep: Number(param4)
- })
- wx.request({
- url: `${homeApi_https}` + param1 + param2 + param3,
- method: 'POST',
- data: {
- "entity_id": param5
- },
- header: {
- 'content-type': 'application/json', // 默认值
- 'Authorization': 'Bearer ' + token // 在头部设置认证信息,例如使用Bearer Token
- },
- success(res) {
- console.log('res.data=====' + JSON.stringify(res.data));
- },
- });
- },
- status_led1(e) {
- // 获取绑定的参数
- var param1 = e.currentTarget.dataset.param1;
- var param2 = e.currentTarget.dataset.param2;
- var param3 = e.currentTarget.dataset.param3;
- var param4 = e.currentTarget.dataset.param4;
- var param5 = e.currentTarget.dataset.param5;
- this.setData({
- status_led: Number(param4)
- })
- wx.request({
- url: `${homeApi_https}` + param1 + param2 + param3,
- method: 'POST',
- data: {
- "entity_id": param5
- },
- header: {
- 'content-type': 'application/json', // 默认值
- 'Authorization': 'Bearer ' + token // 在头部设置认证信息,例如使用Bearer Token
- },
- success(res) {
- console.log('res.data=====' + JSON.stringify(res.data));
- },
- });
- },
- status_san1(e) {
- // 获取绑定的参数
- var param1 = e.currentTarget.dataset.param1;
- var param2 = e.currentTarget.dataset.param2;
- var param3 = e.currentTarget.dataset.param3;
- var param4 = e.currentTarget.dataset.param4;
- var param5 = e.currentTarget.dataset.param5;
- this.setData({
- status_san: Number(param4)
- })
- wx.request({
- url: `${homeApi_https}` + param1 + param2 + param3,
- method: 'POST',
- data: {
- "entity_id": param5
- },
- header: {
- 'content-type': 'application/json', // 默认值
- 'Authorization': 'Bearer ' + token // 在头部设置认证信息,例如使用Bearer Token
- },
- success(res) {
- console.log('res.data=====' + JSON.stringify(res.data));
- },
- });
- },
- status_curtain1(e) {
- // 获取绑定的参数
- var param1 = e.currentTarget.dataset.param1;
- var param2 = e.currentTarget.dataset.param2;
- var param3 = e.currentTarget.dataset.param3;
- var param4 = e.currentTarget.dataset.param4;
- var param5 = e.currentTarget.dataset.param5;
- this.setData({
- status_curtain: Number(param4)
- })
- wx.request({
- url: `${homeApi_https}` + param1 + param2 + param3,
- method: 'POST',
- data: {
- "entity_id": param5
- },
- header: {
- 'content-type': 'application/json', // 默认值
- 'Authorization': 'Bearer ' + token // 在头部设置认证信息,例如使用Bearer Token
- },
- success(res) {
- console.log('res.data=====' + JSON.stringify(res.data));
- },
- });
- },
- status_door1(e) {
- // 获取绑定的参数
- var param1 = e.currentTarget.dataset.param1;
- var param2 = e.currentTarget.dataset.param2;
- var param3 = e.currentTarget.dataset.param3;
- var param4 = e.currentTarget.dataset.param4;
- var param5 = e.currentTarget.dataset.param5;
- this.setData({
- status_door: Number(param4)
- })
- wx.request({
- url: `${homeApi_https}` + param1 + param2 + param3,
- method: 'POST',
- data: {
- "entity_id": param5
- },
- header: {
- 'content-type': 'application/json', // 默认值
- 'Authorization': 'Bearer ' + token // 在头部设置认证信息,例如使用Bearer Token
- },
- success(res) {
- console.log('res.data=====' + JSON.stringify(res.data));
- },
- });
- },
- onOpen_curtain() {
- this.setData({ show_curtain: true });
- },
- onClose_curtain() {
- this.setData({
- show_curtain: false
- })
- },
- onSelect_curtain(event) {
- console.log(event.detail.id);
- this.onCurtainChange(event.detail.id);
- },
- onOpen_san() {
- this.setData({ show_san: true });
- },
- onClose_san() {
- this.setData({
- show_san: false
- })
- },
- onSelect_san(event) {
- console.log(event.detail.id);
- this.onSanChange(event.detail.id);
- },
- onOpen_door() {
- this.setData({ show_door: true });
- },
- onClose_door() {
- this.setData({
- show_door: false
- })
- },
- onSelect_door(event) {
- console.log(event.detail.id);
- this.onDoorChange(event.detail.id);
- },
- initChartHumidifier(canvas, width, height, dpr) {
- console.log("humidityValue=>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>", humidityValue);
- this.selectComponent('#mychart-dom-gauge').init((canvas, width, height, dpr) => {
- // 获取组件的 canvas、width、height 后的回调函数
- // 在这里初始化图表
- const chart = echarts.init(canvas, null, {
- width: width,
- height: height,
- devicePixelRatio: dpr // new
- });
- setOption(chart);
- // 将图表实例绑定到 this 上,可以在其他成员函数(如 dispose)中访问
- this.chart = chart;
- this.setData({
- isLoaded: true,
- isDisposed: false
- });
- // 注意这里一定要返回 chart 实例,否则会影响事件处理等
- return chart;
- });
- },
- //设备控制函数 开始
- onFireChange(event) {
- var that = this;
- console.log(event);
- let sw = event;
- that.setData({
- status_led: sw
- })
- if (sw) {
- that.data.client.publish(mpPubTopic_LED, '{"target":"LED","value":1}', function (err) {
- if (!err) {
- console.log("成功下发命令——打开客厅灯");
- }
- });
- } else {
- that.data.client.publish(mpPubTopic_LED, '{"target":"LED","value":0}', function (err) {
- if (!err) {
- console.log("成功下发命令——关闭客厅灯");
- }
- });
- }
- },
- onLedChange(event) {
- var that = this;
- console.log(event);
- let sw = event;
- that.setData({
- status_led: sw
- })
- if (sw) {
- that.data.client.publish(mpPubTopic_LED, '{"target":"LED","value":1}', function (err) {
- if (!err) {
- console.log("成功下发命令——打开客厅灯");
- }
- });
- } else {
- that.data.client.publish(mpPubTopic_LED, '{"target":"LED","value":0}', function (err) {
- if (!err) {
- console.log("成功下发命令——关闭客厅灯");
- }
- });
- }
- },
- onBeepChange(event, url, entity_id) {
- var that = this;
- console.log(event);
- let sw = event;
- that.setData({
- status_beep: sw
- })
- console.log("event=" + event);
- console.log("url=" + url);
- console.log("entity_id=" + entity_id);
- if (sw) {
- // that.data.client.publish(mpPubTopic_BEEP, '{"target":"BEEP","value":1}', function (err) {
- // if (!err) {
- // console.log("成功下发命令——打开报警器");
- // }
- // });
- this.onSelect_vangrid(url, entity_id);
- } else {
- // that.data.client.publish(mpPubTopic_BEEP, '{"target":"BEEP","value":0}', function (err) {
- // if (!err) {
- // console.log("成功下发命令——关闭报警器");
- // }
- // });
- this.onSelect_vangrid(url, entity_id);
- }
- },
- onCurtainChange(event) {
- var that = this;
- console.log(event);
- let sw = event;
- that.setData({
- status_curtain: sw
- })
- if (sw) {
- that.data.client.publish(mpPubTopic_CU, '{"target":"CU","value":1}', function (err) {
- if (!err) {
- console.log("成功下发命令——开窗帘");
- }
- });
- } else {
- that.data.client.publish(mpPubTopic_CU, '{"target":"CU","value":0}', function (err) {
- if (!err) {
- console.log("成功下发命令——关窗帘");
- }
- });
- }
- },
- onSanChange(event) {
- var that = this;
- console.log(event);
- let sw = event;
- that.setData({
- status_san: sw
- })
- if (sw) {
- that.data.client.publish(mpPubTopic_SAN, '{"target":"SAN","value":1}', function (err) {
- if (!err) {
- console.log("成功下发命令——开风扇");
- }
- });
- } else {
- that.data.client.publish(mpPubTopic_SAN, '{"target":"SAN","value":0}', function (err) {
- if (!err) {
- console.log("成功下发命令——关风扇");
- }
- });
- }
- },
- onDoorChange(event) {
- var that = this;
- console.log(event);
- let sw = event;
- that.setData({
- status_door: sw
- })
- if (sw) {
- that.data.client.publish(mpPubTopic_DO, '{"target":"DO","value":1}', function (err) {
- if (!err) {
- console.log("成功下发命令——开门");
- }
- });
- } else {
- that.data.client.publish(mpPubTopic_DO, '{"target":"DO","value":0}', function (err) {
- if (!err) {
- console.log("成功下发命令——关门");
- }
- });
- }
- },
- onModeChange(event) {
- var that = this;
- console.log(event);
- let sw = event.detail.value;
- console.log(sw);
- that.setData({
- status_mode: sw
- })
- if (sw) {
- that.data.client.publish(mpPubTopic_Mode, '{"target":"OUT","value":1}', function (err) {
- if (!err) {
- console.log("成功下发命令——离家模式");
- }
- });
- } else {
- that.data.client.publish(mpPubTopic_Mode, '{"target":"OUT","value":0}', function (err) {
- if (!err) {
- console.log("成功下发命令——居家模式");
- }
- });
- }
- },
- getEntityState(list, entity_id) {
- if (list == null) return null;
- var obj = list.find(function (obj) {
- return obj.entity_id === entity_id
- })
- console.log('getEntityState==' + obj ? (obj.state == 'on' ? 1 : 0) : null);
- return obj ? (obj.state == 'on' ? 1 : 0) : null;
- },
- getEntityStateValue(list, entity_id) {
- if (list == null) return null;
- var obj = list.find(function (obj) {
- return obj.entity_id === entity_id
- })
- console.log('getEntityStateValue==' + obj ? obj.state : null);
- return obj ? obj.state : null;
- },
- //扫码
- tapScan() {
- wx.scanCode({
- success: function (res) {
- console.log('扫码获取的参数', res)
- }
- })
- },
- getSwitch(resData, that) {
- try {
- var listSwitchTemp = [];
- var listAromatherapyMachineTemp = [];
- var entityIdList = [];
- const res = wx.getStorageSync('res');
- const home_room = wx.getStorageSync('res').home_room;
- for (let i = 0; i < resData.length; i++) {
- if (resData[i].attributes && resData[i].attributes.home_room && resData[i].attributes.home_room.includes((entity))) {
- entityIdList.push(resData[i].entity_id)
- }
- }
- console.log('entityIdList=====' + JSON.stringify(entityIdList));
- for (let i = 0; i < resData.length; i++) {
- if ((resData[i].attributes && resData[i].attributes.home_room && resData[i].attributes.home_room.includes((entity)))
- || (resData[i].attributes && resData[i].attributes.parent_entity_id && entityIdList && entityIdList.includes(resData[i].attributes.parent_entity_id))
- ) {
- var obj = {};
- obj.entity_id = resData[i].entity_id;//实体ID
- obj.parent_entity_id = resData[i].parent_entity_id;//父实体ID
- //api/services/<domain>/<service>
- if (resData[i].entity_id) {
- obj.domain = resData[i].entity_id.split(".")[0];
- }
- obj.state = (resData[i].state == 'unknown' ? "未知" : resData[i].state);
- if (resData[i].attributes && resData[i].attributes.friendly_name) {
- obj.friendly_name = that.truncateString(resData[i].attributes.friendly_name); //设备名称
- }
- if (resData[i].attributes && resData[i].attributes.home_room) {
- obj.home_room = resData[i].attributes.home_room.split(' ')[1]; //房间号
- }
- if (
- resData[i].state && resData[i].attributes && resData[i].attributes.parent_entity_id && entityIdList
- && entityIdList.includes(resData[i].attributes.parent_entity_id)
- ) {
- if (resData[i].state == 'on') {
- obj.service = 'turn_on';
- } else if (resData[i].state == 'off') {
- obj.service = 'turn_off';
- }
- //是否 是香薰机灯光
- obj.isAromlight = obj.friendly_name.includes('香薰机灯光')
- obj.isAromAtomization = obj.friendly_name.includes('香薰机雾化')
- obj.isAromatherapy = obj.friendly_name.endsWith('香薰机') || obj.friendly_name.endsWith('香薰机开关')
- if (obj.entity_id && obj.state && checkState(obj.state) && obj.friendly_name && obj.domain && !obj.isAromlight && !obj.isAromAtomization && !obj.isAromatherapy) {
- listSwitchTemp.push(obj)
- } else if ((obj.isAromlight || obj.isAromAtomization || obj.isAromatherapy) && checkState(obj.state)) {
- listAromatherapyMachineTemp.push(obj)
- }
- }
- }
- }
- console.log('listSwitchTemp=' + JSON.stringify(listSwitchTemp));
- listSwitchTemp = that.checkTVList(listSwitchTemp);
- that.setData({
- listSwitch: listSwitchTemp,
- listAromatherapyMachine: listAromatherapyMachineTemp,
- })
- } catch (error) {
- console.error(error);
- }
- },
- //设备控制函数 结束
- sliderChange(e) {
- let list = this.data.listScroll;//这里是将需要循环的数组赋值给list
- let indexS = Number(e.currentTarget.dataset.index);
- let domain = e.currentTarget.dataset.domain;
- let entity_id = e.currentTarget.dataset.id;
- // 将本地缓存数据渲染到对应修改的案例
- list.forEach(function (value, index, array) {
- if (index == indexS) {
- array[index].state = e.detail.value;
- }
- })
- this.setData({
- listScroll: list
- })
- let data = {
- "entity_id": entity_id,
- "value": e.detail.value,
- }
- this.getService("/services", "/" + domain, "/set_value", "POST", data);
- // 设置两秒(2000毫秒)后的延迟
- // setTimeout(() => {
- // this.getMiotMediaPlayer(this);
- // }, 2000);
- },
- onArrowUp(e) {
- // 在这里处理向上箭头的点击事件
- // 例如,你可以增加文本框的值
- let currentValue = e.currentTarget.dataset.state;
- let newValue = parseInt(currentValue) + 1; // 假设文本框中的是数字
- // this.setData({
- // inputValue: newValue.toString()
- // });
- let list = this.data.listUnit;//这里是将需要循环的数组赋值给list
- let indexS = Number(e.currentTarget.dataset.index)
- let domain = e.currentTarget.dataset.domain;
- let entity_id = e.currentTarget.dataset.id;
- // 将本地缓存数据渲染到对应修改的案例
- list.forEach(function (value, index, array) {
- if (index == indexS) {
- array[index].state = newValue;
- }
- })
- this.setData({
- listUnit: list
- })
- let data = {
- "entity_id": entity_id,
- "value": newValue
- }
- this.getService("/services", "/" + domain, "/set_value", "POST", data);
- },
- // 加湿器
- changeHumidity(e) {
- let list = this.data.listHumidifier;//这里是将需要循环的数组赋值给list
- let indexS = Number(e.currentTarget.dataset.index);
- let domain = e.currentTarget.dataset.domain;
- let entity_id = e.currentTarget.dataset.id;
- // 将本地缓存数据渲染到对应修改的案例
- list.forEach(function (value, index, array) {
- if (index == indexS) {
- array[index].humidity = e.detail;
- }
- })
- this.setData({
- listHumidifier: list
- })
- let data = {
- "entity_id": entity_id,
- "humidity": e.detail
- }
- this.getService("/services", "/" + domain, "/set_humidity", "POST", data);
- },
- //加湿器
- onHumidifierDown(e) {
- var that = this;
- this.setData({
- isClickedOnHumidifierDown: true
- });
- // 在这里处理向下箭头的点击事件
- // 例如,你可以减少文本框的值
- let currentValue = e.currentTarget.dataset.humidity;
- let min = e.currentTarget.dataset.min;
- let max = e.currentTarget.dataset.max;
- let newValue = parseInt(currentValue) - 1; // 假设文本框中的是数字
- if (newValue < min) {
- newValue = min;
- }
- // this.setData({
- // inputValue: newValue.toString()
- // });
- let list = this.data.listHumidifier;//这里是将需要循环的数组赋值给list
- let indexS = Number(e.currentTarget.dataset.index)
- let domain = e.currentTarget.dataset.domain;
- let entity_id = e.currentTarget.dataset.id;
- // 将本地缓存数据渲染到对应修改的案例
- list.forEach(function (value, index, array) {
- if (index == indexS) {
- array[index].humidity = newValue;
- }
- })
- this.setData({
- listHumidifier: list,
- // isButtonPressedHumidityDown:!that.data.isButtonPressedHumidityDown
- })
- let data = {
- "entity_id": entity_id,
- "humidity": newValue
- }
- this.getService("/services", "/" + domain, "/set_humidity", "POST", data);
- },
- //加湿器
- onHumidifierUp(e) {
- var that = this;
- this.setData({
- isClickedOnHumidifierUp: true
- });
- // 在这里处理向上箭头的点击事件
- // 例如,你可以增加文本框的值
- let currentValue = e.currentTarget.dataset.humidity || 0;
- let min = e.currentTarget.dataset.min;
- let max = e.currentTarget.dataset.max;
- let newValue = parseInt(currentValue) + 1; // 假设文本框中的是数字
- if (newValue > max) {
- newValue = max;
- }
- // this.setData({
- // inputValue: newValue.toString()
- // });
- let list = this.data.listHumidifier;//这里是将需要循环的数组赋值给list
- let indexS = Number(e.currentTarget.dataset.index)
- let domain = e.currentTarget.dataset.domain;
- let entity_id = e.currentTarget.dataset.id;
- // 将本地缓存数据渲染到对应修改的案例
- list.forEach(function (value, index, array) {
- if (index == indexS) {
- array[index].humidity = newValue;
- }
- })
- this.setData({
- listHumidifier: list,
- // isButtonPressedHumidityUp:!that.data.isButtonPressedHumidityUp
- })
- let data = {
- "entity_id": entity_id,
- "humidity": newValue
- }
- console.log(e.currentTarget.dataset);
- this.getService("/services", "/" + domain, "/set_humidity", "POST", data);
- },
- //加湿器
- onHumidifierOn(e) {
- let domain = e.currentTarget.dataset.domain;
- let entity_id = e.currentTarget.dataset.id;
- let data = {
- "entity_id": entity_id,
- }
- this.getService("/services", "/" + domain, "/turn_on", "POST", data);
- },
- //加湿器
- onHumidifierOff(e) {
- let domain = e.currentTarget.dataset.domain;
- let entity_id = e.currentTarget.dataset.id;
- let min = e.currentTarget.dataset.min;
- let max = e.currentTarget.dataset.max;
- let data = {
- "entity_id": entity_id,
- }
- this.getService("/services", "/" + domain, "/turn_off", "POST", data);
- },
- // 更改空调的值
- changeClimate(e) {
- var that = this;
- let state = e.currentTarget.dataset.state;
- if (state == "auto") {
- return
- }
- this.setData({
- isClickedOnClimateUp: true
- });
- console.log('that.data.climateMode==' + that.data.climateMode);
- if (!that.data.climateMode) {
- wx.showToast({
- title: '请先选择模式',
- icon: 'none'
- });
- return;
- }
- let currentValue = e.currentTarget.dataset.temperature;
- let fanMode = e.currentTarget.dataset.fanMode;
- let min = e.currentTarget.dataset.min;
- let max = e.currentTarget.dataset.max;
- let domain = e.currentTarget.dataset.domain;
- let entity_id = e.currentTarget.dataset.id;
- let data = {};
- if (that.data.climateMode == 'heat' || that.data.climateMode == 'cool') {
- let newValue = parseInt(currentValue) + 1; // 假设文本框中的是数字
- if (newValue > max) newValue = max;
- let list = this.data.listClimate;//这里是将需要循环的数组赋值给list
- let indexS = Number(e.currentTarget.dataset.index);
- // 将本地缓存数据渲染到对应修改的案例
- list.forEach(function (value, index, array) {
- if (index == indexS) {
- array[index].temperature = e.detail;
- }
- })
- this.setData({
- listClimate: list
- })
- data = {
- "entity_id": entity_id,
- "temperature": e.detail,
- "hvac_mode": that.data.climateMode
- }
- this.getService("/services", "/" + domain, "/set_temperature", "POST", data);
- } else if (that.data.climateMode == 'dry') {
- let newValue = parseInt(currentValue) + 1; // 假设文本框中的是数字
- if (newValue > max) newValue = max;
- data = {
- "entity_id": entity_id,
- "temperature": e.detail,
- "hvac_mode": that.data.climateMode
- }
- this.getService("/services", "/" + domain, "/set_temperature", "POST", data);
- } else if (that.data.climateMode == 'fan_only') {
- let newValue = parseInt(currentValue) + 1; // 假设文本框中的是数字
- if (newValue > max) newValue = max;
- data = {
- "entity_id": entity_id,
- // "fan_mode":(fanMode=='Fan Speed Up')?'Fan Speed Down':'Fan Speed Up',
- "temperature": e.detail,
- "hvac_mode": that.data.climateMode
- }
- this.getService("/services", "/" + domain, "/set_temperature", "POST", data);
- }
- },
- // 更改空调的值
- minusClimate(e) {
- var that = this;
- let state = e.currentTarget.dataset.state;
- if (state == "auto") {
- return
- }
- this.setData({
- isClickedOnClimateUp: true
- });
- console.log('that.data.climateMode==' + that.data.climateMode);
- if (!that.data.climateMode) {
- wx.showToast({
- title: '请先选择模式',
- icon: 'none'
- });
- return;
- }
- let currentValue = e.currentTarget.dataset.temperature;
- let fanMode = e.currentTarget.dataset.fanMode;
- let min = e.currentTarget.dataset.min;
- let max = e.currentTarget.dataset.max;
- let domain = e.currentTarget.dataset.domain;
- let temperature = e.currentTarget.dataset.temperature - 1;
- let entity_id = e.currentTarget.dataset.id;
- let data = {};
- if (that.data.climateMode == 'heat' || that.data.climateMode == 'cool') {
- let newValue = parseInt(currentValue) + 1; // 假设文本框中的是数字
- if (newValue > max) newValue = max;
- let list = this.data.listClimate;//这里是将需要循环的数组赋值给list
- let indexS = Number(e.currentTarget.dataset.index);
- // 将本地缓存数据渲染到对应修改的案例
- list.forEach(function (value, index, array) {
- if (index == indexS) {
- array[index].temperature = temperature;
- }
- })
- this.setData({
- listClimate: list
- })
- data = {
- "entity_id": entity_id,
- "temperature": temperature,
- "hvac_mode": that.data.climateMode
- }
- this.getService("/services", "/" + domain, "/set_temperature", "POST", data);
- } else if (that.data.climateMode == 'dry') {
- let newValue = parseInt(currentValue) + 1; // 假设文本框中的是数字
- if (newValue > max) newValue = max;
- data = {
- "entity_id": entity_id,
- "temperature": temperature,
- "hvac_mode": that.data.climateMode
- }
- this.getService("/services", "/" + domain, "/set_temperature", "POST", data);
- } else if (that.data.climateMode == 'fan_only') {
- let newValue = parseInt(currentValue) + 1; // 假设文本框中的是数字
- if (newValue > max) newValue = max;
- data = {
- "entity_id": entity_id,
- // "fan_mode":(fanMode=='Fan Speed Up')?'Fan Speed Down':'Fan Speed Up',
- "temperature": temperature,
- "hvac_mode": that.data.climateMode
- }
- this.getService("/services", "/" + domain, "/set_temperature", "POST", data);
- }
- },
- // 更改空调的值
- addClimate(e) {
- var that = this;
- let state = e.currentTarget.dataset.state;
- if (state == "auto") {
- return
- }
- this.setData({
- isClickedOnClimateUp: true
- });
- console.log('that.data.climateMode==' + that.data.climateMode);
- if (!that.data.climateMode) {
- wx.showToast({
- title: '请先选择模式',
- icon: 'none'
- });
- return;
- }
- let currentValue = e.currentTarget.dataset.temperature;
- let fanMode = e.currentTarget.dataset.fanMode;
- let min = e.currentTarget.dataset.min;
- let max = e.currentTarget.dataset.max;
- let domain = e.currentTarget.dataset.domain;
- let temperature = e.currentTarget.dataset.temperature + 1;
- let entity_id = e.currentTarget.dataset.id;
- let data = {};
- if (that.data.climateMode == 'heat' || that.data.climateMode == 'cool') {
- let newValue = parseInt(currentValue) + 1; // 假设文本框中的是数字
- if (newValue > max) newValue = max;
- let list = this.data.listClimate;//这里是将需要循环的数组赋值给list
- let indexS = Number(e.currentTarget.dataset.index);
- // 将本地缓存数据渲染到对应修改的案例
- list.forEach(function (value, index, array) {
- if (index == indexS) {
- array[index].temperature = temperature;
- }
- })
- this.setData({
- listClimate: list
- })
- data = {
- "entity_id": entity_id,
- "temperature": temperature,
- "hvac_mode": that.data.climateMode
- }
- this.getService("/services", "/" + domain, "/set_temperature", "POST", data);
- } else if (that.data.climateMode == 'dry') {
- let newValue = parseInt(currentValue) + 1; // 假设文本框中的是数字
- if (newValue > max) newValue = max;
- data = {
- "entity_id": entity_id,
- "temperature": temperature,
- "hvac_mode": that.data.climateMode
- }
- this.getService("/services", "/" + domain, "/set_temperature", "POST", data);
- } else if (that.data.climateMode == 'fan_only') {
- let newValue = parseInt(currentValue) + 1; // 假设文本框中的是数字
- if (newValue > max) newValue = max;
- data = {
- "entity_id": entity_id,
- // "fan_mode":(fanMode=='Fan Speed Up')?'Fan Speed Down':'Fan Speed Up',
- "temperature": temperature,
- "hvac_mode": that.data.climateMode
- }
- this.getService("/services", "/" + domain, "/set_temperature", "POST", data);
- }
- },
- onClimateDown(e) {
- var that = this;
- if (!that.data.climateMode) {
- wx.showToast({
- title: '请先选择模式',
- icon: 'none'
- });
- return;
- }
- console.log('that.data.climateMode==' + that.data.climateMode);
- let currentValue = e.currentTarget.dataset.temperature;
- let fanMode = e.currentTarget.dataset.fanMode;
- // let list = this.data.listClimate;
- // this.setData({
- // inputValue: newValue.toString()
- // });
- let domain = e.currentTarget.dataset.domain;
- let entity_id = e.currentTarget.dataset.id;
- let min = e.currentTarget.dataset.min;
- let max = e.currentTarget.dataset.max;
- // this.setData({
- // isButtonPressedClimateDown: !that.data.isButtonPressedClimateDown
- // })
- // 将本地缓存数据渲染到对应修改的案例
- // list.forEach(function (value,index, array){
- // if (index == indexS) {
- // array[index].temperature = newValue;
- // }
- // })
- // this.setData({
- // listClimate: list
- // })
- let data = {};
- if (that.data.climateMode == 'heat' || that.data.climateMode == 'cool') {
- let newValue = parseInt(currentValue) - 1; // 假设文本框中的是数字
- if (newValue < min) newValue = min;
- let list = this.data.listClimate;//这里是将需要循环的数组赋值给list
- let indexS = Number(e.currentTarget.dataset.index);
- // 将本地缓存数据渲染到对应修改的案例
- list.forEach(function (value, index, array) {
- if (index == indexS) {
- array[index].temperature = newValue;
- }
- })
- this.setData({
- listClimate: list
- })
- console.log('onClimateDown-entity_id=' + entity_id);
- data = {
- "entity_id": entity_id,
- "temperature": newValue,
- "hvac_mode": that.data.climateMode
- }
- this.getService("/services", "/" + domain, "/set_temperature", "POST", data);
- } else if (that.data.climateMode == 'dry') {
- let newValue = parseInt(currentValue) - 1; // 假设文本框中的是数字
- if (newValue < min) newValue = min;
- data = {
- "entity_id": entity_id,
- "temperature": newValue,
- "hvac_mode": that.data.climateMode
- }
- this.getService("/services", "/" + domain, "/set_temperature", "POST", data);
- } else if (that.data.climateMode == 'fan_only') {
- let newValue = parseInt(currentValue) - 1; // 假设文本框中的是数字
- if (newValue < min) newValue = min;
- data = {
- "entity_id": entity_id,
- // "fan_mode":(fanMode=='Fan Speed Up')?'Fan Speed Down':'Fan Speed Up',
- "temperature": newValue,
- "hvac_mode": that.data.climateMode
- }
- this.getService("/services", "/" + domain, "/set_temperature", "POST", data);
- }
- },
- onClimateUp(e) {
- var that = this;
- this.setData({
- isClickedOnClimateUp: true
- });
- console.log('that.data.climateMode==' + that.data.climateMode);
- if (!that.data.climateMode) {
- wx.showToast({
- title: '请先选择模式',
- icon: 'none'
- });
- return;
- }
- let currentValue = e.currentTarget.dataset.temperature;
- let fanMode = e.currentTarget.dataset.fanMode;
- let min = e.currentTarget.dataset.min;
- let max = e.currentTarget.dataset.max;
- // this.setData({
- // inputValue: newValue.toString()
- // });
- // let list = this.data.listClimate;//这里是将需要循环的数组赋值给list
- // let indexS = Number(e.currentTarget.dataset.index)
- let domain = e.currentTarget.dataset.domain;
- let entity_id = e.currentTarget.dataset.id;
- // this.setData({
- // isButtonPressedClimateUp: !that.data.isButtonPressedClimateUp
- // })
- // 将本地缓存数据渲染到对应修改的案例
- // list.forEach(function (value,index, array){
- // if (index == indexS) {
- // array[index].temperature = newValue;
- // }
- // })
- // this.setData({
- // listClimate: list
- // })
- let data = {};
- if (that.data.climateMode == 'heat' || that.data.climateMode == 'cool') {
- let newValue = parseInt(currentValue) + 1; // 假设文本框中的是数字
- if (newValue > max) newValue = max;
- let list = this.data.listClimate;//这里是将需要循环的数组赋值给list
- let indexS = Number(e.currentTarget.dataset.index);
- // 将本地缓存数据渲染到对应修改的案例
- list.forEach(function (value, index, array) {
- if (index == indexS) {
- array[index].temperature = newValue;
- }
- })
- this.setData({
- listClimate: list
- })
- data = {
- "entity_id": entity_id,
- "temperature": newValue,
- "hvac_mode": that.data.climateMode
- }
- this.getService("/services", "/" + domain, "/set_temperature", "POST", data);
- } else if (that.data.climateMode == 'dry') {
- let newValue = parseInt(currentValue) + 1; // 假设文本框中的是数字
- if (newValue > max) newValue = max;
- data = {
- "entity_id": entity_id,
- "temperature": newValue,
- "hvac_mode": that.data.climateMode
- }
- this.getService("/services", "/" + domain, "/set_temperature", "POST", data);
- } else if (that.data.climateMode == 'fan_only') {
- let newValue = parseInt(currentValue) + 1; // 假设文本框中的是数字
- if (newValue > max) newValue = max;
- data = {
- "entity_id": entity_id,
- // "fan_mode":(fanMode=='Fan Speed Up')?'Fan Speed Down':'Fan Speed Up',
- "temperature": newValue,
- "hvac_mode": that.data.climateMode
- }
- this.getService("/services", "/" + domain, "/set_temperature", "POST", data);
- }
- },
- onClimateAuto(e) {
- this.setData({
- isClickedOnClimateAuto: true
- });
- let domain = e.currentTarget.dataset.domain;
- let entity_id = e.currentTarget.dataset.id;
- let list = this.data.listClimate;//这里是将需要循环的数组赋值给list
- let indexS = Number(e.currentTarget.dataset.index);
- // 将本地缓存数据渲染到对应修改的案例
- list.forEach(function (value, index, array) {
- if (index == indexS) {
- array[index].state = newValue;
- }
- })
- this.setData({
- temperatureHumidifyName: '自动',
- climateMode: 'auto',
- listClimate: list
- })
- let data = {
- "entity_id": entity_id,
- "hvac_mode": 'auto',
- }
- this.getService("/services", "/" + domain, "/set_hvac_mode", "POST", data);
- },
- onClimateHeat(e) {
- let domain = e.currentTarget.dataset.domain;
- let entity_id = e.currentTarget.dataset.id;
- let list = this.data.listClimate;//这里是将需要循环的数组赋值给list
- let indexS = Number(e.currentTarget.dataset.index);
- // 将本地缓存数据渲染到对应修改的案例
- list.forEach(function (value, index, array) {
- if (index == indexS) {
- array[index].state = newValue;
- }
- })
- this.setData({
- temperatureHumidifyName: '制热',
- climateMode: 'heat',
- listClimate: list
- })
- let data = {
- "entity_id": entity_id,
- "hvac_mode": 'heat',
- }
- this.getService("/services", "/" + domain, "/set_hvac_mode", "POST", data);
- },
- onClimateCool(e) {
- let domain = e.currentTarget.dataset.domain;
- let entity_id = e.currentTarget.dataset.id;
- let list = this.data.listClimate;//这里是将需要循环的数组赋值给list
- let indexS = Number(e.currentTarget.dataset.index);
- // 将本地缓存数据渲染到对应修改的案例
- list.forEach(function (value, index, array) {
- if (index == indexS) {
- array[index].state = newValue;
- }
- })
- this.setData({
- temperatureHumidifyName: '制冷',
- climateMode: 'cool',
- listClimate: list
- })
- let data = {
- "entity_id": entity_id,
- "hvac_mode": 'cool',
- }
- this.getService("/services", "/" + domain, "/set_hvac_mode", "POST", data);
- },
- onClimateDehumidify(e) {
- let domain = e.currentTarget.dataset.domain;
- let entity_id = e.currentTarget.dataset.id;
- let list = this.data.listClimate;//这里是将需要循环的数组赋值给list
- let indexS = Number(e.currentTarget.dataset.index);
- // 将本地缓存数据渲染到对应修改的案例
- list.forEach(function (value, index, array) {
- if (index == indexS) {
- array[index].state = newValue;
- }
- })
- this.setData({
- temperatureHumidifyName: '除湿',
- climateMode: 'dry',
- listClimate: list
- })
- let data = {
- "entity_id": entity_id,
- "hvac_mode": 'dry',
- }
- this.getService("/services", "/" + domain, "/set_hvac_mode", "POST", data);
- },
- onClimateAirSupply(e) {
- let domain = e.currentTarget.dataset.domain;
- let entity_id = e.currentTarget.dataset.id;
- let list = this.data.listClimate;//这里是将需要循环的数组赋值给list
- let indexS = Number(e.currentTarget.dataset.index);
- // 将本地缓存数据渲染到对应修改的案例
- list.forEach(function (value, index, array) {
- if (index == indexS) {
- array[index].state = newValue;
- }
- })
- this.setData({
- temperatureHumidifyName: '送风',
- climateMode: 'fan_only',
- listClimate: list
- })
- let data = {
- "entity_id": entity_id,
- "hvac_mode": 'fan_only',
- }
- this.getService("/services", "/" + domain, "/set_hvac_mode", "POST", data);
- },
- onClimateOff(e) {
- let state = e.currentTarget.dataset.state;
- if (state == 'off') {
- // 如果是关闭的就开成自动
- this.onClimateAuto(e);
- return
- }
- let domain = e.currentTarget.dataset.domain;
- let entity_id = e.currentTarget.dataset.id;
- let list = this.data.listClimate;//这里是将需要循环的数组赋值给list
- let indexS = Number(e.currentTarget.dataset.index);
- // 将本地缓存数据渲染到对应修改的案例
- list.forEach(function (value, index, array) {
- if (index == indexS) {
- array[index].state = newValue;
- }
- })
- this.setData({
- temperatureHumidifyName: '关闭',
- climateMode: 'off',
- listClimate: list
- })
- let data = {
- "entity_id": entity_id,
- }
- this.getService("/services", "/" + domain, "/turn_off", "POST", data);
- },
- handleInput: function (e) {
- // 这里你需要自己实现歌曲列表和切换逻辑
- // 例如,如果你有一个歌曲列表,你可以通过修改当前播放歌曲的索引来切换歌曲
- // 假设你有一个歌曲列表`songs`和一个当前歌曲索引`currentIndex`
- // if (this.data.currentIndex > 0) {
- // this.data.currentIndex--;
- // // 加载新歌曲并播放
- // this.loadAndPlaySong(this.data.currentIndex);
- // }
- let min = e.currentTarget.dataset.min;
- let max = e.currentTarget.dataset.max;
- if (e.detail.value && (e.detail.value.length > max || e.detail.value.length < min)) {
- wx.showModal({
- title: '提示',
- content: '文本长度介于' + min + '~' + max + '长度之间',
- showCancel: false
- });
- return;
- }
- let domain = e.currentTarget.dataset.domain;
- let entity_id = e.currentTarget.dataset.id;
- let data = {
- "entity_id": entity_id,
- "value": e.detail.value,
- }
- this.getService("/services", "/" + domain, "/set_value", "POST", data);
- },
- onArrowDown(e) {
- // 在这里处理向下箭头的点击事件
- // 例如,你可以减少文本框的值
- let currentValue = e.currentTarget.dataset.state;
- let newValue = parseInt(currentValue) - 1; // 假设文本框中的是数字
- // this.setData({
- // inputValue: newValue.toString()
- // });
- let list = this.data.listUnit;//这里是将需要循环的数组赋值给list
- let indexS = Number(e.currentTarget.dataset.index)
- let domain = e.currentTarget.dataset.domain;
- let entity_id = e.currentTarget.dataset.id;
- // 将本地缓存数据渲染到对应修改的案例
- list.forEach(function (value, index, array) {
- if (index == indexS) {
- array[index].state = newValue;
- }
- })
- this.setData({
- listUnit: list
- })
- let data = {
- "entity_id": entity_id,
- "value": newValue
- }
- this.getService("/services", "/" + domain, "/set_value", "POST", data);
- },
- prevSong: function (e) {
- // 这里你需要自己实现歌曲列表和切换逻辑
- // 例如,如果你有一个歌曲列表,你可以通过修改当前播放歌曲的索引来切换歌曲
- // 假设你有一个歌曲列表`songs`和一个当前歌曲索引`currentIndex`
- // if (this.data.currentIndex > 0) {
- // this.data.currentIndex--;
- // // 加载新歌曲并播放
- // this.loadAndPlaySong(this.data.currentIndex);
- // }
- this.setData({
- isClickedPrevSong: true
- });
- let domain = e.currentTarget.dataset.domain;
- let entity_id = e.currentTarget.dataset.id;
- let data = {
- "entity_id": entity_id,
- }
- this.getService("/services", "/" + domain, "/media_previous_track", "POST", data);
- // setTimeout(() => {
- // this.getMiotMediaPlayer(this);
- // }, 8000);
- },
- tvTurnOn: function (e) {
- let domain = e.currentTarget.dataset.domain;
- let entity_id = e.currentTarget.dataset.id;
- let data = {
- "entity_id": entity_id,
- }
- this.getService("/services", "/" + domain, "/turn_on", "POST", data);
- },
- tvTurnOff: function (e) {
- let domain = e.currentTarget.dataset.domain;
- let entity_id = e.currentTarget.dataset.id;
- let data = {
- "entity_id": entity_id,
- }
- this.getService("/services", "/" + domain, "/turn_off", "POST", data);
- },
- // 切换播放/暂停
- togglePlayPause: function (e) {
- // console.log("this.data.isPlaying="+this.data.isPlaying);
- // if (this.data.isPlaying) {
- // this.innerAudioContext.pause();
- // this.setData({ isPlaying: false });
- // this.getService("/services","/"+domain,"/media_pause","POST",null);
- // } else {
- // this.innerAudioContext.play();
- // this.setData({ isPlaying: true });
- // this.getService("/services","/"+domain,"/media_play","POST",null);
- // }
- // let list = this.data.listMiotMediaPlayer;//这里是将需要循环的数组赋值给list
- this.setData({
- isClickedTogglePlayPause: true
- });
- let indexS = Number(e.currentTarget.dataset.index)
- let domain = e.currentTarget.dataset.domain;
- let entity_id = e.currentTarget.dataset.id;
- let state = e.currentTarget.dataset.state;
- // 将本地缓存数据渲染到对应修改的案例
- // list.forEach(function (value,index, array){
- // if (index == indexS) {
- // array[index].state = (state=='playing'?'idle':'playing');
- // }
- // })
- // this.setData({
- // listMiotMediaPlayer: list
- // })
- let data = {
- "entity_id": entity_id,
- }
- this.getService("/services", "/" + domain, "/media_play_pause", "POST", data);
- // 设置两秒(2000毫秒)后的延迟
- // setTimeout(() => {
- // this.getMiotMediaPlayer(this);
- // }, 8000);
- },
- // 切换下一首歌曲
- nextSong: function (e) {
- // 和prevSong类似,你需要实现歌曲列表和切换逻辑
- // 假设歌曲列表为`songs`,当前歌曲索引为`currentIndex`
- // if (this.data.currentIndex < songs.length - 1) {
- // this.data.currentIndex++;
- // // 加载新歌曲并播放
- // this.loadAndPlaySong(this.data.currentIndex);
- // }
- this.setData({
- isClickedNextSong: true
- });
- let domain = e.currentTarget.dataset.domain;
- let entity_id = e.currentTarget.dataset.id;
- let data = {
- "entity_id": entity_id,
- }
- this.getService("/services", "/" + domain, "/media_next_track", "POST", data);
- // setTimeout(() => {
- // this.getMiotMediaPlayer(this);
- // }, 8000);
- },
- // 加载并播放指定索引的歌曲
- loadAndPlaySong: function (index) {
- // 假设你有一个歌曲列表`songs`,每个歌曲对象有`url`属性表示音频链接
- const song = songs[index];
- this.innerAudioContext.src = song.url;
- this.innerAudioContext.play();
- // 更新当前播放的歌曲信息(例如标题和艺术家)
- this.setData({
- currentSongTitle: song.title,
- currentSongArtist: song.artist
- });
- },
- base64Decode: function (input) {
- const chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';
- let str = '';
- let output = '';
- let chr1, chr2, chr3;
- let enc1, enc2, enc3, enc4;
- let i = 0;
- input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");
- while (i < input.length) {
- enc1 = chars.indexOf(input.charAt(i++));
- enc2 = chars.indexOf(input.charAt(i++));
- enc3 = chars.indexOf(input.charAt(i++));
- enc4 = chars.indexOf(input.charAt(i++));
- chr1 = (enc1 << 2) | (enc2 >> 4);
- chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
- chr3 = ((enc3 & 3) << 6) | enc4;
- str += String.fromCharCode(chr1);
- if (enc3 != 64) {
- str += String.fromCharCode(chr2);
- }
- if (enc4 != 64) {
- str += String.fromCharCode(chr3);
- }
- }
- return str;
- },
- onPickerChange: function (e) {
- // this.setData({
- // selectedIndex: e.detail.value
- // });
- // // 可以在这里处理选中值的变化,比如发送请求等
- // console.log('选中的值是:', this.data.options[e.detail.value].value);
- let list = this.data.listSelect;//这里是将需要循环的数组赋值给list
- let indexS = Number(e.currentTarget.dataset.index)
- let domain = e.currentTarget.dataset.domain;
- let entity_id = e.currentTarget.dataset.id;
- // 将本地缓存数据渲染到对应修改的案例
- list.forEach(function (value, index, array) {
- if (index == indexS) {
- array[index].selectedIndex = e.detail.value;
- }
- })
- this.setData({
- listSelect: list
- })
- let data = {
- "entity_id": entity_id,
- "option": e.detail.value,
- }
- this.getService("/services", "/" + domain, "/select_option", "POST", data);
- },
- getService(services, domain, service, method, data) {
- wx.request({
- url: `${homeApi_https}` + services + domain + service,
- method: method,
- data: data,
- header: {
- 'content-type': 'application/json', // 默认值
- 'Authorization': 'Bearer ' + token // 在头部设置认证信息,例如使用Bearer Token
- },
- success(res) {
- console.log('res.data=====' + JSON.stringify(res.data));
- },
- });
- },
- // 初始化时调用即可
- showCanvasRing() {
- try {
- //作画
- var ctx = wx.createCanvasContext("circleBar", this); //canvas组建封装,需要后加个this
- ctx.clearRect(0, 0, this.data.canvasWidth, this.data.canvasHeight); // 清除画布
- var circle_r = this.data.canvasWidth / 2 - 10; //画布的一半,用来找中心点和半径
- var scoreText = this.data.value; // 当前得分
- var total = this.data.total;// 总分值
- var score = (100 * scoreText) / total; // 满分为100时对应的值
- let that = this;
- //定义起始点
- ctx.translate(this.data.canvasWidth / 2, this.data.canvasWidth / 2 + 5);
- // 白边圆弧
- ctx.beginPath();
- ctx.setStrokeStyle("#FFFFFF");
- ctx.setLineWidth(16);
- ctx.setLineCap("round");
- ctx.arc(0, 0, circle_r - 15, 1 * Math.PI, 0, false);
- ctx.stroke();
- ctx.closePath();
- //灰色圆弧
- ctx.beginPath();
- ctx.setStrokeStyle("#D6E4FF");
- ctx.setLineWidth(12);
- ctx.setLineCap("round"); //线条结束端点样式 butt 平直 round 圆形 square 正方形
- ctx.arc(0, 0, circle_r - 15, 1 * Math.PI, 0, false);
- ctx.stroke();
- ctx.closePath();
- // 蓝色圆弧
- ctx.beginPath();
- ctx.setStrokeStyle("#3366FF");
- ctx.setLineWidth(16);
- ctx.arc(
- 0,
- 0,
- circle_r - 15,
- 1 * Math.PI,
- (score / 100 + 1) * Math.PI,
- false
- );
- ctx.stroke();
- ctx.closePath();
- // 指示器-外层
- let deg = 270 - score * 1.8;
- const xAxis = Math.sin(((2 * Math.PI) / 360) * deg) * (circle_r - 15);
- const yAxis = Math.cos(((2 * Math.PI) / 360) * deg) * (circle_r - 15);
- ctx.beginPath();
- ctx.arc(xAxis, yAxis, 11, 0, 2 * Math.PI);
- ctx.setFillStyle("#FFFFFF");
- ctx.fill();
- // 指示器-内层
- const xAxis2 = Math.sin(((2 * Math.PI) / 360) * deg) * (circle_r - 15);
- const yAxis2 = Math.cos(((2 * Math.PI) / 360) * deg) * (circle_r - 15); // circle_r - 10
- ctx.beginPath();
- ctx.arc(xAxis2, yAxis2, 6, 0, 2 * Math.PI);
- ctx.setFillStyle("#3366FF");
- ctx.fill();
- // 文字-总得分
- ctx.setTextAlign("center"); // 字体位置
- ctx.setFillStyle("#333333");
- ctx.font = "normal normal 16px Arial,sans-serif";
- ctx.fillText("总得分", 0, -30);
- // 文字-具体分数
- ctx.setTextAlign("center"); // 字体位置
- ctx.setFillStyle("#000000");
- ctx.font = "normal bold 36px Arial,sans-serif";
- ctx.fillText(scoreText, 0, 13);
- // 最低分
- ctx.setFillStyle("#666666");
- ctx.font = "normal normal 13px Arial,sans-serif";
- ctx.fillText(0, -circle_r + 10, 25);
- // 最高分
- ctx.setFillStyle("#666666");
- ctx.font = "normal normal 13px Arial,sans-serif";
- ctx.fillText(total, circle_r - 15, 25);
- // 绘图
- ctx.draw(false, function () {
- //将生成好的图片保存到本地
- wx.canvasToTempFilePath(
- {
- canvasId: "circleBar",
- success: function (res) {
- var tempFilePath = res.tempFilePath;
- that.setData({
- loadImagePath: tempFilePath,
- });
- },
- fail: function (res) { },
- },
- );
- });
- } catch (error) {
- }
- },
- getHAData(that, hotelcode, roomcode) {
- let start = Date.now(); // 获取当前时间(毫秒)
- // console.log('start=='+start);
- wx.request({
- url: `${aipushApi}/getha`, //
- method: 'POST',
- // header: {
- // 'content-type': 'application/json', // 默认值
- // 'Authorization': 'Bearer ' + token // 在头部设置认证信息,例如使用Bearer Token
- // },
- data: {
- "locations": hotelcode, "room": (hotelcode && hotelcode.includes('hotel')) ? roomcode : "", "token": token_push
- },
- success(ress) {
- if (!ress || !ress.data) {
- console.error("getha(),没有获取到数据");
- return;
- }
- var resData = ress.data
- console.log("resData-==" + JSON.stringify(resData));
- console.log("resData.loc-==" + JSON.stringify(resData.loc));
- homeApi_https = resData.loc + "/api";
- homeApiLater_https = resData.loc;
- token = resData.token;
- // console.log('res.data='+JSON.stringify(resData));
- if (ress.data.code == "400") {
- console.error("400错误!");
- return;
- }
- if (ress.data.code == "401") {
- console.error("401错误!");
- return;
- }
- try {
- //获取HA 设备状态数据
- // wx.request({
- // url: `${homeApi_https}/states`, //获取空气数据
- // method: 'GET',
- // header: {
- // 'content-type': 'application/json', // 默认值
- // 'Authorization': 'Bearer ' + token // 在头部设置认证信息,例如使用Bearer Token
- // },
- // success(res) {
- // if(!res || !res.data){
- // return;
- // }
- // var resData = res.data
- // // console.log('res.data='+JSON.stringify(resData));
- // if (res.data.code == "400") {
- // console.error("400错误!");
- // return;
- // }
- // if (res.data.code == "401") {
- // console.error("401错误 --- 请检查你的API或Key是否正确!");
- // return;
- // }
- // try {
- // const {
- // now
- // } = res.data;
- // console.log('res.data1='+JSON.stringify(resData));
- // res.data.find(function (obj) {
- // console.log('obj='+obj);
- // })
- // res.data.forEach((item, index) => {
- // console.log(index, item);
- // });
- var listCoverTemp = [];
- var listSwitchTemp = [];
- var listScrollTemp = [];
- var listUnitTemp = [];
- var listConversationTemp = [];
- var listConversation1Temp = [];
- var listHumidityTemp = [];
- var listButtonTemp = [];
- var listSelectTemp = [];
- var listClimateTemp = [];
- var listMiotMediaPlayerTemp = [];
- var listMitvMediaPlayerTemp = [];
- var listHumidifierTemp = [];
- var listSensorTemp = [];
- var listTextTemp = [];
- var tvEntityIdTemp = '';
- var tvEntityIdsTemp = [];
- var listAromatherapyMachineTemp = [];
- var modelList1 = [];
- var modelList2 = [];
- var modelList3 = [];
- var climateModeTemp = '';
- var temperatureHumidifyNameTemp = '温度';
- var humidityValueTemp = 0;
- var humidityMaxTemp = 0;
- var humidityMinTemp = 0;
- var entityIdList = [];
- const res = wx.getStorageSync('res');
- const home_room = wx.getStorageSync('res').home_room;
- // console.log('entity=====@==='+entity);
- wx.request({
- url: `${homeApi_https}/aidsleep/entity`, //获取空气数据
- method: 'POST',
- header: {
- 'content-type': 'application/json', // 默认值
- 'Authorization': 'Bearer ' + token // 在头部设置认证信息,例如使用Bearer Token
- },
- //
- data: {
- "template": "{{ label_entities('" + (entity) + "') }}"
- },
- success(resTemplate) {
- let mid = Date.now(); // 再次获取当前时间(毫秒)
- // console.log('mid=='+mid);
- if (!resTemplate || !resTemplate.data) {
- console.log('no data:' + mid);
- return;
- }
- let resData = resTemplate.data;
- // resData = resData.filter(item1 => {
- // return JSON.parse(that.replaceAll(resTemplate.data,'\'','\"')).find(item2 => item2 === item1.entity_id) !== undefined;
- // });
- // console.log('entityIdList-resTemplate====='+JSON.stringify(resTemplate.data));
- for (let i = 0; i < resData.length; i++) {
- // if(resTemplate.data.includes(resData[i].entity_id) && that.checkFuzzyMatch(resData[i])){
- var obj = {};
- obj.entity_id = resData[i].entity_id;//实体ID
- obj.parent_entity_id = resData[i].parent_entity_id;//父实体ID
- //api/services/<domain>/<service>
- if (resData[i].entity_id) {
- obj.domain = resData[i].entity_id.split(".")[0];
- }
- obj.state = (resData[i].state == 'unknown' ? "未知" : resData[i].state);
- if (resData[i].attributes && resData[i].attributes.friendly_name) {
- obj.friendly_name = resData[i].attributes.friendly_name; //设备名称
- if (obj.friendly_name.includes("灯带") || obj.friendly_name.includes("吸顶灯")) {
- obj.imgSrc = '/static/icons/ic_dd_1.svg';
- obj.selectedImgSrc = '/static/icons/ic_dd_2.svg';
- obj.bg = 'background: linear-gradient(180deg, #DFFFFB 0%, #FFFFFF 53%)';
- } else if (obj.friendly_name.includes("走廊灯")) {
- obj.imgSrc = '/static/icons/ic_zld_1.svg';
- obj.selectedImgSrc = '/static/icons/ic_zld_2.svg';
- obj.bg = 'background: linear-gradient(180deg, #FFEEFA 0%, #FFFFFF 50%)';
- } else if (obj.friendly_name.includes("筒灯")) {
- obj.imgSrc = '/static/icons/ic_td_1.svg';
- obj.selectedImgSrc = '/static/icons/ic_td_2.svg';
- obj.bg = 'background: linear-gradient(180deg, #EBF0FF 0%, #FFFFFF 50%)';
- } else if (obj.friendly_name.includes("主灯")) {
- obj.imgSrc = '/static/icons/ic_zd_1.svg';
- obj.selectedImgSrc = '/static/icons/ic_zd_2.svg';
- obj.bg = 'background: linear-gradient(180deg, #EFE7FF 0%, #FFFFFF 50%)';
- } else if (obj.friendly_name.includes("气扇")) {
- obj.imgSrc = '/static/icons/ic_pqs_1.svg';
- obj.selectedImgSrc = '/static/icons/ic_pqs_2.svg';
- obj.bg = 'background: linear-gradient(180deg, #E3FFE6 0%, #FFFFFF 53%)';
- } else if (obj.friendly_name.includes("电视")) {
- obj.imgSrc = '/static/icons/ic_ds_1.svg';
- obj.selectedImgSrc = '/static/icons/ic_ds_1.svg';
- obj.bg = 'background: linear-gradient(180deg, #FFF2DF 0%, #FFFFFF 53%)';
- } else if (obj.friendly_name.includes("空气净化器")) {
- obj.imgSrc = '/static/icons/ic_kqjhq_1.svg';
- obj.selectedImgSrc = '/static/icons/ic_kqjhq_2.svg';
- obj.bg = 'background: linear-gradient(180deg, #EBFAFF 0%, #FFFFFF 50%)';
- } else if (obj.friendly_name.includes("香薰机雾化")) {
- obj.imgSrc = '/static/icons/ic_xxjwh.svg';
- obj.selectedImgSrc = '/static/icons/ic_xxjwh.svg';
- } else if (obj.friendly_name.endsWith('香薰机') || obj.friendly_name.endsWith('香薰机开关')) {
- obj.imgSrc = '/static/icons/ic_xxj.svg';
- obj.selectedImgSrc = '/static/icons/ic_xxj.svg';
- } else if (obj.friendly_name.includes("灯")) {
- obj.imgSrc = '/static/icons/ic_dd_1.svg';
- obj.selectedImgSrc = '/static/icons/ic_dd_2.svg';
- obj.bg = 'background: linear-gradient(180deg, #DFFFFB 0%, #FFFFFF 53%)';
- } else {
- obj.imgSrc = '/static/icons/ic_ds_1.svg';
- obj.selectedImgSrc = '/static/icons/ic_ds_1.svg';
- obj.bg = 'background: linear-gradient(180deg, #FFF2DF 0%, #FFFFFF 53%)';
- }
- }
- if (resData[i].attributes && resData[i].attributes.home_room) {
- obj.home_room = resData[i].attributes.home_room.split(' ')[1]; //房间号
- }
- if (resData[i].state && that.checkFuzzyMatch(resData[i])
- ) {
- if (resData[i].state == 'on') {
- obj.service = 'turn_on';
- } else if (resData[i].state == 'off') {
- obj.service = 'turn_off';
- }
- //截取字符串,防止开关设备名称过长
- obj.friendly_name = that.truncateString(resData[i].attributes.friendly_name, roomcode);
- //是否 是香薰机灯光
- obj.isAromlight = obj.friendly_name.includes('香薰机灯光')
- obj.isAromAtomization = obj.friendly_name.includes('香薰机雾化')
- obj.isAromatherapy = obj.friendly_name.endsWith('香薰机') || obj.friendly_name.endsWith('香薰机开关')
- if (obj.entity_id && obj.state && checkState(obj.state) && obj.friendly_name && obj.domain && obj.domain != 'automation' && !obj.isAromlight && !obj.isAromAtomization && !obj.isAromatherapy) {
- listSwitchTemp.push(obj)
- } else if ((obj.isAromlight || obj.isAromAtomization || obj.isAromatherapy) && checkState(obj.state)) {
- listAromatherapyMachineTemp.push(obj)
- }
- }
- if ((resData[i].state && obj.domain && obj.domain == 'cover') && that.checkFuzzyMatch(resData[i])
- ) {
- obj.current_position = resData[i].attributes.current_position;
- obj.target_position = resData[i].attributes.target_position;
- obj.friendly_name = that.truncateString(resData[i].attributes.friendly_name, roomcode);
- if (obj.entity_id && obj.state && checkState(obj.state) && obj.friendly_name && obj.domain) {
- listCoverTemp.push(obj)
- }
- }
- // if((resData[i].state && obj.domain && obj.domain=='number')||
- // (resData[i].state && obj.domain && obj.domain=='number' && resData[i].attributes && resData[i].attributes.parent_entity_id && entityIdList && entityIdList.includes(resData[i].attributes.parent_entity_id)
- // )
- // ){
- // obj.min = resData[i].attributes.min;
- // obj.max = resData[i].attributes.max;
- // obj.step = resData[i].attributes.step;
- // obj.friendly_name = that.truncateString(resData[i].attributes.friendly_name,roomcode);
- // if(resData[i].state!='unknown'){
- // obj.unit_of_measurement = resData[i].attributes.unit_of_measurement;
- // }
- // if((resData[i].attributes.min || resData[i].attributes.max) && resData[i].attributes.unit_of_measurement!='rgb' && resData[i].attributes.unit_of_measurement!='minutes'){
- // if(obj.entity_id && obj.state && obj.friendly_name && obj.domain){
- // listScrollTemp.push(obj);
- // }
- // }else if((resData[i].attributes.min || resData[i].attributes.max) && (resData[i].attributes.unit_of_measurement=='rgb' || resData[i].attributes.unit_of_measurement=='minutes')){
- // if(resData[i].state!='unknown'){
- // obj.unit_of_measurement = resData[i].attributes.unit_of_measurement;
- // }
- // if(obj.entity_id && obj.state && obj.friendly_name && obj.domain){
- // listUnitTemp.push(obj);
- // }
- // }
- // }
- // if((resData[i].state && obj.domain && obj.domain=='button')||
- // (resData[i].state && obj.domain && obj.domain=='button' && resData[i].attributes && resData[i].attributes.parent_entity_id && entityIdList && entityIdList.includes(resData[i].attributes.parent_entity_id)
- // )
- // ){
- // obj.friendly_name = that.truncateString(resData[i].attributes.friendly_name,roomcode);
- // if(obj.entity_id && obj.state && obj.friendly_name && obj.domain){
- // listButtonTemp.push(obj);
- // }
- // }
- // if((resData[i].state && obj.domain && obj.domain=='select')||
- // (resData[i].state && obj.domain && obj.domain=='select' && resData[i].attributes && resData[i].attributes.parent_entity_id && entityIdList && entityIdList.includes(resData[i].attributes.parent_entity_id)
- // )
- // ){
- // obj.friendly_name = that.truncateString(resData[i].attributes.friendly_name,roomcode);
- // obj.options = resData[i].attributes.options;
- // obj.selectedIndex = 0;
- // if(obj.entity_id && obj.state && obj.friendly_name && obj.domain){
- // listSelectTemp.push(obj);
- // }
- // }
- if ((resData[i].state && obj.domain && obj.domain == 'climate' && resData[i].attributes.entity_class == 'MiirClimateEntity')
- ) {
- climateModeTemp = obj.state;
- obj.temperature = resData[i].attributes.temperature;
- obj.min_temp = resData[i].attributes.min_temp;
- obj.max_temp = resData[i].attributes.max_temp;
- obj.hvac_modes = resData[i].attributes.hvac_modes;
- obj.fan_modes = resData[i].attributes.fan_modes;
- obj.fan_mode = resData[i].attributes.fan_mode;
- obj.target_temp_step = resData[i].attributes.target_temp_step;
- if (obj.state == 'auto') {
- temperatureHumidifyNameTemp = '自动';
- }
- if (obj.state == 'heat') {
- temperatureHumidifyNameTemp = '制热';
- }
- if (obj.state == 'cool') {
- temperatureHumidifyNameTemp = '制冷';
- }
- if (obj.state == 'dry') {
- temperatureHumidifyNameTemp = '除湿';
- }
- if (obj.state == 'fan_only') {
- temperatureHumidifyNameTemp = '送风';
- }
- if (obj.state == 'off') {
- temperatureHumidifyNameTemp = '关闭';
- }
- if (obj.entity_id && obj.state && obj.friendly_name && obj.domain) {
- listClimateTemp.push(obj);
- }
- }
- if ((resData[i].state && obj.domain && obj.domain == 'media_player' && resData[i].attributes.entity_class == 'MiotMediaPlayerEntity') && that.checkFuzzyMatch(resData[i])
- ) {
- // obj["speaker.volume"] = resData[i].attribute["speaker.volume"];
- obj.repeat = resData[i].attributes.repeat;
- obj.entity_picture = resData[i].attributes.entity_picture ? "background-image: url('" + `${homeApiLater_https}` + resData[i].attributes.entity_picture + "');width: 100%; height: 100%;background-size: cover;background-repeat: no-repeat;background-position: center;" : "background: radial-gradient(circle at center, #ff0000, #0000ff);border-radius: 30rpx;";
- obj.media_title = resData[i].attributes.media_title;
- obj.media_artist = resData[i].attributes.media_artist;
- obj.volume_level = resData[i].attributes.volume_level ? (resData[i].attributes.volume_level * 100) : 0;
- obj.media_duration = resData[i].attributes.media_duration;
- obj.media_position = resData[i].attributes.media_position;
- obj.media_late = resData[i].attributes.media_position + '/' + resData[i].attributes.media_duration;
- // obj.microphone.mute = resData[i].attributes.microphone.mute;
- // obj.speaker.mute = resData[i].attributes.speaker.mute;
- // console.log('media-player-miot-obj=='+obj);
- if (obj.entity_id && obj.state && checkState(obj.state) && obj.friendly_name && obj.domain) {
- listMiotMediaPlayerTemp.push(obj);
- }
- }
- // if((resData[i].state && obj.domain && obj.domain=='media_player' && resData[i].attributes.entity_class=='MitvMediaPlayerEntity')||
- // (resData[i].state && obj.domain && obj.domain=='media_player' && resData[i].attributes.entity_class=='MitvMediaPlayerEntity' && resData[i].attributes && resData[i].attributes.parent_entity_id && entityIdList && entityIdList.includes(resData[i].attributes.parent_entity_id)
- // )
- // ){
- // obj.volume_level = resData[i].attributes.volume_level;
- // obj.is_volume_muted = resData[i].attributes.is_volume_muted;
- // obj.source = resData[i].attributes.source;
- // obj.entity_picture = resData[i].attributes.entity_picture?"background-image: url('"+`${homeApiLater_https}`+resData[i].attributes.entity_picture+"');width: 100%; height: 100%;background-size: cover;background-repeat: no-repeat;background-position: center;":"background: radial-gradient(circle at center, #ff0000, #0000ff);border-radius: 30rpx;";
- // obj.media_title = resData[i].attributes.media_title;
- // obj.media_artist = resData[i].attributes.media_artist;
- // obj.volume_level = resData[i].attributes.volume_level?(resData[i].attributes.volume_level * 100):0;
- // obj.media_duration = resData[i].attributes.media_duration;
- // obj.media_position = resData[i].attributes.media_position;
- // if(obj.entity_id && obj.state && obj.friendly_name && obj.domain){
- // listMitvMediaPlayerTemp.push(obj);
- // }
- // }
- if ((resData[i].state && obj.domain && obj.domain == 'media_player') && that.checkFuzzyMatch(resData[i])
- ) {
- obj.friendly_name = that.truncateString(resData[i].attributes.friendly_name, roomcode);
- if (obj.entity_id.includes('teevee') || (obj.entity_id.includes('media_player') && obj.entity_id.includes('tv_dlna_') && obj.friendly_name && obj.friendly_name.includes('电视'))) {
- obj.volume_level = resData[i].attributes.volume_level;
- obj.is_volume_muted = resData[i].attributes.is_volume_muted;
- obj.source = resData[i].attributes.source;
- obj.entity_picture = resData[i].attributes.entity_picture ? "background-image: url('" + `${homeApiLater_https}` + resData[i].attributes.entity_picture + "');width: 100%; height: 100%;background-size: cover;background-repeat: no-repeat;background-position: center;" : "background: radial-gradient(circle at center, #ff0000, #0000ff);border-radius: 30rpx;";
- obj.media_title = resData[i].attributes.media_title;
- obj.media_artist = resData[i].attributes.media_artist;
- obj.volume_level = resData[i].attributes.volume_level ? (resData[i].attributes.volume_level * 100) : 0;
- obj.media_duration = resData[i].attributes.media_duration;
- obj.media_position = resData[i].attributes.media_position;
- obj.media_late = resData[i].attributes.media_position + '/' + resData[i].attributes.media_duration;
- // obj["speaker.volume"] = resData[i].attributes["speaker.volume"];
- // console.log('media-player-mitv-obj=='+obj);
- obj.device_class = resData[i].attributes.device_class;
- obj.app_id = resData[i].attributes.app_id;
- obj.app_name = resData[i].attributes.app_name;
- if (obj.entity_id && obj.state && checkState(obj.state) && obj.friendly_name && obj.domain) {
- listMitvMediaPlayerTemp.push(obj);
- }
- obj.friendly_name1 = resData[i].attributes.friendly_name;
- tvEntityIdsTemp.push(obj);
- // let obj1 = {};
- // obj1.entity_id = obj.entity_id;
- // obj1.friendly_name1 = resData[i].attributes.friendly_name;
- // tvEntityIdsTemp.push(obj1);
- tvEntityIdTemp = obj.entity_id;
- // console.log('obj===='+obj);
- // console.log('tvEntityIdTemp='+tvEntityIdTemp);
- wx.setStorageSync('tvEntityId', tvEntityIdTemp);
- }
- }
- if ((resData[i].state && obj.domain && obj.domain == 'humidifier')
- ) {
- // 加湿器
- obj.min_humidity = resData[i].attributes.min_humidity;
- obj.max_humidity = resData[i].attributes.max_humidity;
- obj.humidity = resData[i].attributes.humidity;
- obj.min = obj.min_humidity;
- obj.max = obj.max_humidity;
- humidityValueTemp = obj.humidity;
- humidityMaxTemp = obj.max;
- humidityMinTemp = obj.min;
- // console.log('humidifier-obj=='+JSON.stringify(obj));
- if (obj.entity_id && obj.state && checkState(obj.state) && obj.friendly_name && obj.domain) {
- listHumidifierTemp.push(obj);
- }
- }
- if ((resData[i].state && obj.domain && obj.domain == 'automation')) {
- console.log("", resData[i].attributes.friendly_name);
- if (resData[i].attributes.friendly_name.endsWith('起床模式')) {
- modelList1.push(obj)
- } else if (resData[i].attributes.friendly_name.endsWith('观影模式')) {
- modelList2.push(obj)
- } else if (resData[i].attributes.friendly_name.endsWith('睡眠模式')) {
- modelList3.push(obj)
- }
- }
- // if((resData[i].state && obj.domain && obj.domain=='sensor')||
- // (resData[i].state && obj.domain && obj.domain=='sensor' && resData[i].attributes && resData[i].attributes.parent_entity_id && entityIdList && entityIdList.includes(resData[i].attributes.parent_entity_id)
- // )
- // ){
- // obj.friendly_name = that.truncateString(resData[i].attributes.friendly_name,roomcode);
- // obj.unit_of_measurement = resData[i].attributes.unit_of_measurement;
- // if(obj.entity_id && obj.state && obj.friendly_name && obj.domain){
- // listSensorTemp.push(obj);
- // }
- // }
- // if((resData[i].state && obj.domain && obj.domain=='text')||
- // (resData[i].state && obj.domain && obj.domain=='text' && resData[i].attributes && resData[i].attributes.parent_entity_id && entityIdList && entityIdList.includes(resData[i].attributes.parent_entity_id)
- // )
- // ){
- // obj.friendly_name = that.truncateString(resData[i].attributes.friendly_name,roomcode);
- // obj.min = resData[i].attributes.min;
- // obj.max = resData[i].attributes.max;
- // if(obj.entity_id && obj.state && obj.friendly_name && obj.domain){
- // listTextTemp.push(obj);
- // }
- // }
- // if((resData[i].state && obj.friendly_name && obj.friendly_name.includes("智能音箱"))
- // || (resData[i].state && resData[i].attributes && resData[i].attributes.parent_entity_id && entityIdList && entityIdList.includes(resData[i].attributes.parent_entity_id)
- // && obj.friendly_name && obj.friendly_name.includes("智能音箱"))
- // ){
- // if(obj.entity_id && obj.state && obj.friendly_name && obj.domain){
- // listConversationTemp.push(obj)
- // }
- // }
- // if((resData[i].state && resData[i].attributes && resData[i].attributes.speaker && resData[i].attributes.speaker.volume && obj.friendly_name && obj.friendly_name.includes("智能音箱"))||
- // (resData[i].state && resData[i].attributes && resData[i].attributes.parent_entity_id && entityIdList && entityIdList.includes(resData[i].attributes.parent_entity_id)
- // && resData[i].attributes.speaker && resData[i].attributes.speaker.volume && obj.friendly_name && obj.friendly_name.includes("智能音箱"))
- // ){
- // obj.volume = resData[i].attributes.speaker.volume;//音量
- // if(obj.entity_id && obj.state && obj.friendly_name && obj.domain){
- // listConversation1Temp.push(obj)
- // }
- // }
- //加湿器单独拿出来
- // if((obj.friendly_name && obj.friendly_name.includes("加湿器"))||
- // (resData[i].attributes && resData[i].attributes.parent_entity_id && entityIdList && entityIdList.includes(resData[i].attributes.parent_entity_id)
- // && obj.friendly_name && obj.friendly_name.includes("加湿器"))
- // ){
- // listHumidityTemp.push(obj)
- // }
- // }
- }
- listSwitchTemp = that.checkTVList(listSwitchTemp);
- that.setData({
- // status_beep: that.getEntityState(res.data,'switch.xiaomi_pro3_02bd_left_switch_service'), //实验室主灯
- // status_led: that.getEntityState(res.data,'light.deerma_jsq2g_392f_indicator_light'), //加湿器 Indicator Light
- // status_san: that.getEntityState(res.data,'switch.xwhzp_xwxfj_a441_diffuser'), //香薰机 Diffuser
- // status_curtain: that.getEntityState(res.data,'switch.xiaomi_pro3_02bd_middle_switch_service'), //实验室侧灯
- // status_door: that.getEntityState(res.data,'remote.xiaomi_lx06_f593_wifispeaker_4'), //智能音箱
- // Temp: that.getEntityStateValue(res.data,'sensor.deerma_jsq2g_392f_temperature'), //加湿器温度
- // Humi: that.getEntityStateValue(res.data,'sensor.deerma_jsq2g_392f_relative_humidity'), //加湿器湿度
- // Light: that.getEntityStateValue(res.data,'number.xwhzp_xwxfj_a441_brightness'), //香薰机亮度
- // LiquidLevel: that.getEntityStateValue(res.data,'sensor.xwhzp_xwxfj_a441_fragrance_liquid_left_level'), //香薰液浓度
- modelList1,
- modelList2,
- modelList3,
- listSwitch: listSwitchTemp,
- listUnit: listUnitTemp,
- listScroll: listScrollTemp,
- listConversation: listConversationTemp,
- listConversation1: listConversation1Temp,
- listHumidity: listHumidityTemp,
- listButton: listButtonTemp,
- listSelect: listSelectTemp,
- listClimate: listClimateTemp,
- listMiotMediaPlayer: listMiotMediaPlayerTemp,
- listMitvMediaPlayer: listMitvMediaPlayerTemp,
- listHumidifier: listHumidifierTemp,
- listSensor: listSensorTemp,
- listText: listTextTemp,
- tvEntityId: tvEntityIdTemp,
- tvEntityIds: tvEntityIdsTemp,
- climateMode: climateModeTemp,
- temperatureHumidifyName: temperatureHumidifyNameTemp,
- listCover: listCoverTemp,
- listAromatherapyMachine: listAromatherapyMachineTemp,
- // ecHumidifier: {
- // onInit: that.initChartHumidifier
- // },
- sliderValueHumidifier: ''
- })
- if (listHumidifierTemp.length && humidityValue != humidityValueTemp) {
- humidityValue = humidityValueTemp;
- humidityMin = humidityMinTemp;
- humidityMax = humidityMaxTemp;
- that.checkHumidityMarginLeft()
- that.initChartHumidifier();
- }
- wx.setStorageSync('tvEntityIds', tvEntityIdsTemp);
- // console.log('listMiotMediaPlayerTemp='+JSON.stringify(listMiotMediaPlayerTemp));
- // console.log('listHumidityTemp='+JSON.stringify(listHumidityTemp));
- // console.log('listClimateTemp='+JSON.stringify(listClimateTemp));
- // console.log('listSwitchTemp='+JSON.stringify(listSwitchTemp));
- console.log('tvEntityIdsTemp=' + JSON.stringify(tvEntityIdsTemp));
- // console.log('listMitvMediaPlayerTemp='+JSON.stringify(listMitvMediaPlayerTemp));
- console.log('listHumidifierTemp=' + JSON.stringify(listHumidifierTemp));
- },
- });
- // } catch (error) {
- // console.error(error);
- // }
- // },
- // });
- } catch (error) {
- console.error(error);
- }
- },
- fail: function (error) {
- console.error('error', error);
- that.setData({
- isLoading: false,
- });
- }
- });
- let end = Date.now(); // 再次获取当前时间(毫秒)
- // console.log('end=='+end);
- let executionTime = end - start;
- // console.log(`myFunctionToTest 执行时间为: ${executionTime} 毫秒`);
- return true;
- },
- getHADataStart(that, hotelcode, roomcode) {
- let start = Date.now(); // 获取当前时间(毫秒)
- console.log('start==' + start);
- var that = this;
- wx.request({
- url: `${aipushApi}/getha`, //
- method: 'POST',
- // header: {
- // 'content-type': 'application/json', // 默认值
- // 'Authorization': 'Bearer ' + token // 在头部设置认证信息,例如使用Bearer Token
- // },
- data: {
- "locations": hotelcode, "room": (hotelcode && hotelcode.includes('hotel')) ? roomcode : "", "token": token_push
- },
- success(ress) {
- if (!ress || !ress.data) {
- console.error("getha(),没有获取到数据");
- return;
- }
- var resData = ress.data
- console.log("resData-==" + JSON.stringify(resData));
- console.log("resData.loc-==" + JSON.stringify(resData.loc));
- homeApi_https = resData.loc + "/api";
- homeApiLater_https = resData.loc;
- token = resData.token;
- // console.log('res.data='+JSON.stringify(resData));
- if (ress.data.code == "400") {
- console.error("400错误!");
- return;
- }
- if (ress.data.code == "401") {
- console.error("401错误!");
- return;
- }
- try {
- //获取HA 设备状态数据
- // wx.request({
- // url: `${homeApi_https}/states`,
- // method: 'GET',
- // header: {
- // 'content-type': 'application/json', // 默认值
- // 'Authorization': 'Bearer ' + token // 在头部设置认证信息,例如使用Bearer Token
- // },
- // success(res) {
- // if(!res || !res.data){
- // that.setData({
- // isLoading: false,
- // });
- // return;
- // }
- // var resData = res.data
- // // console.log('res.data='+JSON.stringify(resData));
- // if (res.data.code == "400") {
- // console.error("400错误!");
- // return;
- // }
- // if (res.data.code == "401") {
- // console.error("401错误 --- 请检查你的API或Key是否正确!");
- // return;
- // }
- // try {
- // const {
- // now
- // } = res.data;
- // console.log('res.data1='+JSON.stringify(resData));
- // res.data.find(function (obj) {
- // console.log('obj='+obj);
- // })
- // res.data.forEach((item, index) => {
- // console.log(index, item);
- // });
- var listCoverTemp = [];
- var listSwitchTemp = [];
- var listScrollTemp = [];
- var listUnitTemp = [];
- var listConversationTemp = [];
- var listConversation1Temp = [];
- var listHumidityTemp = [];
- var listButtonTemp = [];
- var listSelectTemp = [];
- var listClimateTemp = [];
- var listMiotMediaPlayerTemp = [];
- var listMitvMediaPlayerTemp = [];
- var listHumidifierTemp = [];
- var listSensorTemp = [];
- var listTextTemp = [];
- var tvEntityIdTemp = '';
- var tvEntityIdsTemp = [];
- var listAromatherapyMachineTemp = [];
- var humidityValueTemp = 0;
- var humidityMaxTemp = 0;
- var humidityMinTemp = 0;
- var climateModeTemp = '';
- var temperatureHumidifyNameTemp = '温度';
- var modelList1 = [];
- var modelList2 = [];
- var modelList3 = [];
- var entityIdList = [];
- const res = wx.getStorageSync('res');
- const home_room = wx.getStorageSync('res').home_room;
- // console.log('entity=====@==='+entity);
- wx.request({
- url: `${homeApi_https}/aidsleep/entity`, //获取空气数据
- method: 'POST',
- header: {
- 'content-type': 'application/json', // 默认值
- 'Authorization': 'Bearer ' + token // 在头部设置认证信息,例如使用Bearer Token
- },
- //
- data: {
- "template": "{{ label_entities('" + (entity) + "') }}"
- },
- success(resTemplate) {
- let mid = Date.now(); // 再次获取当前时间(毫秒)
- // console.log('mid=='+mid);
- if (!resTemplate || !resTemplate.data) {
- console.log('no data:' + mid);
- return;
- }
- let resData = resTemplate.data;
- // resData = resData.filter(item1 => {
- // return JSON.parse(that.replaceAll(resTemplate.data,'\'','\"')).find(item2 => item2 === item1.entity_id) !== undefined;
- // });
- console.log("resData-union=" + JSON.stringify(resData));
- // console.log('entityIdList-resTemplate====='+JSON.stringify(resTemplate.data));
- for (let i = 0; i < resData.length; i++) {
- // if(resTemplate.data.includes(resData[i].entity_id) && that.checkFuzzyMatch(resData[i])){
- var obj = {};
- obj.entity_id = resData[i].entity_id;//实体ID
- obj.parent_entity_id = resData[i].parent_entity_id;//父实体ID
- //api/services/<domain>/<service>
- if (resData[i].entity_id) {
- obj.domain = resData[i].entity_id.split(".")[0];
- }
- obj.state = (resData[i].state == 'unknown' ? "未知" : resData[i].state);
- if (resData[i].attributes && resData[i].attributes.friendly_name) {
- obj.friendly_name = that.truncateString(resData[i].attributes.friendly_name, roomcode); //设备名称
- if (obj.friendly_name.includes("灯带") || obj.friendly_name.includes("吸顶灯")) {
- obj.imgSrc = '/static/icons/ic_dd_1.svg';
- obj.selectedImgSrc = '/static/icons/ic_dd_2.svg';
- obj.bg = 'background: linear-gradient(180deg, #DFFFFB 0%, #FFFFFF 53%)';
- } else if (obj.friendly_name.includes("走廊灯")) {
- obj.imgSrc = '/static/icons/ic_zld_1.svg';
- obj.selectedImgSrc = '/static/icons/ic_zld_2.svg';
- obj.bg = 'background: linear-gradient(180deg, #FFEEFA 0%, #FFFFFF 50%)';
- } else if (obj.friendly_name.includes("筒灯")) {
- obj.imgSrc = '/static/icons/ic_td_1.svg';
- obj.selectedImgSrc = '/static/icons/ic_td_2.svg';
- obj.bg = 'background: linear-gradient(180deg, #EBF0FF 0%, #FFFFFF 50%)';
- } else if (obj.friendly_name.includes("主灯")) {
- obj.imgSrc = '/static/icons/ic_zd_1.svg';
- obj.selectedImgSrc = '/static/icons/ic_zd_2.svg';
- obj.bg = 'background: linear-gradient(180deg, #EFE7FF 0%, #FFFFFF 50%)';
- } else if (obj.friendly_name.includes("气扇")) {
- obj.imgSrc = '/static/icons/ic_pqs_1.svg';
- obj.selectedImgSrc = '/static/icons/ic_pqs_2.svg';
- obj.bg = 'background: linear-gradient(180deg, #E3FFE6 0%, #FFFFFF 53%)';
- } else if (obj.friendly_name.includes("电视")) {
- obj.imgSrc = '/static/icons/ic_ds_1.svg';
- obj.selectedImgSrc = '/static/icons/ic_ds_1.svg';
- obj.bg = 'background: linear-gradient(180deg, #FFF2DF 0%, #FFFFFF 53%)';
- } else if (obj.friendly_name.includes("空气净化器")) {
- obj.imgSrc = '/static/icons/ic_kqjhq_1.svg';
- obj.selectedImgSrc = '/static/icons/ic_kqjhq_2.svg';
- obj.bg = 'background: linear-gradient(180deg, #EBFAFF 0%, #FFFFFF 50%)';
- } else if (obj.friendly_name.includes("香薰机雾化")) {
- obj.imgSrc = '/static/icons/ic_xxjwh.svg';
- obj.selectedImgSrc = '/static/icons/ic_xxjwh.svg';
- } else if (obj.friendly_name.endsWith('香薰机') || obj.friendly_name.endsWith('香薰机开关')) {
- obj.imgSrc = '/static/icons/ic_xxj.svg';
- obj.selectedImgSrc = '/static/icons/ic_xxj.svg';
- }
- else if (obj.friendly_name.includes("灯")) {
- obj.imgSrc = '/static/icons/ic_dd_1.svg';
- obj.selectedImgSrc = '/static/icons/ic_dd_2.svg';
- obj.bg = 'background: linear-gradient(180deg, #DFFFFB 0%, #FFFFFF 53%)';
- }
- else {
- obj.imgSrc = '/static/icons/ic_ds_1.svg';
- obj.selectedImgSrc = '/static/icons/ic_ds_1.svg';
- obj.bg = 'background: linear-gradient(180deg, #FFF2DF 0%, #FFFFFF 53%)';
- }
- }
- if (resData[i].attributes && resData[i].attributes.home_room) {
- obj.home_room = resData[i].attributes.home_room.split(' ')[1]; //房间号
- }
- if ((resData[i].state && (resData[i].state == 'on' || resData[i].state == 'off')) && that.checkFuzzyMatch(resData[i])
- ) {
- if (resData[i].state == 'on') {
- obj.service = 'turn_on';
- } else if (resData[i].state == 'off') {
- obj.service = 'turn_off';
- }
- //截取字符串,防止开关设备名称过长
- obj.friendly_name = that.truncateString(resData[i].attributes.friendly_name, roomcode);
- //是否 是香薰机灯光
- obj.isAromlight = obj.friendly_name.includes('香薰机灯光')
- obj.isAromAtomization = obj.friendly_name.includes('香薰机雾化')
- obj.isAromatherapy = obj.friendly_name.endsWith('香薰机') || obj.friendly_name.endsWith('香薰机开关')
- if (obj.entity_id && obj.state && checkState(obj.state) && obj.friendly_name && obj.domain && obj.domain != 'automation' && obj.domain != 'automation' && !obj.isAromlight && !obj.isAromAtomization && !obj.isAromatherapy) {
- listSwitchTemp.push(obj)
- } else if ((obj.isAromlight || obj.isAromAtomization || obj.isAromatherapy) && checkState(obj.state)) {
- listAromatherapyMachineTemp.push(obj)
- }
- }
- if ((resData[i].state && obj.domain && obj.domain == 'cover') && that.checkFuzzyMatch(resData[i])
- ) {
- obj.current_position = resData[i].attributes.current_position;
- obj.target_position = resData[i].attributes.target_position;
- obj.friendly_name = that.truncateString(resData[i].attributes.friendly_name, roomcode);
- if (obj.entity_id && obj.state && checkState(obj.state) && obj.friendly_name && obj.domain) {
- listCoverTemp.push(obj)
- }
- }
- // if((resData[i].state && obj.domain && obj.domain=='number')||
- // (resData[i].state && obj.domain && obj.domain=='number' && resData[i].attributes && resData[i].attributes.parent_entity_id && entityIdList && entityIdList.includes(resData[i].attributes.parent_entity_id)
- // )
- // ){
- // obj.min = resData[i].attributes.min;
- // obj.max = resData[i].attributes.max;
- // obj.step = resData[i].attributes.step;
- // obj.friendly_name = that.truncateString(resData[i].attributes.friendly_name,roomcode);
- // if(resData[i].state!='unknown'){
- // obj.unit_of_measurement = resData[i].attributes.unit_of_measurement;
- // }
- // if((resData[i].attributes.min || resData[i].attributes.max) && resData[i].attributes.unit_of_measurement!='rgb' && resData[i].attributes.unit_of_measurement!='minutes'){
- // if(obj.entity_id && obj.state && obj.friendly_name && obj.domain){
- // listScrollTemp.push(obj);
- // }
- // }else if((resData[i].attributes.min || resData[i].attributes.max) && (resData[i].attributes.unit_of_measurement=='rgb' || resData[i].attributes.unit_of_measurement=='minutes')){
- // if(resData[i].state!='unknown'){
- // obj.unit_of_measurement = resData[i].attributes.unit_of_measurement;
- // }
- // if(obj.entity_id && obj.state && obj.friendly_name && obj.domain){
- // listUnitTemp.push(obj);
- // }
- // }
- // }
- // if((resData[i].state && obj.domain && obj.domain=='button')||
- // (resData[i].state && obj.domain && obj.domain=='button' && resData[i].attributes && resData[i].attributes.parent_entity_id && entityIdList && entityIdList.includes(resData[i].attributes.parent_entity_id)
- // )
- // ){
- // obj.friendly_name = that.truncateString(resData[i].attributes.friendly_name,roomcode);
- // if(obj.entity_id && obj.state && obj.friendly_name && obj.domain){
- // listButtonTemp.push(obj);
- // }
- // }
- // if((resData[i].state && obj.domain && obj.domain=='select')||
- // (resData[i].state && obj.domain && obj.domain=='select' && resData[i].attributes && resData[i].attributes.parent_entity_id && entityIdList && entityIdList.includes(resData[i].attributes.parent_entity_id)
- // )
- // ){
- // obj.friendly_name = that.truncateString(resData[i].attributes.friendly_name,roomcode);
- // obj.options = resData[i].attributes.options;
- // obj.selectedIndex = 0;
- // if(obj.entity_id && obj.state && obj.friendly_name && obj.domain){
- // listSelectTemp.push(obj);
- // }
- // }
- if ((resData[i].state && obj.domain && obj.domain == 'climate' && resData[i].attributes.entity_class == 'MiirClimateEntity')
- ) {
- climateModeTemp = obj.state;
- obj.temperature = resData[i].attributes.temperature;
- obj.min_temp = resData[i].attributes.min_temp;
- obj.max_temp = resData[i].attributes.max_temp;
- obj.hvac_modes = resData[i].attributes.hvac_modes;
- obj.fan_modes = resData[i].attributes.fan_modes;
- obj.fan_mode = resData[i].attributes.fan_mode;
- obj.target_temp_step = resData[i].attributes.target_temp_step;
- if (obj.state == 'auto') {
- temperatureHumidifyNameTemp = '自动';
- }
- if (obj.state == 'heat') {
- temperatureHumidifyNameTemp = '制热';
- }
- if (obj.state == 'cool') {
- temperatureHumidifyNameTemp = '制冷';
- }
- if (obj.state == 'dry') {
- temperatureHumidifyNameTemp = '除湿';
- }
- if (obj.state == 'fan_only') {
- temperatureHumidifyNameTemp = '送风';
- }
- if (obj.state == 'off') {
- temperatureHumidifyNameTemp = '关闭';
- }
- if (obj.entity_id && obj.state && obj.friendly_name && obj.domain) {
- listClimateTemp.push(obj);
- }
- }
- if ((resData[i].state && obj.domain && obj.domain == 'media_player' && resData[i].attributes.entity_class == 'MiotMediaPlayerEntity') && that.checkFuzzyMatch(resData[i])
- ) {
- // obj["speaker.volume"] = resData[i].attribute["speaker.volume"];
- obj.repeat = resData[i].attributes.repeat;
- obj.entity_picture = resData[i].attributes.entity_picture ? "background-image: url('" + `${homeApiLater_https}` + resData[i].attributes.entity_picture + "');width: 100%; height: 100%;background-size: cover;background-repeat: no-repeat;background-position: center;" : "background: radial-gradient(circle at center, #ff0000, #0000ff);border-radius: 30rpx;";
- obj.media_title = resData[i].attributes.media_title;
- obj.media_artist = resData[i].attributes.media_artist;
- obj.volume_level = resData[i].attributes.volume_level ? (resData[i].attributes.volume_level * 100) : 0;
- obj.media_duration = resData[i].attributes.media_duration;
- obj.media_position = resData[i].attributes.media_position;
- obj.media_late = resData[i].attributes.media_position + '/' + resData[i].attributes.media_duration;
- // obj.microphone.mute = resData[i].attributes.microphone.mute;
- // obj.speaker.mute = resData[i].attributes.speaker.mute;
- // console.log('media-player-miot-obj=='+obj);
- if (obj.entity_id && obj.state && checkState(obj.state) && obj.friendly_name && obj.domain) {
- listMiotMediaPlayerTemp.push(obj);
- }
- }
- // if((resData[i].state && obj.domain && obj.domain=='media_player' && resData[i].attributes.entity_class=='MitvMediaPlayerEntity')||
- // (resData[i].state && obj.domain && obj.domain=='media_player' && resData[i].attributes.entity_class=='MitvMediaPlayerEntity' && resData[i].attributes && resData[i].attributes.parent_entity_id && entityIdList && entityIdList.includes(resData[i].attributes.parent_entity_id)
- // )
- // ){
- // obj.volume_level = resData[i].attributes.volume_level;
- // obj.is_volume_muted = resData[i].attributes.is_volume_muted;
- // obj.source = resData[i].attributes.source;
- // obj.entity_picture = resData[i].attributes.entity_picture?"background-image: url('"+`${homeApiLater_https}`+resData[i].attributes.entity_picture+"');width: 100%; height: 100%;background-size: cover;background-repeat: no-repeat;background-position: center;":"background: radial-gradient(circle at center, #ff0000, #0000ff);border-radius: 30rpx;";
- // obj.media_title = resData[i].attributes.media_title;
- // obj.media_artist = resData[i].attributes.media_artist;
- // obj.volume_level = resData[i].attributes.volume_level?(resData[i].attributes.volume_level * 100):0;
- // obj.media_duration = resData[i].attributes.media_duration;
- // obj.media_position = resData[i].attributes.media_position;
- // if(obj.entity_id && obj.state && obj.friendly_name && obj.domain){
- // listMitvMediaPlayerTemp.push(obj);
- // }
- // }
- if ((resData[i].state && obj.domain && obj.domain == 'media_player') && that.checkFuzzyMatch(resData[i])
- ) {
- obj.friendly_name = that.truncateString(resData[i].attributes.friendly_name, roomcode);
- if (obj.entity_id.includes('teevee') || (obj.friendly_name && obj.friendly_name.includes('电视'))) {
- obj.volume_level = resData[i].attributes.volume_level;
- obj.is_volume_muted = resData[i].attributes.is_volume_muted;
- obj.source = resData[i].attributes.source;
- obj.entity_picture = resData[i].attributes.entity_picture ? "background-image: url('" + `${homeApiLater_https}` + resData[i].attributes.entity_picture + "');width: 100%; height: 100%;background-size: cover;background-repeat: no-repeat;background-position: center;" : "background: radial-gradient(circle at center, #ff0000, #0000ff);border-radius: 30rpx;";
- obj.media_title = resData[i].attributes.media_title;
- obj.media_artist = resData[i].attributes.media_artist;
- obj.volume_level = resData[i].attributes.volume_level ? (resData[i].attributes.volume_level * 100) : 0;
- obj.media_duration = resData[i].attributes.media_duration;
- obj.media_position = resData[i].attributes.media_position;
- obj.media_late = resData[i].attributes.media_position + '/' + resData[i].attributes.media_duration;
- // obj["speaker.volume"] = resData[i].attributes["speaker.volume"];
- // console.log('media-player-mitv-obj=='+obj);
- obj.device_class = resData[i].attributes.device_class;
- obj.app_id = resData[i].attributes.app_id;
- obj.app_name = resData[i].attributes.app_name;
- if (obj.entity_id && obj.state && checkState(obj.state) && obj.friendly_name && obj.domain) {
- listMitvMediaPlayerTemp.push(obj);
- }
- obj.friendly_name1 = resData[i].attributes.friendly_name;
- tvEntityIdsTemp.push(obj);
- // let obj1 = {};
- // obj1.entity_id = obj.entity_id;
- // obj1.friendly_name1 = resData[i].attributes.friendly_name;
- // tvEntityIdsTemp.push(obj1);
- tvEntityIdTemp = obj.entity_id;
- // console.log('obj===='+obj);
- // console.log('tvEntityIdTemp='+tvEntityIdTemp);
- wx.setStorageSync('tvEntityId', tvEntityIdTemp);
- }
- }
- if ((resData[i].state && obj.domain && obj.domain == 'humidifier')
- ) {
- obj.min_humidity = resData[i].attributes.min_humidity;
- obj.max_humidity = resData[i].attributes.max_humidity;
- obj.humidity = resData[i].attributes.humidity;
- obj.min = obj.min_humidity;
- obj.max = obj.max_humidity;
- humidityValueTemp = obj.humidity;
- humidityMaxTemp = obj.max;
- humidityMinTemp = obj.min;
- // console.log('humidifier-obj=='+JSON.stringify(obj));
- if (obj.entity_id && obj.state && checkState(obj.state) && obj.friendly_name && obj.domain) {
- listHumidifierTemp.push(obj);
- }
- }
- if ((resData[i].state && obj.domain && obj.domain == 'automation')) {
- console.log("", resData[i].attributes.friendly_name);
- if (resData[i].attributes.friendly_name.endsWith('起床模式')) {
- modelList1.push(obj)
- } else if (resData[i].attributes.friendly_name.endsWith('观影模式')) {
- modelList2.push(obj)
- } else if (resData[i].attributes.friendly_name.endsWith('睡眠模式')) {
- modelList3.push(obj)
- }
- }
- // if((resData[i].state && obj.domain && obj.domain=='sensor')||
- // (resData[i].state && obj.domain && obj.domain=='sensor' && resData[i].attributes && resData[i].attributes.parent_entity_id && entityIdList && entityIdList.includes(resData[i].attributes.parent_entity_id)
- // )
- // ){
- // obj.friendly_name = that.truncateString(resData[i].attributes.friendly_name,roomcode);
- // obj.unit_of_measurement = resData[i].attributes.unit_of_measurement;
- // if(obj.entity_id && obj.state && obj.friendly_name && obj.domain){
- // listSensorTemp.push(obj);
- // }
- // }
- // if((resData[i].state && obj.domain && obj.domain=='text')||
- // (resData[i].state && obj.domain && obj.domain=='text' && resData[i].attributes && resData[i].attributes.parent_entity_id && entityIdList && entityIdList.includes(resData[i].attributes.parent_entity_id)
- // )
- // ){
- // obj.friendly_name = that.truncateString(resData[i].attributes.friendly_name,roomcode);
- // obj.min = resData[i].attributes.min;
- // obj.max = resData[i].attributes.max;
- // if(obj.entity_id && obj.state && obj.friendly_name && obj.domain){
- // listTextTemp.push(obj);
- // }
- // }
- // if((resData[i].state && obj.friendly_name && obj.friendly_name.includes("智能音箱"))
- // || (resData[i].state && resData[i].attributes && resData[i].attributes.parent_entity_id && entityIdList && entityIdList.includes(resData[i].attributes.parent_entity_id)
- // && obj.friendly_name && obj.friendly_name.includes("智能音箱"))
- // ){
- // if(obj.entity_id && obj.state && obj.friendly_name && obj.domain){
- // listConversationTemp.push(obj)
- // }
- // }
- // if((resData[i].state && resData[i].attributes && resData[i].attributes.speaker && resData[i].attributes.speaker.volume && obj.friendly_name && obj.friendly_name.includes("智能音箱"))||
- // (resData[i].state && resData[i].attributes && resData[i].attributes.parent_entity_id && entityIdList && entityIdList.includes(resData[i].attributes.parent_entity_id)
- // && resData[i].attributes.speaker && resData[i].attributes.speaker.volume && obj.friendly_name && obj.friendly_name.includes("智能音箱"))
- // ){
- // obj.volume = resData[i].attributes.speaker.volume;//音量
- // if(obj.entity_id && obj.state && obj.friendly_name && obj.domain){
- // listConversation1Temp.push(obj)
- // }
- // }
- //加湿器单独拿出来
- // if((obj.friendly_name && obj.friendly_name.includes("加湿器"))||
- // (resData[i].attributes && resData[i].attributes.parent_entity_id && entityIdList && entityIdList.includes(resData[i].attributes.parent_entity_id)
- // && obj.friendly_name && obj.friendly_name.includes("加湿器"))
- // ){
- // listHumidityTemp.push(obj)
- // }
- // }
- }
- listSwitchTemp = that.checkTVList(listSwitchTemp);
- that.setData({
- // status_beep: that.getEntityState(res.data,'switch.xiaomi_pro3_02bd_left_switch_service'), //实验室主灯
- // status_led: that.getEntityState(res.data,'light.deerma_jsq2g_392f_indicator_light'), //加湿器 Indicator Light
- // status_san: that.getEntityState(res.data,'switch.xwhzp_xwxfj_a441_diffuser'), //香薰机 Diffuser
- // status_curtain: that.getEntityState(res.data,'switch.xiaomi_pro3_02bd_middle_switch_service'), //实验室侧灯
- // status_door: that.getEntityState(res.data,'remote.xiaomi_lx06_f593_wifispeaker_4'), //智能音箱
- // Temp: that.getEntityStateValue(res.data,'sensor.deerma_jsq2g_392f_temperature'), //加湿器温度
- // Humi: that.getEntityStateValue(res.data,'sensor.deerma_jsq2g_392f_relative_humidity'), //加湿器湿度
- // Light: that.getEntityStateValue(res.data,'number.xwhzp_xwxfj_a441_brightness'), //香薰机亮度
- // LiquidLevel: that.getEntityStateValue(res.data,'sensor.xwhzp_xwxfj_a441_fragrance_liquid_left_level'), //香薰液浓度
- modelList1,
- modelList2,
- modelList3,
- listSwitch: listSwitchTemp,
- listUnit: listUnitTemp,
- listScroll: listScrollTemp,
- listConversation: listConversationTemp,
- listConversation1: listConversation1Temp,
- listHumidity: listHumidityTemp,
- listButton: listButtonTemp,
- listSelect: listSelectTemp,
- listClimate: listClimateTemp,
- listMiotMediaPlayer: listMiotMediaPlayerTemp,
- listMitvMediaPlayer: listMitvMediaPlayerTemp,
- listHumidifier: listHumidifierTemp,
- listSensor: listSensorTemp,
- listText: listTextTemp,
- tvEntityId: tvEntityIdTemp,
- tvEntityIds: tvEntityIdsTemp,
- climateMode: climateModeTemp,
- temperatureHumidifyName: temperatureHumidifyNameTemp,
- listCover: listCoverTemp,
- listAromatherapyMachine: listAromatherapyMachineTemp,
- // ecHumidifier: {
- // onInit: that.initChartHumidifier
- // },
- sliderValueHumidifier: '',
- isLoading: false,
- })
- if (listHumidifierTemp.length && humidityValue != humidityValueTemp) {
- humidityValue = humidityValueTemp;
- humidityMin = humidityMinTemp;
- humidityMax = humidityMaxTemp;
- that.checkHumidityMarginLeft()
- that.initChartHumidifier();
- }
- wx.setStorageSync('tvEntityIds', tvEntityIdsTemp);
- },
- });
- let mid = Date.now(); // 获取当前时间(毫秒)
- console.log('mid==' + mid);
- console.log('start==' + start);
- console.log('mid-start==' + (mid - start));
- // that.setData({
- // isLoading: true,
- // });
- // } catch (error) {
- // console.error(error);
- // }
- // },
- // fail: function (error) {
- // console.error('error', error);
- // that.setData({
- // isLoading: false,
- // });
- // }
- // });
- } catch (error) {
- console.error(error);
- that.setData({
- isLoading: false,
- });
- }
- },
- fail: function (error) {
- console.error('error', error);
- that.setData({
- isLoading: false,
- });
- }
- });
- let end = Date.now(); // 再次获取当前时间(毫秒)
- console.log('end==' + end);
- let executionTime = end - start;
- console.log(`myFunctionToTest 执行时间为: ${executionTime} 毫秒`);
- return true;
- },
- checkTVList(items = []) {
- // 创建一个新数组来存放不包含"电视"的对象
- let newItems = [];
- // 存放包含"电视"的对象
- let tvItems = [];
- // 遍历原数组
- items.forEach(item => {
- // 检查name是否包含"电视"
- if (item.friendly_name.includes("电视")) {
- tvItems.push(item);
- } else {
- newItems.push(item);
- }
- });
- // 将包含"电视"的对象添加到新数组的末尾
- newItems.push(...tvItems);
- // 如果需要,用新数组替换原数组
- items = newItems;
- return items;
- },
- imageLoad: function () {
- this.setData({
- isLoading: false,
- });
- console.log('图片渲染完成');
- },
- startInterval: function () {
- // 使用 setInterval 创建定时任务,每8秒执行一次 this.myMethod 方法
- var that = this;
- // this.intervalId = setInterval(() => {
- // that.getHAData(that,that.data.hotelcode,that.data.roomcode);
- // }, 6000);
- this.data.intervalId1 = setInterval(() => {
- that.getHAData(that, that.data.hotelcode, that.data.roomcode);
- }, 6000);
- // 第二个定时器,每2秒执行一次
- this.data.intervalId2 = setInterval(() => {
- // 这里执行你的代码
- that.setData({
- isClickedPrevSong: false,
- isClickedTogglePlayPause: false,
- isClickedNextSong: false,
- isClickedOnHumidifierUp: false,
- isClickedOnHumidifierDown: false,
- isClickedOnClimateAuto: false,
- isClickedOnClimateUp: false,
- isClickedToggleAromlight: false,//香薰机灯光
- });
- }, 300);
- },
- clearInterval: function () {
- // 清除定时任务
- // if (this.intervalId) {
- // clearInterval(this.intervalId);
- // this.intervalId = null;
- // }
- if (this.data.intervalId1) {
- clearInterval(this.data.intervalId1);
- this.data.intervalId1 = null; // 可选,但建议清除以避免潜在的错误
- }
- // 停止第二个定时器
- if (this.data.intervalId2) {
- clearInterval(this.data.intervalId2);
- this.data.intervalId2 = null; // 可选,但建议清除以避免潜在的错误
- }
- },
- stopTouchMove: function (e) {
- return false;
- },
- truncateString: function (str, roomcode) {
- if (!str) return ''
- let strR = str.replace(roomcode, '')
- if (strR.length <= 6) {
- // 如果字符串长度小于等于5,直接返回原字符串
- return strR;
- } else {
- // 如果字符串长度在6到9之间,返回后6个字符(此时没有前部分可拼接)
- return strR.slice(-6);
- }
- },
- onLoad(option) {
- console.log("index页面");
- // wx.clearStorage();
- // this.setTextBreathing(wx.createSelectorQuery(".header-title-fire"),this);
- //console.log('option.res='+JSON.stringify(wx.getStorageSync('res')));
- if (!wx.getStorageSync('res') || !wx.getStorageSync('res').result) {
- wx.showModal({
- title: '提示',
- content: '请先扫描房间二维码',
- showCancel: false
- });
- setTimeout(function () {
- wx.reLaunch({
- url: '/pages/scan/scan',
- })
- }, 2000) // 设置延时时间,单位为毫秒
- } else {
- var that = this;
- // wx.request({
- // url: `${aipushApi}`+'/getbigreport',
- // method: 'POST',
- // header: {
- // 'content-type': 'application/json', // 默认值
- // 'Authorization': 'Bearer ' + token // 在头部设置认证信息,例如使用Bearer Token
- // },
- // data:{
- // "sn":'',"tokens":token_push
- // },
- // success(ress) {
- // if(ress && ress.data){
- // wx.request({
- // url: `${homeApi_https}/states`, //获取空气数据
- // method: 'GET',
- // header: {
- // 'content-type': 'application/json', // 默认值
- // 'Authorization': 'Bearer ' + token // 在头部设置认证信息,例如使用Bearer Token
- // },
- // success(res) {
- // if(!res || !res.data){
- // wx.showModal({
- // title: '提示',
- // content: '请先连接房间wi-fi,再次扫描',
- // showCancel: false
- // });
- // setTimeout(function() {
- // wx.reLaunch({
- // url: '/pages/scan/scan',
- // })
- // }, 2000) // 设置延时时间,单位为毫秒
- // }else{
- // // console.log("res.data====="+JSON.stringify(res.data));
- // }
- // },
- // });
- // }else{
- // wx.showModal({
- // title: '提示',
- // content: '请先连接房间wi-fi,再次扫描',
- // showCancel: false
- // });
- // setTimeout(function() {
- // wx.reLaunch({
- // url: '/pages/scan/scan',
- // })
- // }, 2000) // 设置延时时间,单位为毫秒
- // }
- // },
- // });
- // const socketUrl = 'http://192.168.3.65:8123';
- // wx.connectSocket({
- // url: socketUrl,
- // success: function (res) {
- // console.log('WebSocket连接成功', res);
- // },
- // fail: function (error) {
- // console.error('WebSocket连接打开失败', error);
- // }
- // });
- //wi-fi判断
- // wx.startWifi({
- // fail(error) {
- // console.log('初始化wifi-失败', error)
- // },
- // success(res) {
- // console.log('初始化wifi-成功', res)
- // },
- // });
- // const expiresAt = wx.getStorageSync('scanResultExpiresAt');
- // const now = Date.now()
- // console.log('expiresAt='+expiresAt);
- // console.log('now='+now);
- // if (expiresAt || expiresAt < now) {
- // // 扫码结果已过期
- // wx.showToast({
- // title: '扫码结果失效或已过期,请重新扫码',
- // icon: 'none'
- // });
- // // 清除过期的扫码结果
- // wx.removeStorageSync('scanResultExpiresAt');
- // setTimeout(function() {
- // wx.reLaunch({
- // url: '/pages/scan/scan',
- // })
- // }, 2000) // 设置延时时间,单位为毫秒
- // }else{
- // //续期
- // wx.setStorageSync('scanResultExpiresAt', Date.now() + 2 * 60 * 60 * 1000)
- // }
- let hotelcodeTemp = '';
- let roomcodeTemp = '';
- if (wx.getStorageSync('res').result.split('|').length != 2) {
- wx.showModal({
- title: '提示',
- content: '房间二维码不正确,请重新扫码',
- showCancel: false
- });
- setTimeout(function () {
- wx.reLaunch({
- url: '/pages/scan/scan',
- })
- }, 2000) // 设置延时时间,单位为毫秒
- }
- hotelcodeTemp = wx.getStorageSync('res').result.split('|')[0];
- roomcodeTemp = wx.getStorageSync('res').result.split('|')[1];
- entity = roomcodeTemp;
- if (entity == 'labs') {
- entity = '公司实验室';
- wx.setStorageSync('roomname', '604');
- } else {
- wx.setStorageSync('roomname', entity);
- }
- this.setData({
- isLoading: true,
- hotelcode: hotelcodeTemp,
- roomcode: roomcodeTemp,
- });
- if (this.getHADataStart(this, hotelcodeTemp, roomcodeTemp)) {
- // 页面加载时开始定时任务
- // this.startInterval();
- }
- }
- // else if(!this.data.home_room.includes(wx.getStorageSync('res').result)){
- // wx.showModal({
- // title: '提示',
- // content: '房间二维码不正确,请重新扫描',
- // showCancel: false
- // });
- // setTimeout(function() {
- // wx.reLaunch({
- // url: '/pages/scan/scan',
- // })
- // }, 2000) // 设置延时时间,单位为毫秒
- // }
- // this.showCanvasRing();
- // 创建音频上下文
- // this.innerAudioContext = wx.createInnerAudioContext();
- // // 设置音频源
- // this.innerAudioContext.src = '你的音频文件链接'; // 替换为你的音频文件链接
- // // 监听播放状态
- // this.innerAudioContext.onPlay(() => {
- // this.setData({ isPlaying: true });
- // });
- // this.innerAudioContext.onPause(() => {
- // this.setData({ isPlaying: false });
- // });
- // this.innerAudioContext.onStop(() => {
- // this.setData({ isPlaying: false });
- // });
- // this.innerAudioContext.onError((res) => {
- // console.log('res.errorCode='+res.errorCode);
- // console.log('res.errorMsg='+res.errorMsg);
- // });
- // // 监听播放进度
- // this.innerAudioContext.onTimeUpdate(() => {
- // this.setData({
- // currentTime: this.innerAudioContext.currentTime,
- // duration: this.innerAudioContext.duration
- // });
- // });
- // // 初始化歌曲列表
- // this.setData({
- // songs: [
- // { id: 1, title: '歌曲1', artist: '歌手1', url: 'song1.mp3' },
- // { id: 2, title: '歌曲2', artist: '歌手2', url: 'song2.mp3' },
- // { id: 3, title: '歌曲3', artist: '歌手3', url: 'song3.mp3' }
- // ]
- // });
- },
- mounted() {
- },
- onHide() {
- // wx.clearStorage();
- // 页面卸载时清除定时任务
- this.clearInterval();
- // if(this.tcp){
- // this.tcp.onClose(() => {
- // // this.infoList.push('关闭')
- // console.log('tcp关闭');
- // this.tcp.close()
- // })
- // }
- },
- onUnload() {
- //wx.clearStorage();
- // 页面卸载时清除定时任务
- this.clearInterval();
- // if(this.tcp){
- // this.tcp.onClose(() => {
- // // this.infoList.push('关闭')
- // console.log('tcp关闭');
- // this.tcp.close()
- // })
- // }
- // if (this.data.observer) {
- // this.data.observer.disconnect();
- // }
- },
- onReady() {
- console.log('页面渲染完成')
- // 获取组件
- // 确保页面渲染完成后查找节点
- },
- showLoading: function () {
- wx.showToast({
- title: '加载中',
- icon: 'loading',
- })
- },
- cancelLoading: function () {
- wx.hideToast()
- },
- onShow() {
- const app = getApp();
- app.globalData.selectedTabIndex = 0;
- this.getTabBar().setData({
- selected: 0
- })
- var that = this;
- that.setData({
- currentMenuTabIndex: -1
- })
- that.startInterval();
- // that.setData({
- // ecHumidifier: {
- // onInit: initChartHumidifier
- // },
- // })
- //mqtt程序,保留
- /* wx.showToast({
- title: "连接服务器....",
- icon: "loading",
- duration: 10000,
- mask: true,
- });
- let second = 10;
- var toastTimer = setInterval(() => {
- second--;
- if (second) {
- wx.showToast({
- title: `连接服务器...${second}`,
- icon: "loading",
- duration: 1000,
- mask: true,
- });
- } else {
- clearInterval(toastTimer);
- wx.showToast({
- title: "连接失败",
- icon: "error",
- mask: true,
- });
- }
- }, 1000);
- that.setData({
- client: connect(mqttUrl,options)
- })
-
- that.data.client.on("connect", function () {
- console.log("成功连接mqtt服务器!");
- clearInterval(toastTimer);
- wx.showToast({
- title: "连接成功",
- icon: "success",
- mask: true,
- });
- // 一秒后订阅主题
- setTimeout(() => {
- that.data.client.subscribe(mpSubTopic_env, function (err) {
- if (!err) {
- console.log("成功订阅设备上行数据环境Topic!");
- wx.showToast({
- title: "订阅成功",
- icon: "success",
- mask: true,
- });
- }
- });
- }, 500);
- });
- setTimeout(() => {
- that.data.client.subscribe(mpSubTopic_con, function (err) {
- if (!err) {
- console.log("成功订阅设备上行数据控制Topic!");
- wx.showToast({
- title: "订阅成功",
- icon: "success",
- mask: true,
- });
-
- }
- });
- }, 200);
-
- that.data.client.on("message", function (topic, message) {
- console.log(topic);
- // message是16进制的Buffer字节流
- let dataFromDev = {};
- console.log('message='+message);
- // 尝试进行JSON解析
- try {
- dataFromDev = JSON.parse(message);
- console.log(dataFromDev);
- that.setData({
- //环境状态
- Temp: dataFromDev.Temp,
- Humi: dataFromDev.Humi,
- Voltage1: dataFromDev.Voltage1,
- Voltage2: dataFromDev.Voltage2,
-
- //设备状态
- status_beep: dataFromDev.Beep_Flag,
- status_led: dataFromDev.Led_Flag,
- status_curtain: dataFromDev.Angle1,
- status_san: dataFromDev.San_Flag,
- status_door: dataFromDev.Angle2,
- status_fire: dataFromDev.Fire_Flag,
- status_light: dataFromDev.Light_Flag,
- status_mode: dataFromDev.Mode_Flag
- })
- } catch (error) {
- // 解析失败错误捕获并打印(错误捕获之后不会影响程序继续运行)
- console.log(error);
- }
- }) */
- // if(this.tcp){
- // this.tcp.onClose(() => {
- // // this.infoList.push('关闭')
- // console.log('tcp关闭');
- // this.tcp.close()
- // this.tcp = '';
- // })
- // }
- // // 初始化TCP实例
- // this.tcp = wx.createTCPSocket()
- // // tcp实例向服务端发起连接
- // this.tcp.connect({ address: '192.168.3.65', port: '81231' })
- // // this.infoList.push(`向${this.ip}:${~~this.port}建立链接`)
- // this.tcp.offClose(() => {
- // })
- // this.tcp.onConnect(() => {
- // // this.infoList.push('连接成功')
- // console.log('tcp连接成功');
- // })
- // this.tcp.offConnect(() => {
- // // this.infoList.push('offConnect')
- // console.log('tcp-offConnect');
- // })
- // this.tcp.onError(error => {
- // // this.infoList.push('异常:' + error)
- // console.log('tcp异常:' + error);
- // wx.showModal({
- // title: '提示',
- // content: '请先连接房间wi-fi,再次扫描',
- // showCancel: false
- // });
- // setTimeout(function() {
- // wx.reLaunch({
- // url: '/pages/scan/scan',
- // })
- // }, 2000) // 设置延时时间,单位为毫秒
- // })
- // this.tcp.onMessage(data => {
- // // this.infoList.push('tcp接收到数据: ' + transitionArrayBufferToString(data.message))
- // console.log('tcp接收到数据: ' + JSON.stringify(data.message));
- // })
- wx.getLocation({
- type: "wgs84",
- success(res) {
- const latitude = res.latitude;
- const longitude = res.longitude;
- const key = hefengKey;
- wx.request({
- url: `${geoApi}location=${longitude},${latitude}&key=${key}`, //获取地理位置
- success(res) {
- console.log('getLocation=' + JSON.stringify(res.data));
- if (res.data.code == "401") {
- console.error("HUAQING --- 请检查你的和风天气API或Key是否正确!");
- return;
- }
- try {
- const {
- location
- } = res.data;
- that.setData({
- area: location[0].name, //城区
- city: location[0].adm2 //城市
- })
- } catch (error) {
- console.error(error);
- }
- },
- });
- wx.request({
- url: `${hefengWeather}location=${longitude},${latitude}&key=${key}`, //获取实时天气数据
- success(res) {
- console.log("实时天气==" + JSON.stringify(res.data));
- if (res.data.code == "401") {
- console.error("HUAQING --- 请检查你的和风天气API或Key是否正确!");
- return;
- }
- try {
- const {
- now
- } = res.data;
- that.setData({
- weather: now.text, // 天气
- w_temp: now.temp, // 温度
- w_humidity: now.humidity, // 湿度
- })
- } catch (error) {
- console.error(error);
- }
- },
- });
- wx.request({
- url: `${hefengAir}location=${longitude},${latitude}&key=${key}`, //获取空气数据
- success(res) {
- console.log("空气数据==" + JSON.stringify(res.data));
- if (res.data.code == "401") {
- console.error("HUAQING --- 请检查你的和风天气API或Key是否正确!");
- return;
- }
- try {
- const {
- now
- } = res.data;
- that.setData({
- airText: now.category, //空气质量
- airValue: now.aqi //空气指数
- })
- } catch (error) {
- console.error(error);
- }
- },
- });
- },
- });
- // 获取天气相关数据
- // wx.scanCode({
- // success: (res) => {
- // console.log('扫描结果:'+res.result) // 扫描结果
- // }
- // });
- }
- })
|