| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882 |
- <template>
- <view class="content" >
- <view class="header" :style='"background-image:url("+imgUrl+"/detail/bg.png);background-repeat: no-repeat;background-size: 100% 200%;top:-5vh;height:110vh"'>
- <view v-if="isH5" @click='goBack()' style=" font-size: 16px;
- padding-top: 7px;
- position: absolute;
- top: 5vh;
- left: 20px;
- }">
- 返回
- </view>
- <view style=" background: white;
- margin-top: 59px;
- border-radius: 10px;">
- <view class="prop-item" @click="showJiaozhunProp" v-if="firstTab">
- <view class="prop-item-image">
- <image :src="imgUrl+'/setting/oper_temp.png'" style="width: 100%;height:100%;"/>
- </view>
- <view class="prop-item-left">温度校准</view>
- <view class="prop-item-right" >
- {{jiaozhunTemp}}℃<uni-icons type="forward" size="16"></uni-icons>
- </view>
- </view>
- <view class="prop-item" @click="toPlan" v-if="firstTab">
- <view class="prop-item-image" style="width: 60rpx;
- height: 60rpx;
- bottom: 22rpx;
- left: 26rpx;
- }">
- <image :src="imgUrl+'/setting/plan_oper.png?1'" style="width: 100%;height:100%;"/>
- </view>
- <view class="prop-item-left">预约</view>
- <view class="prop-item-right" >
- <uni-icons type="forward" size="16"></uni-icons>
- </view>
- </view>
- <view class="prop-item" v-if="firstTab && boardType == 5">
- <view class="prop-item-image">
- <image :src="imgUrl+'/setting/current_icon6.png'" style="width: 100%;height:100%;"/>
- </view>
- <view class="prop-item-left">当前扭力</view>
- <view class="prop-item-right" >
- {{validCurrent}}
- </view>
- </view>
- <view class="prop-item" @click="showLiuProp" v-if="firstTab && boardType == 5">
- <view class="prop-item-image">
- <image :src="imgUrl+'/setting/current_icon5.png'" style="width: 100%;height:100%;"/>
- </view>
- <view class="prop-item-left">扭力设置</view>
- <view class="prop-item-right" >
- {{turnCurrent}}<uni-icons type="forward" size="16"></uni-icons>
- </view>
- </view>
- <!-- <view class="prop-item" @click="showWorkPicker" v-if="firstTab">-->
- <!-- <view class="prop-item-image">-->
- <!-- <image :src="imgUrl+'/setting/list.png'" style="width: 100%;height:100%;"/>-->
- <!-- </view>-->
- <!-- <view class="prop-item-left">工作模式</view>-->
- <!-- <view class="prop-item-right" >-->
- <!-- <view v-if="workMode == 1">-->
- <!-- 1<uni-icons type="forward" size="16"></uni-icons>-->
- <!-- </view>-->
- <!-- <view v-if="workMode == 2">-->
- <!-- 2<uni-icons type="forward" size="16"></uni-icons>-->
- <!-- </view>-->
- <!-- <view v-if="workMode == 3">-->
- <!-- 3<uni-icons type="forward" size="16"></uni-icons>-->
- <!-- </view>-->
- <!-- </view>-->
- <!-- </view>-->
- <view class="prop-item">
- <view class="prop-item-image">
- <image :src="imgUrl+'/setting/no.png'" style="width: 100%;height:100%;"/>
- </view>
- <view class="prop-item-left">二维码编号</view>
- <view class="prop-item-right">
- <text class="text-right">{{deviceInfo.qrcodeId==null?"未绑定":deviceInfo.qrcodeId}}</text>
- </view>
- </view>
- <view class="prop-item">
- <view class="prop-item-image">
- <image :src="imgUrl+'/setting/no.png'" style="width: 100%;height:100%;"/>
- </view>
- <view class="prop-item-left">设备编号</view>
- <view class="prop-item-right">
- <text class="text-right">{{deviceInfo.serialNumber}}</text>
- </view>
- </view>
- <view class="prop-item" @click="skip(1)">
- <view class="prop-item-image">
- <image :src="imgUrl+'/setting/learn.png'" style="width: 100%;height:100%;"/>
- </view>
- <view class="prop-item-left">使用教程</view>
- <view class="prop-item-right" >
- <uni-icons type="forward" size="16"></uni-icons>
- </view>
- </view>
- <view class="prop-item" @click="skip(1)">
- <view class="prop-item-image">
- <image :src="imgUrl+'/setting/video.png'" style="width: 100%;height:100%;"/>
- </view>
- <view class="prop-item-left">维修视频</view>
- <view class="prop-item-right" >
- <uni-icons type="forward" size="16"></uni-icons>
- </view>
- </view>
- <view class="prop-item" @click="getUpdateInfo">
- <view class="prop-item-image">
- <image :src="imgUrl+'/setting/upload.png'" style="width: 100%;height:100%;"/>
- </view>
- <view class="prop-item-left">在线升级</view>
- <view class="prop-item-right" >
- <uni-icons type="forward" size="16"></uni-icons>
- </view>
- </view>
- <view class="prop-item" @click="skip(2)">
- <view class="prop-item-image">
- <image :src="imgUrl+'/setting/shou.png'" style="width: 100%;height:100%;"/>
- </view>
- <view class="prop-item-left">售后服务</view>
- <view class="prop-item-right" >
- <uni-icons type="forward" size="16"></uni-icons>
- </view>
- </view>
- <view class="prop-item" @click="reset">
- <view class="prop-item-image">
- <image :src="imgUrl+'/setting/reset.png'" style="width: 100%;height:100%;"/>
- </view>
- <view class="prop-item-left">恢复出厂</view>
- <view class="prop-item-right" >
- <uni-icons type="forward" size="16"></uni-icons>
- </view>
- </view>
- <view class="prop-item" @click="modifyName">
- <view class="prop-item-image">
- <image :src="imgUrl+'/setting/runinfo.png'" style="width: 100%;height:100%;"/>
- </view>
- <view class="prop-item-left">修改名称</view>
- <view class="prop-item-right" >
- <uni-icons type="forward" size="16"></uni-icons>
- </view>
- </view>
- </view>
- <u-popup :show="false" @close="closePop" mode="center" bgColor="transparent" :closeable="true" :round="10">
- <view style="position: relative;width: 500rpx;height:300rpx;background: none">
- <view class="control_item" style="width: 100%" v-if="fengbianDlgShow">
- <image :src="imgUrl+'/detail/bg_mid.png'" style="width: 100%;height:100%;position: absolute;top:0px;"/>
- <view class="control_item_detail">
- <view class="control_item_left" @click="subEdegTemperature(1)">-</view>
- <view class="control_item_center">
- <u-input customStyle="width:150rpx;border:0px;" disabledColor="white" @change="changeEdegTemperature" v-model="setEdegTemperature"></u-input>
- </view>
- <view class="control_item_center_unit" :style="unitFixedStyle1">℃</view>
- <view class="control_item_right" @click="addEdegTemperature(1)">+</view>
- </view>
- <view class="control_item_title">
- 封边温度设置
- </view>
- </view>
- <view class="control_item" style="width: 100%" v-if="fengkouDlgShow">
- <image :src="imgUrl+'/detail/bg_mid.png'" style="width: 100%;height:100%;position: absolute;top:0px;"/>
- <view class="control_item_detail">
- <view class="control_item_left" @click="subSealingTemperature(1)">-</view>
- <view class="control_item_center">
- <u-input customStyle="width:150rpx;border:0px;" disabledColor="white" @change="changeSealingTemperature" v-model="setSealingTemperature"></u-input>
- </view>
- <view class="control_item_center_unit" :style="unitFixedStyle1">℃</view>
- <view class="control_item_right" @click="addSealingTemperature(1)">+</view>
- </view>
- <view class="control_item_title">
- 封口温度设置
- </view>
- </view>
- <view class="control_item" style="width: 100%" v-if="wenhuoTimeDlgShow">
- <image :src="imgUrl+'/detail/bg_mid.png'" style="width: 100%;height:100%;position: absolute;top:0px;"/>
- <view class="control_item_detail">
- <view class="control_item_left" @click="subTemperatureTime()">-</view>
- <view class="control_item_center">
- <u-input customStyle="width:150rpx;border:0px;" disabledColor="white" @change="changeTemperatureTime()" v-model="temperatureTime"></u-input>
- </view>
- <view class="control_item_center_unit" :style="unitFixedStyle1">℃</view>
- <view class="control_item_right" @click="addTemperatureTime()">+</view>
- </view>
- <view class="control_item_title">
- 文火时间
- </view>
- </view>
- </view>
- </u-popup>
- <u-popup :show="planPopDlg" @close="closePlanPop" mode="center" :closeable="true" :round="10">
- <view style="position: relative;width: 400rpx;background: none;padding:40rpx;">
- <view class="control_item" style="width: 100%">
- <image :src="imgUrl+'/detail/bg_mid.png'" style="width: 100%;height:100%;position: absolute;top:0px;"/>
- <view class="control_item_detail">
- <view class="control_item_left" @click="subPlanTime(1)" style="left: 18%;">-</view>
- <view class="control_item_center">
- <view style="position: absolute">
- <u-input customStyle="width:150rpx;border:0px;" disabledColor="white" v-model="planTime"></u-input>
- </view>
- </view>
- <view class="control_item_center_unit" :style="unitFixedStyle">分钟</view>
- <view class="control_item_right" style="left: 80%;" @click="addPlanTime(1)">+</view>
- </view>
- <view class="control_item_title">
- 预约时间
- </view>
- </view>
- <view class="control_item" style="width: 100%">
- <image :src="imgUrl+'/detail/bg_mid.png'" style="width: 100%;height:100%;position: absolute;top:0px;"/>
- <view class="control_item_detail">
- <view class="control_item_left" @click="subTemperatureTime()" style="left: 18%;">-</view>
- <view class="control_item_center">
- <view style="position: absolute">
- <u-input customStyle="width:150rpx;border:0px;" disabledColor="white" @change="changeTemperatureTime()" v-model="temperatureTime"></u-input>
- </view>
- </view>
- <view class="control_item_center_unit" :style="unitFixedStyle">分钟</view>
- <view class="control_item_right" @click="addTemperatureTime()" style="left: 80%;">+</view>
- </view>
- <view class="control_item_title">
- 时间设置
- </view>
- </view>
- <view>
- <button style="background: white;" @click="plan">确认</button>
- </view>
- </view>
- </u-popup>
- <u-popup :show="erqibushuiDlg" @close="closeErqibushuiPop" mode="center" :closeable="true" :round="10">
- <view style="position: relative;width: 400rpx;background: none;padding:40rpx;">
- <view class="control_item" style="width: 100%">
- <image :src="imgUrl+'/detail/bg_mid.png'" style="width: 100%;height:100%;position: absolute;top:0px;"/>
- <view class="control_item_detail">
- <view class="control_item_left" @click="subErqibushui(1)" style="left: 18%;">-</view>
- <view class="control_item_center">
- <view style="position: absolute">
- <u-input customStyle="width:150rpx;border:0px;" disabledColor="white" v-model="secondAddWaterTime"></u-input>
- </view>
- </view>
- <view class="control_item_center_unit" :style="unitFixedStyle">分钟</view>
- <view class="control_item_right" style="left: 80%;" @click="addErqibushui(1)">+</view>
- </view>
- <view class="control_item_title">
- 二煎补水时间
- </view>
- </view>
- <view class="control_item" style="width: 100%">
- <image :src="imgUrl+'/detail/bg_mid.png'" style="width: 100%;height:100%;position: absolute;top:0px;"/>
- <view class="control_item_detail">
- <view class="control_item_center">
- <view style="position: absolute">
- <u-input customStyle="width:150rpx;border:0px;" disabledColor="white" v-model="currentSecondAddWaterTime"></u-input>
- </view>
- </view>
- <view class="control_item_center_unit" :style="unitFixedStyle">分钟</view>
- </view>
- <view class="control_item_title">
- 二煎补水剩余时间
- </view>
- </view>
- </view>
- </u-popup>
- <!-- 预约框-->
- <u-popup :show="yuyueIngPop" @close="closeYuyueIngPop" mode="center" :closeable="true" :round="10">
- <view style="position: relative;width: 400rpx;background: none;;padding:30rpx;padding-top:60rpx;">
- <view class="control_item" style="width: 100%">
- <image :src="imgUrl+'/detail/bg_mid.png'" style="width: 100%;height:100%;position: absolute;top:0px;"/>
- <view class="control_item_detail">
- <view class="control_item_center">
- <u-input customStyle="width:150rpx;border:0px;padding:0px" disabledColor="white" :value="leftAppointmentTime"></u-input>
- </view>
- <view class="control_item_center_unit" :style="unitFixedStyle">℃</view>
- </view>
- <view class="control_item_title">
- 剩余时间
- </view>
- </view>
- <view>
- <button style="background: white;" @click="cancelPlan">取消</button>
- </view>
- </view>
- </u-popup>
- <u-popup :show="planIngPopDlg" @close="closePlanIngPop" mode="center" :closeable="true" :round="10">
- <view style="position: relative;width: 400rpx;background: none;padding:40rpx;">
- <view class="control_item" style="width: 100%">
- <image :src="imgUrl+'/detail/bg_mid.png'" style="width: 100%;height:100%;position: absolute;top:0px;"/>
- <view class="control_item_detail" style="width: 100%; padding: 40rpx;margin-bottom:10rpx;">
- <u-line-progress :percentage="step" activeColor="#50ACFF"></u-line-progress>
- </view>
- <view class="control_item_title" v-if="leftAppointmentTime>0">
- 预约煎药中,倒计时{{leftAppointmentTime}}分钟
- </view>
- <view class="control_item_title" v-else>
- <view v-if="leftJianyaoTime>0">
- 正在熬制,请稍等
- </view>
- <view v-else>
- 煎药完成
- </view>
- </view>
- </view>
- <view class="control_item" style="width: 100%">
- <image :src="imgUrl+'/detail/bg_mid.png'" style="width: 100%;height:100%;position: absolute;top:0px;"/>
- <view class="control_item_detail">
- <view class="control_item_center">
- <u-input customStyle="width:150rpx;border:0px;" disabledColor="white" :value="currentTemperature"></u-input>
- </view>
- <view class="control_item_center_unit" :style="unitFixedStyle">℃</view>
- </view>
- <view class="control_item_title">
- 当前温度
- </view>
- </view>
- <view class="control_item" style="width: 100%">
- <image :src="imgUrl+'/detail/bg_mid.png'" style="width: 100%;height:100%;position: absolute;top:0px;"/>
- <view class="control_item_detail">
- <view class="control_item_center">
- <u-input customStyle="width:150rpx;border:0px;" disabledColor="white" :value="leftJianyaoTime"></u-input>
- </view>
- <view class="control_item_center_unit" :style="unitFixedStyle">分钟</view>
- </view>
- <view class="control_item_title">
- 文火倒计时
- </view>
- </view>
- <!-- <view>-->
- <!-- <button style="background: white;" @click="cancelPlan">暂停</button>-->
- <!-- </view>-->
- </view>
- </u-popup>
- <u-popup :show="jiaozhunPopDlg" @close="closejiaozhunPop" mode="center" :closeable="true" :round="10">
- <view style="position: relative;width: 400rpx;background: none;padding:30rpx;padding-top:60rpx;">
- <view class="control_item" style="width: 100%">
- <image :src="imgUrl+'/detail/bg_mid.png'" style="width: 100%;height:100%;position: absolute;top:0px;"/>
- <view class="control_item_detail">
- <view class="control_item_left" @click="subJiaoZhunTemperature(1)" style="left: 18%;">-</view>
- <view class="control_item_center">
- <view style="position: absolute">
- <u-input customStyle="width:150rpx;border:0px;" disabledColor="white" v-model="jiaozhunTemp_temp"></u-input>
- </view>
- </view>
- <view class="control_item_center_unit" :style="unitFixedStyle">℃</view>
- <view class="control_item_right" @click="addJiaoZhunTemperature(1)" style="left: 80%;">+</view>
- </view>
- <view class="control_item_title">
- 校准温度
- </view>
- </view>
- <view>
- <button style="background: white;" @click="confirmJiaozhunTemp">确认</button>
- </view>
- </view>
- </u-popup>
- <u-popup :show="deviceYuyueIngPop" @close="closeDeviceYuyueIngPop" mode="center" :closeable="true" :round="10">
- <view style="position: relative;width: 400rpx;background: none;padding:30rpx;padding-top:60rpx;">
- <view class="control_item" style="width: 100%">
- <image :src="imgUrl+'/detail/bg_mid.png'" style="width: 100%;height:100%;position: absolute;top:0px;"/>
- <view class="control_item_detail">
- <view class="control_item_center">
- <u-input customStyle="width:150rpx;border:0px;padding:0px" disabledColor="white" :value="devicePlanInfo.minute"></u-input>
- </view>
- <view class="control_item_center_unit" :style="unitFixedStyle">分</view>
- </view>
- <view class="control_item_title">
- 剩余时间
- </view>
- </view>
- <view>
- <button style="background: white;" @click="cancelDevicePlan">取消</button>
- </view>
- </view>
- </u-popup>
- <u-popup :show="devicePlanPopDlg" @close="closeDevicePlanPop" mode="center" :closeable="true" :round="10">
- <view style="position: relative;width: 400rpx;background: none;padding:30rpx;padding-top:60rpx;">
- <view class="control_item" style="width: 100%">
- <image :src="imgUrl+'/detail/bg_mid.png'" style="width: 100%;height:100%;position: absolute;top:0px;"/>
- <view class="control_item_detail">
- <view class="control_item_left" @click="subDevicePlanTime(1)" style="left: 18%;">-</view>
- <view class="control_item_center">
- <view style="position: absolute">
- <u-input customStyle="width:150rpx;border:0px;" disabledColor="white" v-model="devicePlanTime"></u-input>
- </view>
- </view>
- <view class="control_item_center_unit" :style="unitFixedStyle">分钟</view>
- <view class="control_item_right" style="left: 80%;" @click="addDevicePlanTime(1)">+</view>
- </view>
- <view class="control_item_title">
- 预约时间
- </view>
- </view>
- <view>
- <button style="background: white;" @click="devicePlan">确认</button>
- </view>
- </view>
- </u-popup>
- <u-popup :show="liuzhuanPopDlg" @close="closeliuzhuanPop" mode="center" :closeable="true" :round="10">
- <view style="position: relative;width: 400rpx;background: none;padding:30rpx;padding-top:60rpx;">
- <view class="control_item" style="width: 100%">
- <image :src="imgUrl+'/detail/bg_mid.png'" style="width: 100%;height:100%;position: absolute;top:0px;"/>
- <view class="control_item_detail">
- <view class="control_item_center">
- <view style="position: absolute">
- <u-input customStyle="width:150rpx;border:0px;" disabledColor="white" v-model="setTurnCurrent"></u-input>
- </view>
- </view>
- <view class="control_item_center_unit" :style="unitFixedStyle">MA</view>
- </view>
- <view class="control_item_title">
- 扭力
- </view>
- </view>
- <view>
- <button style="background: white;" @click="confirmLiuzhuannCurrent">确认</button>
- </view>
- </view>
- </u-popup>
- <u-popup :show="baowenPopDlg" @close="closeBaowenPopDlg" mode="center" :closeable="true" :round="10">
- <view style="position: relative;width: 400rpx;background: none;padding:30rpx;padding-top:60rpx;">
- <view class="control_item" style="width: 100%">
- <image :src="imgUrl+'/detail/bg_mid.png'" style="width: 100%;height:100%;position: absolute;top:0px;"/>
- <view class="control_item_detail">
- <view class="control_item_left" @click="subBaowenTime(1)" style="left: 18%;">-</view>
- <view class="control_item_center">
- <view style="position: absolute">
- <u-input customStyle="width:150rpx;border:0px;" disabledColor="white" v-model="baowenTime"></u-input>
- </view>
- </view>
- <view class="control_item_center_unit" :style="unitFixedStyle">分钟</view>
- <view class="control_item_right" style="left: 80%;" @click="addBaowenTime(1)">+</view>
- </view>
- <view class="control_item_title">
- 保温时间
- </view>
- </view>
- <view class="control_item" style="width: 100%">
- <image :src="imgUrl+'/detail/bg_mid.png'" style="width: 100%;height:100%;position: absolute;top:0px;"/>
- <view class="control_item_detail">
- <view class="control_item_left" @click="subBaowenTemp(1)" style="left: 18%;">-</view>
- <view class="control_item_center">
- <view style="position: absolute">
- <u-input customStyle="width:150rpx;border:0px;" disabledColor="white" v-model="baowenTemp"></u-input>
- </view>
- </view>
- <view class="control_item_center_unit" :style="unitFixedStyle">℃</view>
- <view class="control_item_right" style="left: 80%;" @click="addBaowenTemp(1)">+</view>
- </view>
- <view class="control_item_title">
- 保温温度
- </view>
- </view>
- <view>
- <button style="background: white;" @click="doBaowenSeting" v-if="!hasBaowen">确认添加</button>
- <button style="background: white;" @click="delBaowenSetting" v-if="hasBaowen">取消保温</button>
- </view>
- </view>
- </u-popup>
- <u-picker :show="showModelPicker" @cancel="closeModelPicker" @confirm="confirmMode" :columns="modeList" keyName="text"></u-picker>
- <u-picker :show="showYaofangPicker" @cancel="closeYaofangPicker" @confirm="confirmYaofang" :columns="yaofangList" keyName="text"></u-picker>
- </view>
- </view>
- </template>
- <script>
- import { getDetail,getDeviceStatus,cacheJsonThingsModel,reportError ,getDeviceRunTime,getLatestFirmware,bingDeviceDept,editDeviceName,getDevicePlan,addDevicePlan,delDevicePlan,saveBaowenSetting,getBaoWen,editBaowenSetting,cancelBaowen} from '@/api/device/device.js'
- import config from '@/config'
- import UPicker from "../../uni_modules/uview-ui/components/u-picker/u-picker";
- export default {
- components: {UPicker},
- data(){
- return {
- lineProgreeStyle:"width:0%;background:#50ACFF;height: 100%;",
- liuzhuanPopDlg:false,
- turnPercent:1,
- onlineStatus:false,
- modeList:[[
- {id:1,text:"1"},
- {id:2,text:"2"},
- {id:3,text:"3"},
- ]],
- yaofangList:[[
- {id:0,text:"一般药方"},
- {id:1,text:"解表药方"},
- {id:2,text:"滋补药方"},
- ]],
- productSize:"",
- productImage:"",
- showModelPicker:false,
- showYaofangPicker:false,
- unitFixedStyle:"",
- unitFixedStyle1:"",
- planTime:0,
- setSealingTemperature:160,
- setEdegTemperature:160,
- sealingTemperature:0,
- edegTemperature:0,
- hightTemperature:0,
- currentTemperature:0,
- temperatureTime:1,
- temperature:0,
- packageNumber:1,
- packageVolume:50,
- firstTab:true,
- decoctControlStatus:false,
- decoctControlOnOffStatus:false,
- packageControlOnOffStatus:false,
- subDecoctTabList:[
- {name:'子煎药1'},
- {name:'子煎药2'},
- {name:'子煎药3'},
- ],
- DecoctControlStatus:false,
- PackagControlStatus:false,
- baozhuangTurn:false,
- qitingTurn:false,
- qingxiTurn:false,
- subCurrent:0,
- current:0,
- inputStyle:{height:'44rpx','fontSize':'20rpx'},
- modelKey:['PowerControl','LockControl'],
- jianyaoKeys : ["TempSetting","TimeSetting","WaterVolume","AppointmentTime","TimeSettingFirst","TimeSettingSecond","SecondAddWaterTime"],
- baozhuangKeys:["SetSealTemp","SetBandingTemp","PackageQuantity","PackingVolume"],
- power:{
- loading:true,
- value:0,
- },
- lock:{
- loading:true,
- value:0,
- },
- showTimeDlg:false,
- showErrDlg:null,
- errorMsg:"asdasdasdasd",
- show:null,
- value:"",
- deviceInfo:{},
- id:0,
- summary:[
- ],
- tabs:[
- {tabName:"煎药控制"},
- {tabName:"包装控制"},
- ],
- activeName:0,
- childId:0,
- oneToMul:false,
- inputProp:[],
- watchProp:[],
- columns:[],
- location:{},
- sysDept:null,
- timeobj:{alltime:0,avgtime:0},
- publishMsg:false,
- checkTimer:null,
- functions:[],
- properties:[],
- propMap:{},
- jianyaoTimer:null,
- baozhuangTimer:null,
- editing:false,
- workMode:2,
- leftAppointmentTime:0,
- leftJianyaoTime:0,
- planEditTime:false,
- editWaterVolume:false,
- timeSettingFirst:0,
- currentTimeSettingFirst:0,
- timeSettingSecond:0,
- currentTimeSettingSecond:0,
- editTimeSettingFirst:false,
- editTimeSettingSecond:false,
- secondAddWaterTime:0,
- currentSecondAddWaterTime:0,
- imgUrl:"",
- popDlg:false,
- fengbianDlgShow:false,
- fengkouDlgShow:false,
- wenhuoTimeDlgShow:false,
- planPopDlg:false,
- erqibushuiDlg:false,
- planIngPopDlg:false,
- maxWidth:320,
- jiaozhunTemp:0,//校准温度,
- jiaozhunTemp_temp:0,//校准温度,
- jiaozhunPopDlg:false,
- step:0,
- yuyueIngPop:false,
- firmware:{},
- jianyaoPopClose:true,
- tabIndex:1,
- appid:"wxfd7b1a0e03e9b7e9",
- firstMachine:true,
- secondMachine:false,
- thirdMachine:false,
- forthMachine:true,
- deviceType:1,
- tabActive:[true,false,false],
- resetDuration:4000,
- jianyaoWenduSetting:false,
- jianyaoShijianSetting:false,
- baozhuangFengbianSetting:false,
- baozhuangFengkouSetting:false,
- baozhuangRongLiangSetting:false,
- baozhuangShuLIangSetting:false,
- tempFengkouWendu:0,
- tempFengBianWendu:0,
- boardType:6,//板子类型
- lineTimer:null,
- validCurrent:0,//当前扭力
- turnCurrent:0,//堵转电流值
- setTurnCurrent:0,
- pressTurn:0,
- resetTurn:0,
- drainageTurn:0,
- canGetPrsValue:false,//可以接收挤压的动画
- devicePlanInfo: {},//设备后台预约任务
- devicePlanPopDlg:false,
- deviceYuyueIngPop:false,
- baowenPopDlg:false,
- devicePlanTime:10,
- boardStyle:"",
- baowenTime:10,
- baowenTemp:100,
- hasBaowen:false,
- baowenId:0,
- jiashuiTurn:false,
- baowenTurn:false,
- waterVolume:5,
- currentWaterVolume:12,
- baowenSettingMode:false,
- baowenSettingTimer:null,
- baowenSettingSendTimer:null,
- wenwuhuoTurn:false,
- wenduSetting:false,
- wenduSettingTimer:null,
- planTimeSettingTimer:null,
- waterVolumeSettingTimer:null,
- timeSettingFirstSettingTimer:null,
- timeSettingSecondSettingTimer:null,
- workText:"·在线",
- isH5:false,
- jianyaoMode:0,
- yaofang:{
- type:0,
- name:"一般药方"
- }
- }
- },
- onLoad: function(opt) {
- this.id = opt.id;
- // this.id = 61;
- this.connectMqtt();
- this.getDetail();
- this.imgUrl = config.imgUrl
- // this.fixStyle();
- this.setSystemInfo();
- // this.fixImage();
- // console.log = function(){}
- },
- destroyed() {
- // 取消订阅主题
- this.mqttUnSubscribe(this.deviceInfo);
- clearTimeout(this.checkTimer);
- },
- watch: {
- turnPercent(newvalue){
- // this.lineProgreeStyle = ""
- this.lineProgreeStyle = "width:"+newvalue+"%;background:#50ACFF;height: 100%;";
- },
- pressTurn(newVal,oldValue) {
- // this.pressTurnChangeEvent(newVal);
- },
- resetTurn(newVal){
- // this.resetTurnChnageEvent(newVal);
- },
- decoctControlStatus(newVal,oldValue){
- console.log(newVal+",煎药");
- this.setStatusText();
- },
- currentTemperature(newVal){
- console.log(newVal+",当前温度");
- this.setStatusText();
- },
- temperature(newVal){
- console.log(newVal+",实时温度");
- this.setStatusText();
- }
- },
- methods:{
- setSystemInfo(){
- const systemInfo = uni.getSystemInfoSync();
- let uniPlatform = systemInfo.uniPlatform;
- if(uniPlatform == 'web' || uniPlatform == 'h5'){
- this.isH5 = true;
- }else{
- this.isH5 = false;
- }
- },
- setStatusText(){
- if(!this.jianyaoIng()){
- this.workText = "·在线";
- return;
- }
- if(this.currentTemperature>=this.temperature){
- this.workText = "·文火煎药";
- }else{
- this.workText = "·武火煎药";
- }
- },
- goBack(){
- uni.navigateBack();
- },
- pressTurnChangeEvent(newVal){
- },
- resetTurnChnageEvent(newVal){
- },
- closeDeviceYuyueIngPop(){
- this.deviceYuyueIngPop = false;
- },
- closeDevicePlanPop(){
- this.devicePlanPopDlg = false;
- },
- devicePlan(){
- let self = this;
- if(this.devicePlanTime>600){
- this.$modal.showToast('预约时间最大为600分钟')
- return;
- }
- if(this.devicePlanTime == 0){
- this.$modal.showToast('预约时间不能为空')
- }else{
- let child = this.childId;
- let obj = {deviceNo:this.deviceInfo.serialNumber+"&&"+child,minute:this.devicePlanTime};
- addDevicePlan(obj).then(res=>{
- self.getDevicePlanInfo();
- self.$modal.showToast('预约成功')
- self.devicePlanPopDlg = false;
- });
- }
- },
- closeliuzhuanPop(){
- this.liuzhuanPopDlg = false;
- },
- addBaowenTime(){
- console.log("增加保温时间")
- this.baowenTime++;
- this.sendBaowenSetting();
- },
- subBaowenTime(){
- console.log("减少保温时间")
- this.baowenTime--;
- if(this.baowenTime < 0){
- this.baowenTime = 0;
- }
- this.sendBaowenSetting();
- },
- subBaowenTemp(){
- this.baowenTemp--;
- if(this.baowenTemp<0){
- this.baowenTemp = 1;
- }
- console.log("减少保温温度")
- this.sendBaowenSetting();
- },
- addBaowenTemp(){
- console.log("增加保温温度")
- this.baowenTemp++;
- this.sendBaowenSetting();
- },
- closeBaowenPopDlg(){
- this.baowenPopDlg = false;
- },
- sendBaowenSetting(){
- this.resetBaowenTimer();
- if(this.baowenSettingSendTimer){
- clearTimeout(this.baowenSettingSendTimer);
- }
- let self = this;
- this.baowenSettingSendTimer = setTimeout(function(){
- self.doBaowenSeting();
- },500)
- },
- //6号板子的保温功能
- doBaowenSeting(){
- let arr = [];
- let pressObj = {};
- pressObj.id = "HoldingTemp";
- pressObj.shadow = this.baowenTemp;
- let baowen = {};
- baowen.id = "HoldingTime";
- baowen.shadow = this.baowenTime;
- arr.push(pressObj);
- arr.push(baowen);
- this.mqttPublish(2,this.deviceInfo,arr,true)
- },
- addBaowenSetting(){
- let self = this;
- let obj = {};
- obj.baowenTemp = this.baowenTemp;
- obj.baowenTime = this.baowenTime;
- obj.childId = this.childId;
- obj.productId = this.deviceInfo.productId;
- obj.status = 0;
- obj.deviceNo = this.deviceInfo.serialNumber;
- saveBaowenSetting(obj).then(res=>{
- let code = res.code;
- if(code == 200){
- self.$modal.showToast('添加成功')
- this.closeBaowenPopDlg();
- }else{
- self.$modal.showToast('已经存在保温设置')
- }
- });
- },
- editBaowenSetting(){
- let obj = {};
- obj.baowenTemp = this.baowenTemp;
- obj.baowenTime = this.baowenTime;
- obj.childId = this.childId;
- obj.productId = this.deviceInfo.productId;
- obj.status = 0;
- obj.id = this.baowenId;
- obj.deviceNo = this.deviceInfo.serialNumber;
- editBaowenSetting(obj).then(res=>{
- this.closeBaowenPopDlg();
- });
- },
- delBaowenSetting(){
- let obj = {};
- obj.id = this.baowenId;
- obj.status = 1;
- editBaowenSetting(obj).then(res=>{
- this.hasBaowen = false;
- this.baowenId = 0;
- this.closeBaowenPopDlg();
- });
- },
- confirmLiuzhuannCurrent(){
- if(this.setTurnCurrent<200 || this.setTurnCurrent>400){
- this.notifyError("扭力范围为200-400")
- return;
- }
- let arr = [];
- let pressObj = {};
- pressObj.id = "TurnCurrent";
- pressObj.shadow = this.setTurnCurrent;
- arr.push(pressObj);
- this.mqttPublish(2,this.deviceInfo,arr)
- this.closeliuzhuanPop();
- },
- setPressTurn(){
- let self = this;
- let arr = [];
- let currentPresturn = this.pressTurn;
- let pressObj = {};
- if(this.resetTurn == 1){
- this.resetTurn = 0;
- }
- if(currentPresturn == 1){//代表要关闭
- pressObj.id = "PressTurn";
- pressObj.shadow = 0;
- arr.push(pressObj);
- this.turnPercent = 0;
- this.pressTurn = 0;
- }else{//代表要开启
- pressObj.id = "PressTurn";
- pressObj.shadow = 1;
- arr.push(pressObj);
- this.pressTurn = 1;
- this.resetTurn = 0;
- }
- let resetObj = {}
- resetObj.id = "ResetTurn";
- resetObj.shadow = 0;
- arr.push(resetObj);
- this.mqttPublish(2,this.deviceInfo,arr,true);
- },
- startProgressTimer(type){
- let self = this;
- if(self.lineTimer != null){
- clearInterval(self.lineTimer)
- }
- if(type == 1){
- self.lineTimer = setInterval(function(){
- if(self.turnPercent >=100){
- self.turnPercent = 1;
- clearInterval(self.lineTimer);
- self.startProgressTimer(1);
- }
- self.turnPercent +=2;
- },100);
- }else{
- self.lineTimer = setInterval(function(){
- if(self.turnPercent >=100){
- self.turnPercent = 1;
- clearInterval(self.lineTimer);
- self.startProgressTimer(2);
- }
- self.turnPercent +=2;
- },100);
- }
- },
- setResetTurn(){
- let self = this;
- if(this.pressTurn == 1){
- this.pressTurn = 0;
- }
- let arr = [];
- if(this.resetTurn == 1){
- let resetObj = {};
- resetObj.id = "ResetTurn";
- resetObj.shadow = 0;
- this.resetTurn = 0;
- this.turnPercent = 0;
- arr.push(resetObj);
- }else{
- let resetObj = {};
- resetObj.id = "ResetTurn";
- resetObj.shadow = 1;
- this.resetTurn = 0;
- this.turnPercent = 0;
- arr.push(resetObj);
- }
- let pressObj = {};
- pressObj.id = "PressTurn";
- pressObj.shadow = 0;
- arr.push(pressObj);
- this.mqttPublish(2,this.deviceInfo,arr,true);
- },
- fixImage(heng){
- let self = this;
- wx.getSystemInfo({
- success: res => {
- const { windowWidth, windowHeight, statusBarHeight } = res;
- if(heng){
- let rate = 0.35;
- if(windowHeight<800){
- rate = 0.30;
- }
- let imgHeight = windowWidth*0.85;
- let imageWidth = windowWidth * 1;
- if(this.isH5){
- imgHeight = windowWidth*0.6;
- imageWidth = windowWidth * 0.8;
- }
- self.productSize = ";width:"+imageWidth+"px;height:"+imgHeight+"px;";
- }else{
- let rate = 0.35;
- if(windowHeight<800){
- rate = 0.30;
- }
- let imgHeight = windowHeight*rate;
- let imageWidth = imgHeight * 0.6;
- self.productSize = ";width:"+imageWidth+"px;height:"+imgHeight+"px;";
- }
- }
- })
- },
- propChange(type){
- // if(type == 1){
- // }
- },
- propFocus(type){
- if(type == 1){
- this.jianyaoWenduSetting = true;
- }
- if(type == 2){
- this.jianyaoShijianSetting = true;
- }
- if(type == 3){
- this.baozhuangFengbianSetting = true;
- this.tempFengBianWendu = this.edegTemperature;
- this.edegTemperature = this.setEdegTemperature;
- }
- if(type == 4){
- this.baozhuangFengkouSetting = true;
- this.tempFengkouWendu = this.sealingTemperature;
- this.sealingTemperature = this.setSealingTemperature;
- }
- if(type == 5){
- this.baozhuangRongLiangSetting = true;
- }
- if(type == 6){
- this.baozhuangShuLIangSetting = true;
- }
- },
- autoBlur(type){
- },
- propBlur(type){
- if(type == 1){
- this.jianyaoWenduSetting = false;
- this.changeTemperature();
- }
- if(type == 2){
- this.temperatureTime = this.leftJianyaoTime;
- this.changeTemperatureTime();
- }
- if(type == 3){
- this.setEdegTemperature = this.edegTemperature;
- this.changeEdegTemperature();
- }
- if(type == 4){
- this.setSealingTemperature = this.sealingTemperature;
- this.changeSealingTemperature();
- }
- if(type == 5){
- this.changePackageVolume()
- }
- if(type == 6){
- this.changePackageNumber();
- }
- if(type ==7){
- this.sendWaterVolume();
- }
- if(type == 8){
- this.sendPlanTime();
- }
- if(type == 9){
- this.sendPlanTime(2);
- }
- if(type == 10){
- this.sendBaowenSetting();
- }
- if(type == 11){
- this.sendBaowenSetting();
- }
- },
- modifyName(){
- let self = this;
- uni.showModal({
- title: "修改设备名称",
- editable: true,
- placeholderText: "请输入设备名称",
- content: this.deviceInfo.deviceName,
- showCancel: true,
- success: function (res) {
- console.log(res);
- if(res.confirm){
- let content = res.content;
- let obj = {"deviceId":self.id,deviceName:content};
- editDeviceName(obj).then(res=>{
- if(res.code == 200){
- self.deviceInfo.deviceName = content;
- self.$modal.showToast('修改成功')
- }else{
- self.$modal.showToast('修改失败,请稍后再试')
- }
- });
- }
- },
- fail: function (res) {
- console.log(res);
- }
- })
- },
- showWorkPicker(){
- let self = this;
- uni.showModal({
- title: "提 示",
- content: "非专业人员修改可能导致机器损坏",
- confirmText:"确认",
- success: function (res) {
- if(res.confirm){
- self.showModelPicker = true;
- }
- },
- })
- },
- skip(type){
- if(type == 1){
- wx.navigateToMiniProgram({
- appId: this.appid,
- path: 'pages/news_details/help?id=25',
- success(res) {
- // 打开成功
- },
- fail(res){
- console.log(res);
- }
- })
- }else if(type == 2){
- wx.openCustomerServiceChat({
- extInfo: {url: 'https://work.weixin.qq.com/kfid/kfc4202b8764df71c0c'},
- corpId: 'ww8e678fbe6f1079ba',
- success(res) {
- },
- fail(res){
- console.log(res);
- }
- })
- }
- },
- isMulTab(index){
- let type = this.deviceType;
- if(this.secondMachine || this.secondMachine){
- return true;
- }
- return false;
- },
- isPage(index){
- if(this.tabIndex == index){
- return true;
- }
- return false;
- },
- getUpdateInfo(){
- let self = this;
- getLatestFirmware(this.id).then(res=>{
- self.firmware = res.data;
- let curVersion = self.deviceInfo.firmwareVersion;
- let onlineVersion = self.firmware.version
- if(curVersion>=onlineVersion){
- this.$modal.showToast('当前已经是最新版本')
- }else{
- uni.showModal({
- title: '检测到新版本',
- content: "当前版本:"+curVersion+",新版本:"+onlineVersion,
- cancelText: '取消',
- confirmText: '升级',
- success: function(res) {
- if (res.confirm) {
- self.doUpdate();
- }
- }
- })
- }
- });
- },
- doUpdate(){
- if(this.deviceInfo.status != 3){
- this.notifyError("请等待设备上线后操作")
- return;
- }
- let device = this.deviceInfo;
- let message = "";
- let topic = "";
- let title = "升级";
- topic = "/" + device.productId + "/" + device.serialNumber + "/ota/get";
- message = '{"version":"' + this.firmware.version + '","downloadUrl":"' + this.getDownloadUrl(this.firmware.filePath) + '","size":"'+this.firmware.size+'"}';
- this.$mqttTool.publish(topic, message,title).then(res => {
- this.notifySuccess(res);
- }).catch(res => {
- this.notifyError(res);
- });
- },
- getStatusText(){
- if(this.baozhuangRunning()){
- return "工作中";
- }
- if(this.jianyaoIng()){
- return "工作中";
- }
- if(this.leftAppointmentTime>0){
- return "已预约";
- }
- return "空闲中";
- },
- closeYuyueIngPop(){
- this.yuyueIngPop = false;
- },
- confirmMode(item){
- console.log(item)
- this.workMode = item.value[0].id;
- this.setMode(this.workMode);
- this.closeModelPicker();
- },
- closeModelPicker(){
- this.showModelPicker = false;
- },
- confirmYaofang(item){
- this.yaofang = {
- type:item.value[0].id,
- name:item.value[0].text
- }
- let arr = [];
- let obj = {};
- obj.id = "MedicineType";
- obj.shadow = item.value[0].id;
- arr.push(obj);
- this.mqttPublish(2,this.deviceInfo,arr,true)
- this.closeYaofangPicker();
- },
- closeYaofangPicker(){
- this.showYaofangPicker = false;
- },
- confirmJiaozhunTemp(){
- this.jiaozhunTemp = this.jiaozhunTemp_temp;
- this.temperNumber();
- this.closejiaozhunPop();
- },
- addJiaoZhunTemperature(){
- this.jiaozhunTemp_temp ++;
- if(this.jiaozhunTemp_temp>20){
- this.jiaozhunTemp_temp = 20;
- }
- },
- subJiaoZhunTemperature(){
- this.jiaozhunTemp_temp --;
- if(this.jiaozhunTemp_temp<-20){
- this.jiaozhunTemp_temp = -20;
- }
- },
- closejiaozhunPop(){
- this.jiaozhunPopDlg = false;
- },
- showLiuProp(){
- let self = this;
- uni.showModal({
- title: "提 示",
- content: "非专业人员修改可能导致机器损坏",
- confirmText:"确认",
- success: function (res) {
- if(res.confirm){
- self.liuzhuanPopDlg = true;
- }
- },
- })
- },
- showJiaozhunProp(){
- let self = this;
- uni.showModal({
- title: "提 示",
- content: "非专业人员修改可能导致机器损坏",
- confirmText:"确认",
- success: function (res) {
- if(res.confirm){
- self.jiaozhunTemp_temp = self.jiaozhunTemp;
- self.jiaozhunPopDlg = true;
- }
- },
- })
- },
- resetBaowenTimer(){
- let self = this;
- this.baowenSettingMode = true;
- if(this.baowenSettingTimer != null){
- clearTimeout(this.baowenSettingTimer)
- }
- this.baowenSettingTimer = setTimeout(function(){
- self.baowenSettingMode = false;
- },3000);
- },
- jinBaowenMode(){
- let self = this;
- if(!this.jianyaoOpen()){
- this.notifyError("请先开机后再进行操作")
- return;
- }
- if(this.jianyaoIng()){
- this.$modal.showToast('必须在非煎药模式下才能设置')
- return;
- }
- let arr = [];
- let obj = {};
- obj.id = "HoldingSwitch";
- if(!this.baowenTurn){
- obj.shadow = 1;
- this.baowenTurn = true;
- console.log("保温状态打开")
- this.resetBaowenTimer();
- }else{
- this.baowenTurn = false;
- obj.shadow = 0;
- console.log("保温状态关闭")
- }
- arr.push(obj);
- this.mqttPublish(2,this.deviceInfo,arr,true)
- },
- showBaowenProp(){
- if(this.jianyaoIng()){
- this.$modal.showToast('必须非煎药模式下才能设置')
- return;
- }
- let obj = {};
- obj.childId = this.childId;
- obj.status =0;
- obj.deviceNo = this.deviceInfo.serialNumber;
- getBaoWen(obj).then(res=>{
- let data = res.data;
- if(data != null){
- this.baowenTime = data.baowenTime;
- this.baowenTemp = data.baowenTemp;
- this.baowenId = data.id;
- this.hasBaowen = true;
- }else{
- this.hasBaowen = false;
- this.baowenId = 0;
- }
- this.baowenPopDlg = true;
- });
- },
- fixStyle(){
- let self = this;
- wx.getSystemInfo({
- success: res => {
- const { windowWidth, windowHeight, statusBarHeight } = res;
- // 在这里可以获取到屏幕的宽度和高度
- console.log(windowWidth, windowHeight, statusBarHeight);
- if(windowWidth<=350){
- self.unitFixedStyle = ";padding-top:6px;left: 28vw;";
- self.unitFixedStyle1 = ";padding-top:6px;left: 28vw;";
- }else if(windowWidth>=360){
- self.unitFixedStyle = ";padding-top:10rpx;";
- self.unitFixedStyle1 = ";padding-top:10rpx;left: 32vw;";
- }
- self.maxWidth = windowWidth;
- }
- })
- },
- closePlanIngPop(){
- this.jianyaoPopClose = false;
- this.planIngPopDlg = false;
- },
- closePlanPop(){
- this.planPopDlg = false;
- },
- closeErqibushuiPop(){
- this.erqibushuiDlg = false;
- },
- showBaozhuangDlg(type){
- this.popDlg = true;
- if(type == 1){
- this.fengbianDlgShow = true;
- }else if(type == 2){
- this.fengkouDlgShow = true;
- }else if(type == 3){
- this.wenhuoTimeDlgShow = true;
- }
- },
- closePop(){
- this.popDlg = false;
- this.fengbianDlgShow = false;
- this.fengkouDlgShow = false;
- this.wenhuoTimeDlgShow = false;
- },
- changeTab(index,tag){
- if(!tag){
- return;
- }
- let type = this.deviceType;
- let self = this;
- if(index == 2 || index == 3){
- if(!this.isMulTab(index)){
- return;
- }
- }
- this.resetChoose();
- if(index == 4){
- if(!this.forthMachine){
- return;
- }
- uni.showLoading({title:"加载中"});
- getDeviceStatus(this.id,0).then(res=>{
- let data =res.data;
- this.deviceInfo = data;
- self.parseStatusData(data)
- setTimeout(function () {
- uni.hideLoading();
- self.firstTab = false;
- },100);
- });
- }else{
- this.resetResetFunc();
- let arr = ["a","b","c"]
- if(this.isMulTab(index)){
- this.childId =arr[index-1];
- this.getDeviceStatus(function(){
- self.tabIndex = index;
- self.firstTab = true;
- self.tabActive[index-1] = true;
- self.$forceUpdate();
- });
- }else{
- this.getDeviceStatus(function(){
- self.tabIndex = index;
- self.firstTab = true;
- self.tabActive[index-1] = true;
- self.$forceUpdate();
- })
- }
- console.log(this.tabActive)
- }
- },
- resetResetFunc(){
- let self = this;
- if(self.lineTimer != null){
- clearInterval(self.lineTimer)
- }
- this.turnPercent = 0;
- },
- resetChoose(){
- this.tabIndex = 0;
- for (let i = 0; i < 3; i++) {
- this.tabActive[i] = false;
- }
- },
- changePackageVolume(){
- if(this.packageVolume<50){
- this.packageVolume = 50;
- }
- if(this.packageVolume>300){
- this.packageVolume = 300;
- }
- this.sendBaozhuang("PackingVolume");
- },
- changePackageNumber(){
- let min = 1;
- let max = 999;
- if(this.packageNumber<min){
- this.packageNumber = min;
- }
- if(this.packageNumber>max){
- this.packageNumber = max;
- }
- this.sendBaozhuang("PackageQuantity");
- },
- changeEdegTemperature(){
- let min = 80;
- let max = 220;
- if(this.setEdegTemperature<min){
- this.setEdegTemperature = min;
- }
- if(this.setEdegTemperature>max){
- this.setEdegTemperature = max;
- }
- console.log("current setEdegTemperature is :"+this.setEdegTemperature)
- this.sendBaozhuang("SetBandingTemp");
- },
- changeSealingTemperature(){
- let min = 80;
- let max = 220;
- if(this.setSealingTemperature<min){
- this.setSealingTemperature = min;
- }
- if(this.setSealingTemperature>max){
- this.setSealingTemperature = max;
- }
- console.log("current setSealingTemperature is :"+this.setSealingTemperature)
- this.sendBaozhuang("SetSealTemp");
- },
- changeTemperature(){
- let max = 140;
- let min = 100;
- if(this.workMode == 2){
- min = 1;
- }
- if(this.temperature<min){
- this.temperature = min;
- }
- if(this.temperature>max){
- this.temperature = max;
- }
- console.log("current temperature is :"+this.temperature)
- this.sendJianYao("TempSetting");
- },
- changeTemperatureTime(){
- let min = 1;
- let max = 600;
- if(this.temperatureTime<min){
- this.temperatureTime = min;
- }
- if(this.temperatureTime>max){
- this.temperatureTime = max;
- }
- console.log("current temperatureTime is :"+this.temperatureTime)
- this.sendJianYao("TimeSetting");
- },
- jianyaoOpen(){
- if(this.decoctControlOnOffStatus){
- return true;
- }
- return false;
- },
- baozhuangOpen(){
- if(this.packageControlOnOffStatus){
- return true;
- }
- return false;
- },
- baozhuangRunning(){
- if(this.qingxiTurn || this.baozhuangTurn || this.qitingTurn){
- return true;
- }
- return false;
- },
- jianyaoIng(){
- if(this.decoctControlStatus){
- return true;
- }
- return false;
- },
- cancelPlan(){
- let arr = [];
- let obj = {};
- obj.id = "AppointmentTime";
- obj.shadow = 0;
- arr.push(obj);
- let self = this;
- self.kongzhiJianyao(false,arr);
- this.mqttPublish(2,this.deviceInfo,arr,true);
- this.closeYuyueIngPop();
- },
- toPlan(){
- if(!this.jianyaoOpen()){
- this.$modal.showToast('煎药机已经关机')
- return;
- }
- if(this.leftAppointmentTime>0){
- this.yuyueIngPop = true;
- }else{
- if(this.jianyaoIng()){
- this.$modal.showToast('正在煎药')
- return;
- }
- this.planPopDlg = true;
- }
- },
- toDevicePlan(){
- let self = this;
- if(this.decoctControlOnOffStatus){
- this.$modal.showToast('请先关闭煎药后再预约')
- return;
- }
- getDevicePlan(this.deviceInfo.serialNumber+"&&"+this.childId).then(res=>{
- if(res.data != null){
- self.deviceYuyueIngPop = true;
- self.devicePlanInfo = res.data;
- let minute = self.devicePlanInfo.minute;
- if(minute<0){
- minute = 10;
- }
- self.devicePlanInfo.minute = minute;
- }else{
- self.devicePlanPopDlg = true;
- }
- });
- },
- cancelDevicePlan(){
- delDevicePlan(this.devicePlanInfo.id).then(res=>{
- this.$modal.showToast('取消成功')
- this.deviceYuyueIngPop = false;
- this.devicePlanInfo = null;
- })
- },
- getDevicePlanInfo(){
- if(this.boardType != 4){
- return;
- }
- let self = this;
- self.devicePlanInfo = null;
- getDevicePlan(this.deviceInfo.serialNumber+"&&"+self.childId).then(res=>{
- if(res.data != null){
- self.devicePlanInfo = res.data;
- let minute = self.devicePlanInfo.minute;
- if(minute<0){
- minute = 10;
- }
- self.devicePlanInfo.minute = minute;
- }
- });
- },
- calcuStep(){
- if(this.leftAppointmentTime>0){
- this.step = 0;
- return 0;
- }
- if(this.leftJianyaoTime == 0){
- this.step = 100;
- return ;
- }
- let currentTemperature = this.currentTemperature;
- let hightTemperature = this.temperatureTime-this.leftJianyaoTime;//设置的高温时间
- let targetTemperature =100;// this.temperature;
- let targetTemperatureTime = this.temperatureTime;//倒计时
- if(targetTemperature>100){
- targetTemperature = 100;
- }
- let step = 0;
- if(currentTemperature<100){
- let tem = currentTemperature/200*100;
- step = tem;
- }else{
- step = 50;
- let rate = hightTemperature/targetTemperatureTime;
- rate = rate/2;
- rate = rate*100;
- rate = rate.toFixed(2)
- step = step + parseFloat(rate);
- }
- this.step = step.toFixed(2);
- },
- plan(){
- let self = this;
- if(this.planTime>600){
- this.$modal.showToast('预约时间最大为600分钟')
- return;
- }
- if(this.planTime == 0){
- this.$modal.showToast('预约时间不能为空')
- }else{
- let arr = [];
- let obj = {};
- obj.id = "AppointmentTime";
- obj.shadow = this.planTime;
- arr.push(obj);
- this.kongzhiJianyao(true,arr);
- this.mqttPublish(2,this.deviceInfo,arr,true);
- }
- this.$modal.showToast('预约成功')
- this.planPopDlg = false;
- },
- lockCtrl(key){
- let arr = [];
- let obj = {};
- obj.id = "LockControl";
- if(key == 0){
- obj.shadow = 1;
- this.lock.value = 1;
- }else{
- obj.shadow = 0;
- this.lock.value = 0;
- }
- arr.push(obj);
- this.mqttPublish(2,this.deviceInfo,arr)
- },
- setMode(type){
- let arr = [];
- let obj = {};
- obj.id = "WorkMode";
- obj.shadow = type;
- arr.push(obj);
- this.mqttPublish(2,this.deviceInfo,arr,true)
- this.workMode = type;
- },
- temperNumber(value){
- let arr = [];
- let obj = {};
- obj.id = "CalibrationTemp";
- obj.shadow = this.jiaozhunTemp;
- arr.push(obj);
- this.mqttPublish(2,this.deviceInfo,arr,true)
- },
- volumeNumber(){
- let arr = [];
- let obj = {};
- obj.id = "CapacityCalibration";
- obj.shadow = 1;
- arr.push(obj);
- this.mqttPublish(2,this.deviceInfo,arr,true)
- },
- showConfirm(title,content,yes,no){
- uni.showModal({
- title: title,
- content: content,
- success: function (res) {
- if (res.confirm) {
- yes();
- } else if (res.cancel) {
- no();
- }
- }
- });
- },
- reset(){
- let self = this;
- uni.showModal({
- title: "提 示",
- content: "非专业人员修改可能导致机器损坏",
- confirmText:"确认",
- success: function (res) {
- if(res.confirm){
- let arr = [];
- let obj = {};
- obj.id = "RestoreFactory";
- obj.shadow = 1;
- arr.push(obj);
- self.mqttPublish(2,self.deviceInfo,arr)
- }
- },
- })
- },
- paishui(){
- let flag = false;
- flag = this.drainageTurn == 1?true:false;
- let arr = [];
- let obj = {};
- if(flag){
- obj.shadow = 0;
- }else{
- obj.shadow = 1;
- }
- obj.id = "DrainageTurn";
- arr.push(obj);
- this.mqttPublish(2,this.deviceInfo,arr)
- },
- turnChange(type){
- let flag = false;
- let obj = {};
- if(type ==3){
- flag = this.qingxiTurn;
- obj.id = "WashSwitch";
- }else if(type == 2){
- if(this.qingxiTurn || this.qitingTurn){
- this.$modal.showToast("启停、包装、清洗不能同时打开")
- return;
- }
- flag = this.baozhuangTurn;
- obj.id = "PackageSwitch";
- }else if(type == 1) {
- if(this.qingxiTurn || this.baozhuangTurn){
- this.$modal.showToast("启停、包装、清洗不能同时打开")
- return;
- }
- flag = this.qitingTurn;
- obj.id = "CarrybagSwitch";
- }
- flag = !flag;
- let arr = [];
- if(flag){
- obj.shadow = 1;
- }else{
- obj.shadow = 0;
- }
- arr.push(obj);
- this.mqttPublish(2,this.deviceInfo,arr)
- },
- addPackageVolume(){
- this.packageVolume++;
- if(this.packageVolume>300){
- this.packageVolume = 50;
- }
- console.log("增加包装容量")
- this.changePackageVolume()
- },
- subPackageVolume(){
- this.packageVolume--;
- if( this.packageVolume<50){
- this.packageVolume = 300;
- }
- console.log("减少包装容量")
- this.changePackageVolume()
- },
- addPackageNumber(){
- this.packageNumber++;
- if(this.packageNumber>999){
- this.packageNumber = 1;
- }
- console.log("增加包装数量")
- this.changePackageNumber();
- },
- subPackageNumber(){
- this.packageNumber--;
- if(this.packageNumber<1){
- this.packageNumber = 999;
- }
- console.log("减少包装数量")
- this.changePackageNumber();
- },
- addSealingTemperature(){
- console.log("增加封口温度")
- if(!this.fengkouDlgShow){
- this.fengkouDlgShow = true;
- }
- this.setSealingTemperature++;
- this.changeSealingTemperature();
- },
- subSealingTemperature(){
- console.log("减少封口温度")
- if(!this.fengkouDlgShow){
- this.fengkouDlgShow = true;
- }
- this.setSealingTemperature--;
- this.changeSealingTemperature();
- },
- addEdegTemperature(){
- console.log("增加封边温度")
- this.editing = true;
- if(!this.fengbianDlgShow){
- this.fengbianDlgShow = true;
- }
- this.setEdegTemperature++;
- this.changeEdegTemperature();
- },
- subEdegTemperature(){
- console.log("减少封边温度")
- this.editing = true;
- if(!this.fengbianDlgShow){
- this.fengbianDlgShow = true;
- }
- this.setEdegTemperature--;
- this.changeEdegTemperature();
- },
- subErqibushui(){
- this.secondAddWaterTime--;
- if(this.secondAddWaterTime <0){
- this.secondAddWaterTime = 0
- }
- this.sendJianYao("SecondAddWaterTime")
- },
- addErqibushui(){
- this.secondAddWaterTime++;
- this.sendJianYao("SecondAddWaterTime")
- },
- addTemperatureTime(){
- console.log("增加煎药时间")
- if(!this.wenhuoTimeDlgShow){
- this.wenhuoTimeDlgShow = true;
- this.temperatureTime = this.leftJianyaoTime;
- }
- this.temperatureTime++;
- this.changeTemperatureTime()
- },
- subTemperatureTime(){
- console.log("减少煎药时间")
- if(!this.wenhuoTimeDlgShow){
- this.wenhuoTimeDlgShow = true;
- this.temperatureTime = this.leftJianyaoTime;
- }
- this.temperatureTime--;
- if(this.temperatureTime<=0){
- this.temperatureTime = 1;
- }
- this.changeTemperatureTime()
- },
- addTemperature(){
- console.log("增加煎药温度")
- this.temperature++;
- this.wenduSetting = true;
- this.changeTemperature();
- },
- resetShowPlanTime(){
- let self = this;
- if(this.planTimeSettingTimer){
- clearTimeout(this.planTimeSettingTimer);
- }
- this.planTimeSettingTimer = setTimeout(function(){
- self.planEditTime = false;
- },3000)
- },
- resetWaterVolume(){
- let self = this;
- if(this.waterVolumeSettingTimer){
- clearTimeout(this.waterVolumeSettingTimer);
- }
- this.waterVolumeSettingTimer = setTimeout(function(){
- self.editWaterVolume = false;
- },3000)
- },
- resetTimeSettingFirst(){
- let self = this;
- if(this.timeSettingFirstSettingTimer){
- clearTimeout(this.timeSettingFirstSettingTimer);
- }
- this.timeSettingFirstSettingTimer = setTimeout(function(){
- self.editTimeSettingFirst = false;
- },3000)
- },
- resetTimeSettingSecond(){
- let self = this;
- if(this.timeSettingSecondSettingTimer){
- clearTimeout(this.timeSettingSecondSettingTimer);
- }
- this.timeSettingSecondSettingTimer = setTimeout(function(){
- self.editTimeSettingSecond = false;
- },3000)
- },
- resetShowWendu(){
- let self = this;
- if(this.wenduSettingTimer){
- clearTimeout(this.wenduSettingTimer);
- }
- this.wenduSettingTimer = setTimeout(function(){
- self.wenduSetting = false;
- },3000)
- },
- subTimeFirst(){
- this.timeSettingFirst = parseInt(this.timeSettingFirst) -1;
- if(this.timeSettingFirst<0){
- this.timeSettingFirst = 0;
- }
- this.editTimeSettingFirst = true;
- this.sendJianYao("TimeSettingFirst");
- },
- addTimeFirst(){
- this.timeSettingFirst = parseInt(this.timeSettingFirst) +1;
- this.editTimeSettingFirst = true;
- this.sendJianYao("TimeSettingFirst");
- },
- addTimeSecond(){
- this.timeSettingSecond = parseInt(this.timeSettingSecond) +1;
- this.editTimeSettingSecond = true;
- this.sendJianYao("TimeSettingSecond");
- },
- subTimeSecond(){
- this.timeSettingSecond = parseInt(this.timeSettingSecond) -1;
- if(this.timeSettingSecond<0){
- this.timeSettingSecond = 0
- }
- this.editTimeSettingSecond = true;
- this.sendJianYao("TimeSettingSecond");
- },
- subWaterVolume(){
- this.waterVolume = parseFloat(this.waterVolume) -0.1;
- this.waterVolume = this.waterVolume.toFixed(1);
- this.editWaterVolume = true;
- this.sendWaterVolume();
- },
- addWaterVolume(){
- this.waterVolume = parseFloat(this.waterVolume) +0.1;
- this.waterVolume = this.waterVolume.toFixed(1);
- this.editWaterVolume = true;
- this.sendWaterVolume();
- },
- sendWaterVolume(){
- if(this.waterVolume<0){
- this.waterVolume = 0;
- }
- this.sendJianYao("WaterVolume");
- },
- subTemperature(type){
- console.log("减少煎药温度")
- this.temperature--;
- this.wenduSetting = true;
- this.changeTemperature();
- },
- changeJianyaoMode(mode){
- let arr = [];
- this.jianyaoMode = mode
- let obj2 = {};
- obj2.id = "JianyaoMode";
- obj2.shadow = mode;
- arr.push(obj2);
- this.mqttPublish(2,this.deviceInfo,arr,true);
- },
- addPlanTime(type){
- console.log("增加预约时间")
- if(type == 2){
- this.planTime = this.leftAppointmentTime;
- }
- this.planTime++;
- this.planEditTime = true;
- this.sendPlanTime(type);
- },
- subPlanTime(type){
- console.log("减少预约时间")
- if(type == 2){
- this.planTime = this.leftAppointmentTime;
- }
- this.planEditTime = true;
- this.planTime--;
- this.sendPlanTime(type);
- },
- sendPlanTime(type){
- if(this.planTime<0){
- this.planTime = 0;
- }
- if(type == 2){
- this.leftAppointmentTime = this.planTime;
- }
- this.sendJianYao("AppointmentTime");
- },
- subDevicePlanTime(){
- this.devicePlanTime--;
- if(this.devicePlanTime<0){
- this.devicePlanTime = 1;
- }
- console.log("减少预约时间")
- this.sendJianYao("AppointmentTime")
- },
- addDevicePlanTime(){
- console.log("增加预约时间")
- this.devicePlanTime++;
- this.planEditTime = true;
- this.sendJianYao("AppointmentTime")
- },
- sendBaozhuang(targetKey){
- let self = this;
- let arr = [];
- if(this.baozhuangTimer != null){
- clearTimeout(this.baozhuangTimer);
- }
- this.baozhuangTimer = setTimeout(function (){
- for (let i = 0; i <this.baozhuangKeys.length; i++) {
- let key = this.baozhuangKeys[i];
- let obj = {};
- obj.id = key;
- if(key === "PackingVolume"){
- obj.shadow = this.packageVolume;
- setTimeout(function (){
- self.baozhuangRongLiangSetting = false;
- },self.resetDuration);
- }
- if(key === "PackageQuantity"){
- obj.shadow = this.packageNumber;
- setTimeout(function (){
- self.baozhuangShuLIangSetting = false;
- },self.resetDuration);
- }
- if(key === "SetSealTemp"){
- obj.shadow = this.setSealingTemperature;
- setTimeout(function (){
- self.fengkouDlgShow = false;
- self.baozhuangFengkouSetting = false;
- self.sealingTemperature = self.tempFengKouWendu;;
- },self.resetDuration);
- }
- if(key === "SetBandingTemp"){
- obj.shadow = this.setEdegTemperature;
- setTimeout(function (){
- self.fengbianDlgShow = false;
- self.baozhuangFengbianSetting = false;
- self.edegTemperature = self.tempFengBianWendu;
- },self.resetDuration);
- }
- if(targetKey == key){
- arr.push(obj);
- break;
- }
- }
- this.mqttPublish(2,this.deviceInfo,arr)
- }.bind(this),500);
- },
- sendJianYao(targetKey){
- let self = this;
- let arr = [];
- if(this.jianyaoTimer != null){
- clearTimeout(this.jianyaoTimer);
- }
- this.jianyaoTimer = setTimeout(function (){
- for (let i = 0; i <this.jianyaoKeys.length; i++) {
- let key = this.jianyaoKeys[i];
- let obj = {};
- obj.id = key;
- if(key === "TempSetting"){
- obj.shadow = this.temperature;
- self.resetShowWendu();
- }
- if(key === "SecondAddWaterTime"){
- obj.shadow = this.secondAddWaterTime;
- }
- if(key === "TimeSettingFirst"){
- obj.shadow = this.timeSettingFirst
- // setTimeout(function(){
- // self.wenhuoTimeDlgShow = false;
- // self.jianyaoShijianSetting = false;
- // },self.resetDuration)
- self.resetTimeSettingFirst()
- }
- if(key === "TimeSettingSecond"){
- obj.shadow = this.timeSettingSecond
- // setTimeout(function(){
- // self.wenhuoTimeDlgShow = false;
- // self.jianyaoShijianSetting = false;
- // },self.resetDuration)
- self.resetTimeSettingSecond()
- }
- if(key === "WaterVolume"){
- obj.shadow = this.waterVolume*10;
- self.resetWaterVolume();
- }
- if(key === "AppointmentTime"){
- obj.shadow = this.planTime;
- self.resetShowPlanTime();
- }
- if(key === "TimeSetting"){
- obj.shadow = this.temperatureTime;
- self.leftJianyaoTime = this.temperatureTime;;
- setTimeout(function(){
- self.wenhuoTimeDlgShow = false;
- self.jianyaoShijianSetting = false;
- },self.resetDuration)
- }
- if(targetKey == key){
- arr.push(obj);
- break;
- }
- }
- this.mqttPublish(2,this.deviceInfo,arr,true)
- }.bind(this),500);
- },
- buildPropKey(key){
- if(this.childId !=0){
- return key+"_"+this.childId;
- }else{
- return key;
- }
- },
- addWater(){
- if(!this.jianyaoOpen()){
- this.notifyError("请先开机后再进行操作")
- return;
- }
- if(this.jianyaoIng()){
- this.$modal.showToast('必须在非煎药模式下才能设置')
- return;
- }
- let obj = {};
- let arr = [];
- obj.id = "WaterSwitch";
- if(!this.jiashuiTurn){
- obj.shadow = 1;
- console.log("加水状态打开")
- }else{
- obj.shadow = 0;
- console.log("加水状态关闭")
- }
- arr.push(obj);
- this.mqttPublish(2,this.deviceInfo,arr,true)
- },
- decoctControlChange(){
- if(!this.decoctControlOnOffStatus){
- this.notifyError("请先开机后再进行操作")
- return;
- }
- if(this.decoctControlStatus){
- this.stopDecoctControlChange();
- return;
- }
- this.decoctControlStatus = !this.decoctControlStatus;
- let arr = [];
- let obj = {};
- obj.id = "DecoctingSwitch";
- if(this.decoctControlStatus){
- obj.shadow = 1;
- console.log("煎药状态打开")
- this.checkJianyao();
- }else{
- obj.shadow = 0;
- console.log("煎药状态关闭")
- }
- arr.push(obj);
- this.mqttPublish(2,this.deviceInfo,arr,true)
- },
- kongzhiJianyao(flag,arr){//不判断煎药状态
- let obj = {};
- if(!this.decoctControlOnOffStatus){
- this.notifyError("请先开机后再进行操作")
- return;
- }
- obj.id = "DecoctingSwitch";
- if(flag){
- obj.shadow = 1;
- console.log("煎药状态打开")
- this.checkJianyao();
- }else{
- obj.shadow = 0;
- console.log("煎药状态关闭")
- }
- arr.push(obj);
- },
- stopDecoctControlChange(){
- let obj = {};
- let arr = [];
- if(!this.decoctControlOnOffStatus){
- this.notifyError("请先开机后再进行操作")
- return;
- }
- if(!this.decoctControlStatus){
- return;
- }
- this.decoctControlStatus = !this.decoctControlStatus;
- obj.id = "DecoctingSwitch";
- if(this.decoctControlStatus){
- obj.shadow = 1;
- console.log("煎药状态打开")
- }else{
- obj.shadow = 0;
- console.log("煎药状态关闭")
- }
- arr.push(obj);
- let obj2 = {};
- obj2.id = "AppointmentTime";
- obj2.shadow = 0;
- arr.push(obj2);
- this.mqttPublish(2,this.deviceInfo,arr,true);
- this.cancelBaowen();
- },
- cancelBaowen(){
- let obj = {};
- obj.childId = this.childId;
- obj.productId = this.deviceInfo.productId;
- obj.status = 0;
- obj.deviceNo = this.deviceInfo.serialNumber;
- cancelBaowen(obj);
- },
- decoctControlOnOffChange(){
- let obj = {};
- //4号板子预约是无法开启煎药的
- if(!this.decoctControlOnOffStatus){
- if(this.boardType == 4){
- if(this.devicePlanInfo != null){
- this.$modal.showToast('请先取消预约后再开机');
- return;
- }
- }
- }
- this.decoctControlOnOffStatus = !this.decoctControlOnOffStatus;
- let arr = [];
- obj.id = "PowerControl";
- let isMul = false;
- if(this.boardType != 4){
- if(this.decoctControlStatus){
- this.$modal.showToast('请先结束煎药后操作')
- this.decoctControlOnOffStatus = !this.decoctControlOnOffStatus;
- return;
- }
- }
- if(this.oneToMul && this.firstTab){
- obj.id = "PowerCtl";
- isMul = true;
- }
- if(this.decoctControlOnOffStatus){
- obj.shadow = 1;
- console.log("煎药机开关打开")
- }else{
- obj.shadow = 0;
- console.log("煎药机开关关闭")
- }
- arr.push(obj);
- this.mqttPublish(2,this.deviceInfo,arr,isMul)
- },
- packageControlOnOffChange(){
- let obj = {};
- let arr = [];
- if(this.baozhuangRunning()){
- this.$modal.showToast('请先停止运行后操作')
- return;
- }
- obj.id = "PackagePowerControl";
- this.packageControlOnOffStatus = !this.packageControlOnOffStatus;
- if(this.packageControlOnOffStatus){
- console.log("包装机器开关打开")
- obj.shadow = 1;
- }else{
- console.log("包装机器开关关闭")
- obj.shadow = 0;
- }
- arr.push(obj);
- this.mqttPublish(2,this.deviceInfo,arr)
- },
- containKey(arr,key){
- for (let i = 0; i < arr.length; i++) {
- const data = arr[i];
- if(data == key){
- return true;
- }
- }
- return false;
- },
- // 抽屉状态发生变化触发
- change(e, type) {
- console.log(e);
- },
- showDrawer() {
- this.$refs.showLeft.open();
- },
- closeDrawer() {
- this.$refs.showLeft.close();
- },
- checkItemValue(item){
- if(!item.shadow){
- item.shadow = 0;
- }
- if(!item.unit){
- item.unit = "";
- }
- return true;
- },
- sendProperties(){
- let properties = this.properties;
- for (let i = 0; i < properties; i++) {
- let property = this.properties[i];
- let shadow = property.shadow;
- if(shadow){
- arr.push(property);
- }
- }
- this.mqttPublish(1,this.deviceInfo,arr)
- },
- sendFunctions(){
- let arr = [];
- let functions = this.functions;
- for (let i = 0; i < functions.length; i++) {
- let functionObj = this.functions[i];
- let shadow = functionObj.shadow;
- if(shadow){
- arr.push(functionObj);
- }
- }
- this.mqttPublish(2,this.deviceInfo,arr)
- },
- changeProp(key,val){
- let item = null;
- let obj = null;
- let oneToMul = this.oneToMul;
- if(key === "LockControl"){
- this.lock.value = val;
- item = this.lock;
- }else if(key === "PowerControl"){
- this.power.value = val;
- item = this.power;
- }
- let value = val;
- obj = item.item;
- if(value){
- obj.value = 1;
- obj.shadow = 1;
- }else{
- obj.value = 0;
- obj.shadow = 0;
- }
- if(!oneToMul){
- }
- this.publishThingsModel(this.deviceInfo,obj);
- },
- checkCommonProp(item){
- let id =item.id;
- let isCommonKey = this.modelKey.some(res=>{
- return id === res;
- })
- return !isCommonKey;
- },
- getRunTime(){
- let self = this;
- getDeviceRunTime(this.id).then(res=>{
- self.timeobj = res.data;
- if(self.timeobj.avgtime == ""){
- self.timeobj.avgtime = 0;
- }
- if(self.timeobj.alltime == ""){
- self.timeobj.alltime = 0;
- }
- })
- },
- seeTime(){
- this.showTimeDlg = true;
- this.getRunTime();
- },
- closeTime(){
- this.showTimeDlg = false;
- },
- cancel(){
- this.showErrDlg = false;
- },
- reportError(){
- this.showErrDlg = true;
- },
- doReportError(){
- if(!this.errorMsg){
- this.$modal.showToast('异常信息不能为空')
- }else{
- let self = this;
- let errObj = {};
- errObj.deviceId = this.deviceInfo.deviceId;
- errObj.deviceName = this.deviceInfo.deviceName
- errObj.desc = this.errorMsg;
- errObj.deptId= this.deviceInfo.deptId;
- reportError(errObj).then(res=>{
- self.$modal.showToast(res.msg)
- self.cancel();
- })
- }
- },
- openLocation(){
- uni.openLocation({
- latitude: this.location.latitude,
- longitude: this.location.longitude,
- success: function () {
- console.log('success');
- }
- });
- },
- confirmItemData(e){
- let data = e.value[0];
- this.show.text = data.text;
- this.show.shadow=data.value;
- this.show = null;
- console.log(data);
- },
- send(){
- let shadow = false
- let _arr = []
- this.inputProp.forEach((item)=>{
- _arr.push(item.value)
- })
- // if(_arr.some(val => val === '' || val.length < 0)){
- // shadow = true
- // }
- if(this.deviceInfo.status != 3){
- uni.showToast({
- title:"设备暂未上线",
- icon:"error"
- })
- return;
- }
- if(shadow){
- uni.showToast({
- title:"数据不能为空",
- icon:"error"
- })
- return;
- }
- this.publishThingsModel(this.deviceInfo,this.inputProp.map(item=>{return{"id":item.id,"value":item.value}}))
- },
- /** 更新设备状态 */
- updateDeviceStatus(device) {
- },
- chooseItemData(data){
- if(this.deviceInfo.status != 3){
- uni.showToast({
- title:"设备暂未上线",
- icon:"error"
- })
- return;
- }
- this.columns = [data.enumList];
- this.show =data;
- },
- getDetail(){
- let self = this;
- getDetail(this.id).then(res=>{
- self.deviceInfo = res.data;
- self.deviceType = res.data.type;
- self.deviceType = 23
- let msg = res.msg;
- if(msg){
- try{
- msg = JSON.parse(msg+"");
- }catch (e){
- msg = null;
- }
- }
- let productId = self.deviceInfo.productId;
- if(productId === 57){
- self.boardType = 6;
- }
- let online = self.deviceInfo.status == 3?true:false;
- if(!online){
- if(!self.onlineStatus){
- uni.showModal({
- title: '系统提示',
- content: "设备未在线,无法操作",
- confirmText: '确定',
- showCancel:false,
- success(res){
- if(res.confirm){
- self.onlineStatus = true;
- }
- },
- })
- }
- }
- if(msg != null){
- let b = msg.b;
- let c = msg.c;
- let a = msg.a;
- let d = msg.d;
- if(a == 1){
- self.firstMachine = true;
- }else if(a == 0){
- self.firstMachine = false;
- }
- if(b == 1){
- self.secondMachine = true;
- }else if(b == 0){
- self.secondMachine = false;
- }
- if(c == 1){
- self.thirdMachine = true;
- }else if(c == 0){
- self.thirdMachine = false;
- }
- if(d == 1){
- self.forthMachine = true;
- }else if(d==0){
- self.forthMachine = false;
- }
- }
- console.log("当前设备类型:"+JSON.stringify(self.deviceInfo.type))
- self.location = {
- latitude: self.deviceInfo.latitude,
- longitude: self.deviceInfo.longitude};
- self.sysDept = self.deviceInfo.sysDept;
- self.parseSummay(res.data.summary)
- self.mqttSubscribe(res.data);
- self.getDeviceStatus();
- self.seeTime();
- let heng = false;
- self.productImage = self.imgUrl+'/detail/product.png'
- heng = self.setImage(self.deviceType);
- let typeArr = [7,8,9,10,11,12,15];//单煎药机类型
- for (let i = 0; i < typeArr.length; i++) {
- let typeMa = typeArr[i];
- if(typeMa == self.deviceType){
- self.forthMachine = false;
- }
- }
- self.fixImage(heng);
- if(self.boardType == 4){
- self.boardStyle = ";top:15vh;";
- self.modeList=[[
- {id:1,text:"1"},
- {id:2,text:"2"}
- ]];
- }
- self.$forceUpdate();
- });
- },
- getDeviceStatus(func){
- let self = this;
- if(this.summary.length>1){
- }else{
- this.childId = 0;
- }
- uni.showLoading({title:"加载中"});
- getDeviceStatus(this.id,this.childId).then(res=>{
- let data =res.data;
- this.deviceInfo = data;
- self.parseStatusData(data)
- self.getDevicePlanInfo();
- setTimeout(function () {
- uni.hideLoading();
- if(typeof func == "function"){
- func();
- }
- },50);
- });
- },
- setImage(type){
- let heng = false;
- let self = this;
- self.productImage = self.imgUrl+'/product/24.png'
- return heng;
- },
- getNewDeviceStatus(item){
- console.log(item);
- let self = this;
- if(item.index == 0){
- this.firstTab = true;
- this.getDeviceStatus();
- }
- if(item.index == 1){
- this.firstTab = false;
- getDeviceStatus(this.id,0).then(res=>{
- let data =res.data;
- this.deviceInfo = data;
- self.parseStatusData(data)
- });
- }
- },
- changeSub(item){
- this.childId = item.id;
- this.getDeviceStatus()
- },
- parseEnumList(flag){
- let enumList = this.deviceInfo.enumList;
- for (let enumListElement of enumList) {
- let id = enumListElement.id;
- if(id == 'LockControl'){
- let shadow = enumListElement.shadow;
- this.lock.item = enumListElement;
- if(shadow == 1){
- this.lock.value = true;
- this.lock.loading = false;
- }else if(shadow == 0){
- this.lock.value = false;
- this.lock.loading = false;
- }else{
- this.lock.loading = true;
- }
- }
- if(id == 'PowerControl'){
- let shadow = enumListElement.shadow;
- if(this.oneToMul){
- if(!this.firstTab){
- if(shadow == 1){
- this.decoctControlOnOffStatus = true;
- this.getDevicePlanInfo();
- }else if(shadow == 0){
- this.decoctControlOnOffStatus = false;
- }
- }
- }else{
- if(shadow == 1){
- this.decoctControlOnOffStatus = true;
- this.getDevicePlanInfo();
- }else if(shadow == 0){
- this.decoctControlOnOffStatus = false;
- }
- }
- }
- if(id == 'PowerCtl'){
- if(this.oneToMul && this.firstTab){
- let shadow = enumListElement.shadow;
- if(shadow == 1){
- this.decoctControlOnOffStatus = true;
- this.getDevicePlanInfo();
- }else if(shadow == 0){
- this.decoctControlOnOffStatus = false;
- }
- }
- }
- if(id == 'MedicineType'){
- let shadow = enumListElement.shadow;
- if(!shadow){
- shadow = 0;
- }
- let yaofangMap = {};
- let enumList = enumListElement.enumList
- for (let i = 0; i < enumList.length; i++) {
- let yaofangEnum= enumList[i];
- yaofangMap[yaofangEnum.value] = yaofangEnum.text;
- }
- this.yaofang = {
- type:shadow,
- name:yaofangMap[shadow+""]
- }
- }
- this.formatValue(id,enumListElement,"PackagePowerControl","packageControlOnOffStatus")
- this.formatValue(id,enumListElement,"DecoctingSwitch","decoctControlStatus")
- this.formatValue(id,enumListElement,"CarrybagSwitch","qitingTurn")
- this.formatValue(id,enumListElement,"WashSwitch","qingxiTurn")
- this.formatValue(id,enumListElement,"PackageSwitch","baozhuangTurn");
- this.formatValue(id,enumListElement,"DrainageTurn","drainageTurn");
- //6号
- this.formatValue(id,enumListElement,"WaterSwitch","jiashuiTurn");
- this.formatValue(id,enumListElement,"HoldingSwitch","baowenTurn")
- this.formatValue(id,enumListElement,"SlowHighswitch","wenwuhuoTurn")
- //pressTurn resetTurn
- if(id == 'PressTurn'){
- let shadow = enumListElement.shadow;
- if(!shadow){
- shadow = 0;
- }
- if(shadow == 1){
- this.pressTurn = 1;
- this.resetTurn = 0;
- }else{
- this.pressTurn = 0;
- }
- this.pressTurnChangeEvent(shadow);
- }
- if(id == 'ResetTurn'){
- let shadow = enumListElement.shadow;
- if(!shadow){
- shadow = 0;
- }
- if(shadow == 1){
- this.resetTurn = 1;
- this.pressTurn = 0;
- }else{
- this.resetTurn = 0;
- }
- this.resetTurnChnageEvent(shadow);
- }
- if(id == 'WorkMode'){
- let shadow = enumListElement.shadow;
- if(!shadow){
- shadow = 1;
- }
- this.workMode = shadow;
- }
- let shadow = enumListElement.shadow
- let valueList = enumListElement.enumList;
- for (let valueObj of valueList){
- if(valueObj.value == shadow){
- enumListElement.text = valueObj.text;
- }
- }
- }
- },
- formatValue(id,enumListElement,key,propkey){
- if(id == key){
- let shadow = enumListElement.shadow;
- if(shadow == 1){
- this[propkey] = true;
- }else if(shadow == 0){
- this[propkey] = false;
- }
- }
- },
- parseStatusData(data){
- let self = this;
- cacheJsonThingsModel(data.productId).then(res=>{
- let thingsModel = JSON.parse(res.data);
- let arr = [];
- let arrayList = data.arrayList;
- arr = arr.concat(arrayList);
- let enumList = data.enumList;
- arr = arr.concat(enumList);
- let integerList = data.integerList;
- arr = arr.concat(integerList);
- let stringList = data.stringList;
- arr = arr.concat(stringList);
- let decimalList =data.decimalList
- arr = arr.concat(decimalList);
- self.inputProp = arr;
- for (let i = 0; i < thingsModel.functions.length; i++) {
- for (let j = 0; j < arr.length; j++) {
- let model = arr[j];
- if(model.id == thingsModel.functions[i].id){
- self.functions.push(model);
- }
- }
- }
- for (let i = 0; i < thingsModel.properties.length; i++) {
- for (let j = 0; j < arr.length; j++) {
- let model = arr[j];
- if(model.id == thingsModel.properties[i].id){
- self.properties.push(model);
- }
- }
- }
- let readOnlyList = data.readOnlyList;
- self.watchProp = readOnlyList;
- self.parseEnumList();
- self.parseProp();
- self.checkJianyao();
- })
- },
- showJianyao(){
- this.calcuStep();
- this.planIngPopDlg = true;
- },
- parseProp(){
- let self = this;
- for (let i = 0; i <self.inputProp.length; i++) {
- let prop = self.inputProp[i];
- let value = prop.shadow||0;
- let id = prop.id;
- if(id === "TimeSetting"){//温度设置
- self.temperatureTime = value;
- }
- if(!self.jianyaoWenduSetting){
- if(id === "TempSetting"){
- self.temperature = value;
- }
- }
- if(id == "WaterVolume"){
- this.waterVolume = parseInt(value)/10;
- }
- if(id == "CurrentWaterVolume"){
- this.currentWaterVolume = parseInt(value)/10;
- }
- this.setPropValue(id,"SlowfireTiem","leftJianyaoTime",value,0)
- this.setPropValue(id,"HighTempTime","hightTemperature",value,0)
- this.setPropValue(id,"CurrentTemp","currentTemperature",value,0)
- this.setPropValue(id,"CalibrationTemp","jiaozhunTemp",value,0)
- this.setPropValue(id,"PackingVolume","packageVolume",value,50)
- this.setPropValue(id,"PackageQuantity","packageNumber",value,1)
- //封边温度
- this.setPropValue(id,"BandingTemp","edegTemperature",value);
- this.setPropValue(id,"BandingTemp","tempFengBianWendu",value)
- //封口温度
- this.setPropValue(id,"SealTemp","sealingTemperature",value);
- this.setPropValue(id,"SealTemp","tempFengKouWendu",value)
- this.setPropValue(id,"LeftAppointmentTime","leftAppointmentTime",value,0)
- this.setPropValue(id,"ValidCurrent","validCurrent",value,0)
- this.setPropValue(id,"TurnCurrent","turnCurrent",value,0)
- this.setPropValue(id,"HoldingTemp","baowenTemp",value,0)
- this.setPropValue(id,"HoldingTime","baowenTime",value,0)
- this.setPropValue(id,"AppointmentTime","planTime",value,0)
- this.setPropValue(id,"TimeSettingFirst","timeSettingFirst",value,0)
- this.setPropValue(id,"CurrentTimeSettingFirst","currentTimeSettingFirst",value,0)
- this.setPropValue(id,"TimeSettingSecond","timeSettingSecond",value,0)
- this.setPropValue(id,"CurrentTimeSettingSecond","currentTimeSettingSecond",value,0)
- this.setPropValue(id,"SecondAddWaterTime","secondAddWaterTime",value,0)
- this.setPropValue(id,"CurrentSecondAddWaterTime","currentSecondAddWaterTime",value,0)
- this.setPropValue(id,"JianyaoMode","jianyaoMode",value,0)
- self.propMap[id] = prop;
- }
- },
- setPropValue(id,key,propKey,value,defaultValue){
- if(!value && defaultValue){
- value = defaultValue;
- }
- if(id === key){
- this[propKey] = value;
- }
- },
- parseSummay(summary){
- let self = this;
- if(!summary){
- summary = "";
- }
- if(summary.length>0){
- this.summary = JSON.parse(summary);
- if(self.summary.length>0){
- this.oneToMul = true;
- for (let i = 0; i < self.summary.length; i++) {
- self.summary[i].tabName = self.summary[i].name
- }
- let childId = "";
- if(this.oneToMul){
- this.childId = self.summary[0].id;
- }
- }else{
- this.summary = [{name:"煎药机一"}]
- }
- }else{
- this.summary = [{name:"煎药机一"}]
- }
- },
- goDeviceDetail(id){
- uni.navigateTo({
- url: '/pages/device/detail/detail?id='+id
- });
- },
- async connectMqtt() {
- if (this.$mqttTool.client == null) {
- await this.$mqttTool.connect(this.vuex_token);
- }
- this.mqttCallback();
- this.startCheck();
- },
- /** Mqtt订阅主题 */
- mqttSubscribe(device) {
- // 订阅当前设备状态和实时监测
- let topicStatus = '/' + device.productId + '/' + device.serialNumber + '/status/post';
- let topicProperty = '/' + device.productId + '/' + device.serialNumber + '/property/post';
- let topicFunction = '/' + device.productId + '/' + device.serialNumber + '/function/post';
- let topics = [];
- topics.push(topicStatus);
- topics.push(topicProperty);
- topics.push(topicFunction);
- this.$mqttTool.subscribe(topics);
- },
- /** Mqtt取消订阅主题 */
- mqttUnSubscribe(device) {
- // 订阅当前设备状态和实时监测
- let topicStatus = '/' + device.productId + '/' + device.serialNumber + '/status/post';
- let topicProperty = '/' + device.productId + '/' + device.serialNumber + '/property/post';
- let topicFunction = '/' + device.productId + '/' + device.serialNumber + '/function/post';
- let topics = [];
- topics.push(topicStatus);
- topics.push(topicProperty);
- topics.push(topicFunction);
- console.log('取消订阅', topics);
- this.$mqttTool.unsubscribe(topics);
- },
- /* Mqtt回调处理 */
- mqttCallback() {
- this.$mqttTool.client.on('message', (topic, message, buffer) => {
- let topics = topic.split('/');
- let productId = topics[1];
- let deviceNum = topics[2];
- console.log('接收到内容:'+message);
- message = JSON.parse(message.toString());
- if (topics[3] == 'status') {
- console.log('接收到【设备状态-运行】主题:', topic);
- console.log('接收到【设备状态-运行】内容:', message);
- // 更新列表中设备的状态
- if (this.deviceInfo.serialNumber == deviceNum) {
- this.deviceInfo.status = message.status;
- this.deviceInfo.isShadow = message.isShadow;
- this.deviceInfo.rssi = message.rssi;
- this.updateDeviceStatus(this.deviceInfo);
- }
- }
- if (topics[3] == 'property' || topics[3] == 'function') {
- console.log('接收到【物模型】主题:', topic);
- console.log('接收到【物模型】内容:', message);
- if(this.oneToMul){
- let curTabId = this.childId;
- let msg = [];
- for (let i = 0; i < message.length; i++) {
- let curMsg = message[i];
- let id = curMsg.id;
- let ids = id.split("_");
- let value = curMsg.value;
- if(ids.length == 2){
- if(curTabId == ids[1]){
- msg.push({id:ids[0],value:value});
- }
- }else{
- msg.push(curMsg);
- }
- }
- message = msg;
- }
- // 更新列表中设备的属性
- if (this.deviceInfo.serialNumber == deviceNum) {
- for (let j = 0; j < message.length; j++) {
- let isComplete = false;
- let msgId = message[j].id;
- this.exchangeData(msgId,message[j]);
- // 布尔类型
- if(this.deviceInfo.boolList == null){
- return;
- }
- for (let k = 0; k < this.deviceInfo.boolList.length && !isComplete; k++) {
- if (this.deviceInfo.boolList[k].id == message[j].id) {
- this.deviceInfo.boolList[k].shadow = message[j].value;
- isComplete = true;
- break;
- }
- }
- // 枚举类型
- for (let k = 0; k < this.deviceInfo.enumList.length && !isComplete; k++) {
- if (this.deviceInfo.enumList[k].id == message[j].id) {
- this.deviceInfo.enumList[k].shadow = message[j].value;
- isComplete = true;
- break;
- }
- }
- // 字符串类型
- for (let k = 0; k < this.deviceInfo.stringList.length && !isComplete; k++) {
- if (this.deviceInfo.stringList[k].id == message[j].id) {
- this.deviceInfo.stringList[k].shadow = message[j].value;
- isComplete = true;
- break;
- }
- }
- // 数组类型
- for (let k = 0; k < this.deviceInfo.arrayList.length && !isComplete; k++) {
- if (this.deviceInfo.arrayList[k].id == message[j].id) {
- this.deviceInfo.arrayList[k].shadow = message[j].value;
- isComplete = true;
- break;
- }
- }
- // 整数类型
- for (let k = 0; k < this.deviceInfo.integerList.length && !isComplete; k++) {
- if (this.deviceInfo.integerList[k].id == message[j].id) {
- this.deviceInfo.integerList[k].shadow = message[j].value;
- isComplete = true;
- break;
- }
- }
- // 小数类型
- for (let k = 0; k < this.deviceInfo.decimalList.length && !isComplete; k++) {
- if (this.deviceInfo.decimalList[k].id == message[j].id) {
- this.deviceInfo.decimalList[k].shadow = message[j].value;
- isComplete = true;
- break;
- }
- }
- // 监测数据
- for (let k = 0; k < this.deviceInfo.readOnlyList.length && !isComplete; k++) {
- if (this.deviceInfo.readOnlyList[k].id == message[j].id) {
- this.deviceInfo.readOnlyList[k].shadow = message[j].value;
- // 更新图表
- // for (let m = 0; m < this.monitorChart.length; m++) {
- // if (message[j].id == this.monitorChart[m].data.id) {
- // let data = [{
- // value: message[j].value,
- // name: this.monitorChart[m].data.name
- // }];
- // this.monitorChart[m].chart.setOption({
- // series: [{
- // data: data
- // }]
- // });
- // break;
- // }
- // }
- isComplete = true;
- break;
- }
- }
- }
- this.parseEnumList(true);
- this.checkJianyao();
- if(this.planIngPopDlg){
- this.calcuStep();
- }
- }
- this.$forceUpdate();
- }
- });
- },
- checkJianyao(){
- // if(!this.jianyaoPopClose){
- // return;
- // }
- // let self = this;
- // setTimeout(function(){
- // if(self.decoctControlStatus){
- // self.showJianyao();
- // }
- // },1000);
- },
- exchangeData(msgId,obj){
- if(msgId === "TempSetting"){
- this.temperature = obj.value;
- }
- if(msgId === "TimeSetting"){
- this.temperatureTime = obj.value;
- }
- if(msgId === "CurrentTemp"){
- this.currentTemperature = obj.value;
- }
- if(msgId === "HighTempTime"){
- this.hightTemperature = obj.value;
- }
- if(msgId === "SealTemp"){//封口温度
- if(!this.editing){
- if(this.baozhuangFengkouSetting){
- this.tempFengkouWendu = obj.value;
- }else{
- this.sealingTemperature = obj.value;
- }
- }
- }
- if(msgId === "BandingTemp"){//封边温度
- if(!this.editing){
- if(this.baozhuangFengbianSetting){
- this.tempFengBianWendu = obj.value;
- }else{
- this.edegTemperature = obj.value;
- }
- }
- }
- if(msgId === "PackingVolume"){
- if(!this.editing){
- if(this.baozhuangRongLiangSetting){
- }else{
- this.packageVolume = obj.value;
- }
- }
- }
- if(msgId === "PackageQuantity"){
- if(!this.editing){
- if(this.baozhuangShuLIangSetting){
- }else{
- this.packageNumber = obj.value;
- }
- }
- }
- if(msgId === "LeftAppointmentTime"){
- this.leftAppointmentTime = obj.value;
- }
- if(msgId === "SlowfireTiem"){
- this.leftJianyaoTime = obj.value;
- }
- if(msgId === "CalibrationTemp"){
- this.jiaozhunTemp = obj.value;
- }
- if(msgId === "TurnCurrent"){
- this.turnCurrent = obj.value;
- }
- if(msgId === "ValidCurrent"){
- this.validCurrent = obj.value;
- }
- if(msgId === "WaterVolume"){
- this.waterVolume = parseInt(obj.value)/10;
- }
- if(msgId === "CurrentWaterVolume"){
- this.currentWaterVolume = parseInt(obj.value)/10;
- }
- if(msgId === "HoldingTemp"){
- this.baowenTemp = obj.value;
- }
- if(msgId === "HoldingTime"){
- this.baowenTime = obj.value
- }
- if(msgId === "AppointmentTime"){
- this.planTime = obj.value
- }
- if(msgId === "PressTurn"){
- this.pressTurn = obj.value
- }
- if(msgId === "ResetTurn"){
- this.resetTurn = obj.value
- }
- if(msgId === "DrainageTurn"){
- this.drainageTurn = obj.value
- }
- if(msgId === "TimeSettingFirst"){
- this.timeSettingFirst = obj.value;
- }
- if(msgId === "CurrentTimeSettingFirst"){
- this.currentTimeSettingFirst = obj.value;
- }
- if(msgId === "TimeSettingSecond"){
- this.timeSettingSecond = obj.value;
- }
- if(msgId === "CurrentTimeSettingSecond"){
- this.currentTimeSettingSecond = obj.value;
- }
- if(msgId === "SecondAddWaterTime"){
- this.secondAddWaterTime = obj.value;
- }
- if(msgId === "CurrentSecondAddWaterTime"){
- this.currentSecondAddWaterTime = obj.value;
- }
- if(msgId = "JianyaoMode"){
- this.jianyaoMode = obj.value;
- }
- },
- /** 发布物模型 类型(1=属性,2=功能) */
- publishThingsModel(device, model) {
- // 获取缓存的Json物模型
- cacheJsonThingsModel(device.productId).then(response => {
- let thingsModel = JSON.parse(response.data);
- let type = 0;
- for (let i = 0; i < thingsModel.functions.length; i++) {
- if (model.id == thingsModel.functions[i].id) {
- type = 2;
- break;
- }
- }
- if (type == 0) {
- for (let i = 0; i < thingsModel.properties.length; i++) {
- if (model.id == thingsModel.properties[i].id) {
- type = 1;
- break;
- }
- }
- }
- if (type != 0) {
- this.mqttPublish(type, device, [model]);
- }
- });
- },
- notifyError(res){
- uni.showToast({
- title:res,
- icon:"error"
- })
- },
- notifySuccess(res){
- uni.showToast({
- title:res,
- icon:"success"
- })
- },
- getDownloadUrl(path){
- return this.firmware.downUrl +"/iot/tool/download?fileName="+ path;
- },
- /**
- * Mqtt发布消息
- * @type 类型(1=属性,2=功能,3=OTA升级,4=实时监测)
- * @device 设备
- * @model 物模型
- * */
- mqttPublish(type, device, modelList,needMore) {
- if(this.deviceInfo.status != 3){
- this.notifyError("请等待设备上线后操作")
- return;
- }
- if(modelList.length == 0){
- return;
- }
- let topic = "";
- let message = ""
- let oneToMul = false;
- if(this.summary.length>1){
- oneToMul = true;
- }
- if(!needMore){
- oneToMul = false;
- }
- if(this.firstTab){
- let isKaijiKey = false;
- if(modelList.length >0){
- let modelData = modelList[0];
- let curKeyId = modelData.id;
- if(!this.decoctControlOnOffStatus){
- if(oneToMul){
- if(curKeyId == 'PowerCtl'){
- isKaijiKey = true;
- }
- }else{
- if(curKeyId == 'PowerControl'){
- isKaijiKey = true;
- }
- }
- }else{
- isKaijiKey = true;
- }
- }
- // if(!isKaijiKey){
- // this.notifyError("请先开机后再进行操作")
- // return;
- // }
- }else{
- let isKaijiKey = false;
- if(modelList.length >0){
- let modelData = modelList[0];
- let curKeyId = modelData.id;
- if(!this.packageControlOnOffStatus){
- if(curKeyId == 'PackagePowerControl'){
- isKaijiKey = true;
- }
- }else{
- isKaijiKey = true;
- }
- }
- if(!isKaijiKey){
- this.notifyError("请先开机后再进行操作")
- return;
- }
- }
- if (type == 1) {
- if (device.status == 3) {
- // 属性,在线模式
- topic = "/" + device.productId + "/" + device.serialNumber + "/property-online/get";
- }
- } else if (type == 2) {
- if (device.status == 3) {
- // 功能,在线模式
- topic = "/" + device.productId + "/" + device.serialNumber + "/function-online/get";
- }
- } else if (type == 3) {
- // OTA升级
- topic = "/" + device.productId + "/" + device.serialNumber + "/ota/get";
- } else {
- return;
- }
- let title = "";
- if(type == 1){
- title = "属性";
- }else if(type == 2){
- title = "功能";
- }else if(type == 3){
- title = "升级";
- }
- if (topic != "") {
- // 发布
- let arr = [];
- for (let i = 0; i <modelList.length; i++) {
- let model = modelList[i];
- let modelId = model.id;
- if(oneToMul){
- let childId = this.childId;
- if(childId){
- modelId = modelId+"_"+childId;
- }
- }
- let shadow = model.shadow+"";
- let modelType = model.type;
- let shadowInt = parseInt(shadow,10);
- let isNumber = false;
- let shadowStr = shadowInt+"";
- if(shadowStr === shadow){
- isNumber = true;
- shadow = shadowInt;
- }
- if(modelType == "integer" && !isNumber){
- this.$modal.showToast(model.name+'的值必须是数字类型')
- return;
- }
- arr.push({id:modelId,value:shadow+""});
- }
- message = JSON.stringify(arr);
- let self = this;
- this.$mqttTool.publish(topic, message,title).then(res => {
- this.notifySuccess(res);
- }).catch(res => {
- this.notifyError(res);
- });
- }
- },
- startCheck(){
- let self = this;
- this.checkTimer = setTimeout(function (){
- self.sendHeart();
- self.startCheck();
- },20000);
- },
- checkActive(){
- let self = this;
- setTimeout(function (){
- if(self.publishMsg){
- self.resetConn()
- }
- },3000);
- },
- sendHeart(){
- console.log("发送心跳111")
- let device = this.deviceInfo;
- let self = this;
- let topic = "/property-offline/post";
- self.publishMsg = true;
- self.checkActive();
- this.$mqttTool.publish(topic, "ok", "heart").then(res => {
- self.publishMsg = false;
- }).catch(res => {
- self.publishMsg = false;
- });
- },
- resetConn(){
- console.log("检测异常,重连")
- this.$mqttTool.end();
- this.$mqttTool.client = null;
- this.connectMqtt();
- this.getDetail();
- }
- }
- }
- </script>
- <style>
- .send_btn{
- width: 160rpx !important;
- height: 40rpx !important;
- font-size: 10px !important;
- margin-top: 5px;
- }
- uni-col{
- width: 150px;
- }
- .header{
- width: 100%;
- background: white;
- padding:0px 20rpx;
- position: relative;
- height: 100vh;
- position: relative;
- }
- .content {
- display: flex;
- align-items: center;
- justify-content: center;
- color: #060B25;
- }
- .logo {
- height: 200rpx;
- width: 200rpx;
- margin-top: 200rpx;
- margin-left: auto;
- margin-right: auto;
- margin-bottom: 50rpx;
- }
- .text-area {
- margin:10px;
- padding-bottom: 10px;
- justify-content: center;
- width: 100%;
- }
- .grid-text {
- font-size: 14px;
- color: #909399;
- padding: 10rpx 0 20rpx 0rpx;
- /* #ifndef APP-PLUS */
- box-sizing: border-box;
- /* #endif */
- }
- .title {
- font-size: 36rpx;
- color: #8f8f94;
- }
- .item{
- height: 80rpx;
- line-height: 80rpx;
- }
- .bg{
- position: relative;
- }
- .text-left{
- color: #8A92A5;
- }
- .text-right{
- color: #545454;
- }
- .prop-text{
- position: relative;
- margin:20rpx 0;
- font-size: 26rpx;
- }
- .prop-card-area{
- }
- .prop-card{
- width: 28%;
- height: 100rpx;
- text-align: center;
- display: inline-block;
- background: #F5FCFF;
- box-shadow: 0px 9rpx 8rpx 0px rgba(0,0,0,0.09);
- border-radius: 8rpx;
- margin:0px 15rpx;
- line-height: 48rpx;
- }
- .prop-card-top{
- color: #3E9CFC;
- }
- .prop-card-bottom{
- color: #8A92A5;
- }
- .tab-area {
- background: white;
- position: absolute;
- left: 0px;
- right: 0px;
- top:480rpx;
- bottom:-20px;
- min-height: 200rpx;
- box-shadow: 0rpx 5rpx 27rpx 0rpx rgba(195, 195, 195, 0.4);
- border-radius: 40rpx;
- overflow-y: auto;
- padding-bottom:80rpx;
- }
- .prop-item{
- position: relative;
- display: flex;
- flex-direction: row;
- height: 100rpx;
- line-height: 100rpx;
- margin:0 20rpx;
- }
- .prop-item-left{
- color: #545454;
- width: 100%;
- font-size: 16px;
- border-bottom: 1px solid lightgray;
- margin-left: 120rpx;
- }
- .prop-item-image{
- width: 120rpx;
- height: 120rpx;
- position: absolute;
- bottom:-10rpx;
- }
- .prop-item-right{
- position: absolute;
- right:10rpx;
- top:5rpx;
- }
- input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{
- color:#666;
- font-size:12px;
- }
- .clearfix::after {
- content: "";
- display: block;
- clear: both;
- }
- .decoctControlHeader {
- display: flex;
- align-items: center;
- font-weight: 600;
- }
- .decoctControlTop {
- display: flex;
- height: 240rpx;
- border-bottom:1px #B2B2B2 dotted;
- margin:0 40rpx;
- }
- .decoctControlTopLeft {
- width:40%;
- line-height: 2;
- text-align: center;
- margin: 0 15px;
- position: relative;
- }
- .addTemperature {
- border-radius:5px;
- position:absolute;
- background-color: dodgerblue;
- color:white;
- width: 30px;
- height: 30px;
- left:15px;
- top:80px;
- }
- .addTemperatureBtn {
- border-radius:10px;
- position:absolute;
- clip-path: polygon(50% 0,100% 100%,0 100%);
- transform: scale(0.5);
- left: 0;
- top:0;
- bottom: 0;
- right: 0;
- margin: auto;
- }
- .subTemperature {
- border-radius:5px;
- position:absolute;
- background-color: dodgerblue;
- color:white;
- width: 30px;
- height: 30px;
- right:15px;
- top:80px;
- }
- .subTemperatureBtn {
- border-radius:10px;
- position:absolute;
- clip-path: polygon(50% 0,100% 100%,0 100%);
- transform: scale(0.5);
- left: 0;
- top:0;
- bottom: 0;
- right: 0;
- margin: auto;
- }
- .decoctControlTopRight {
- width:40%;
- line-height: 2;
- text-align: center;
- margin: 0 15px;
- position: relative;
- }
- .decoctControlBottom {
- border-bottom:1px #B2B2B2 dotted;
- width:91vw;
- margin:0 auto;
- padding:10px;
- display: flex;
- justify-content:space-between;
- align-items: center;
- }
- .addTime {
- border-radius:5px;
- position:absolute;
- background-color: dodgerblue;
- color:white;
- width: 30px;
- height: 30px;
- left:15px;
- top:80px;
- }
- .addTimeBtn {
- border-radius:10px;
- position:absolute;
- clip-path: polygon(50% 0,100% 100%,0 100%);
- transform: scale(0.5);
- left: 0;
- top:0;
- bottom: 0;
- right: 0;
- margin: auto;
- }
- .subTime {
- border-radius:5px;
- position:absolute;
- background-color: dodgerblue;
- color:white;
- width: 30px;
- height: 30px;
- right:15px;
- top:80px;
- }
- .subTimeBtn {
- border-radius:10px;
- position:absolute;
- clip-path: polygon(50% 0,100% 100%,0 100%);
- transform: scale(0.5);
- left: 0;
- top:0;
- bottom: 0;
- right: 0;
- margin: auto;
- }
- .packageControlBottomRight {
- border-radius:5px;
- padding:5px 10px;
- margin-right: 15px;
- background-color: #3c9cff;
- color: #fff;
- }
- .packageControlBottomClear {
- border-radius:5px;
- padding:5px 10px;
- background-color: #B2B2B2;
- color: #fff;
- }
- .active_btn{
- background-color: #3c9cff;
- }
- .baozhuang-sub{
- right: 10rpx !important;
- }
- .baozhuang-add{
- left: 6rpx !important;
- }
- .control-input-box{
- display: flex;
- flex-direction: row;
- padding-left: 26rpx;
- }
- .control-input-box-danwei{
- padding-top:12rpx;
- margin-left:4rpx;
- }
- .tabs{
- position: relative;
- top:15vh;
- }
- .child_tab{
- position: relative;
- display: inline-block;
- width: 25%;
- height: 180rpx;
- }
- .child_img{
- width: 50rpx;
- height: 50rpx;
- left: 66rpx;
- top: 66rpx;
- position: relative;
- }
- .child_title{
- position: absolute;
- left: 0px;
- right: 0px;
- text-align: center;
- font-size: 12px;
- bottom: -12rpx;
- color: #060B25;
- }
- .control{
- width: 100%;
- position: relative;
- }
- .control_item{
- position: relative;
- width: 50%;
- display: inline-block;
- height: 150rpx;
- }
- .control_item_detail{
- position: relative;
- top:22rpx;
- }
- .control_item_left{
- position:absolute;;
- left:22%;
- font-size: 55px;
- z-index: 999;
- top:-30rpx
- }
- .control_item_center{
- position:absolute;;
- left:34%;
- top:0vh;
- }
- .control_item_right{
- position:absolute;;
- left:67%;
- font-size: 34px;
- z-index: 999;
- }
- .control_item_center_unit{
- position: absolute;
- left:26vw;
- top: 0.8vh;
- width:200rpx;
- }
- .control_item_title{
- position: absolute;
- bottom:34rpx;
- font-size: 12px;
- width: 100%;
- text-align: center;
- }
- .bottom{
- height: 190rpx;
- position: absolute;
- left: 0px;
- width: 100%;
- padding-top: 18rpx;
- bottom: -8vh;
- }
- .bottom_item{
- display: inline-block;
- width: 20%;
- font-size: 12px;
- height: 100%;
- position: relative;
- text-align: center;
- margin-top: 2vh;
- }
- .active_on{
- color: #50ACFF;
- }
- .status_info{
- position: absolute;
- left: 5vw;
- top: 10vh;
- }
- .status_detail{
- display: flex;
- flex-direction: row;
- }
- .status_text{
- font-size: 16px;
- }
- .online_text{
- font-size: 12px;
- padding-top: 3px;
- }
- .online{
- color: #017128;
- }
- .device_info{
- font-size: 13px;
- }
- .control_area{
- position: relative;
- top:14vh;
- }
- .disabled_tab{
- opacity: 0.4;
- }
- .roate{
- transform: rotate(180deg);
- }
- </style>
|