| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020 | 
							- <!-- 新版本跳首页文件修改版本 -->
 
- <template>
 
- 	<view class="bg-person " :class="bEFHitShake?' screen-jitter ':''">
 
- 		<uni-nav-bar id="nav-bar" status-bar="true" backgroundColor="RGBA(30, 30, 85, 1)" @clickLeft="showClickEvent()"
 
- 			color="#FFFFFF" fixed="true" :border="false">
 
- 			<view slot="left">
 
- 				<view class=" flex align-center margin-left">
 
- 					<image class="png-more" src="/static/more.png"></image>
 
- 				</view>
 
- 			</view>
 
- 			<view slot="middle">
 
- 				<view class="flex justify-center align-center" style="margin-left: 160rpx; ">
 
- 					<view class="flex align-center "
 
- 						style="margin-right: 40rpx; padding: 0 18px; height: 56rpx; background-color: rgba(255, 153, 0, 1); border-radius: 13.5px;">
 
- 						<image class="png-more-black" style="margin-right: 16rpx;"
 
- 							src="/static/common/sideBar/gold_black@2x.png">
 
- 						</image>
 
- 						<view class="text-14px" style="line-height: 28rpx;">{{cGold}}</view>
 
- 					</view>
 
- 					<view class="flex  align-center"
 
- 						style="padding: 0 18px; height: 56rpx; background-color: rgba(255, 153, 0, 1); border-radius: 13.5px;">
 
- 						<image class="png-more-black" style="margin-right: 16rpx; "
 
- 							src="/static/common/sideBar/diamond_black@2x.png">
 
- 						</image>
 
- 						<view class="text-14px" style="line-height: 28rpx;">{{cDiamond}}</view>
 
- 					</view>
 
- 				</view>
 
- 			</view>
 
- 		</uni-nav-bar>
 
- 		<!-- 导航栏下面滚动区域 -->
 
- 		<scroll-view class="scroll-class" @scroll="mainScroll" :scroll-top="scrollTop" :scroll-into-view="toView"
 
- 			scroll-y="true" :style="{ height: scrollviewHight + 'px' }">
 
- 			<view class="flex align-center">
 
- 				<view class="justify-center">
 
- 					<!-- 计划显示 区域 topScrollHight :style="{ height: + '100%' }"-->
 
- 					<scroll-view scroll-y="true" style="height: 100%; width: 100%;">
 
- 						<view class="plan-view">
 
- 							<!-- 拳击模块 -->
 
- 							<view v-if="currentMode == 'pkMode' && 0 === currentModeIndex"
 
- 								style="display: flex; flex-direction: row; height: 200rpx; margin-top: 140rpx; justify-content: space-around;align-items: center;">
 
- 								<view>
 
- 									<view class="cu-avatar-group" style="position: relative;">
 
- 										<view class="cu-avatar round xl" :class="bAiHitShake?' screen-jitter':''"
 
- 											:style="[{ backgroundImage:'url('+avatarUrl+')' }]"></view>
 
- 										<HitEffect ref="aiHitEffectRef"></HitEffect>
 
- 									</view>
 
- 									<view style="margin-top: 20rpx; width: 165rpx;" class="text-cut text-white">
 
- 										{{userName}}{{AJData.isLeftPlayer?'':'当前玩家'}}
 
- 									</view>
 
- 								</view>
 
- 								<view>
 
- 									<image style="width: 104rpx; height: 42rpx ;margin-bottom: 60rpx;"
 
- 										src="/static/personal/pk@2x.png"></image>
 
- 								</view>
 
- 								<view>
 
- 									<view class="cu-avatar-group" style="position: relative;">
 
- 										<view class="cu-avatar round xl" :class="bHitShake?' screen-jitter':''"
 
- 											:style="[{ backgroundImage:'url('+aiObj.avatar+')' }]"></view>
 
- 										<HitEffect ref="hitEffectRef"></HitEffect>
 
- 									</view>
 
- 									<view style="margin-top: 20rpx; width: 165rpx;" class="text-cut text-white">
 
- 										{{aiObj.name}}{{AJData.isLeftPlayer?'':'当前玩家'}}
 
- 									</view>
 
- 								</view>
 
- 								<view
 
- 									style="position: absolute;left: 0;right: 0;top: 0;bottom: 0; height: 200rpx; margin-top: 120rpx;">
 
- 									<HitFistEffect ref="hitFistRef"></HitFistEffect>
 
- 								</view>
 
- 							</view>
 
- 							<!-- pk模式下的跳绳 -->
 
- 							<block v-if="1 === currentModeIndex">
 
- 								<view v-if="currentMode == 'pkMode'" class="position-relative"
 
- 									style="height: 128rpx; background-color: RGBA(30, 30, 85, 1);  z-index: 10;">
 
- 									<view style="height: 14rpx;"></view>
 
- 									<view class="position-absolute-center-top flex justify-center" style="height: 148rpx;">
 
- 										<view class="flex flex-direction justify-center align-center">
 
- 											<view class="cu-avatar-group" style="position: relative;">
 
- 												<view class="cu-avatar round xl"
 
- 													:class="bAiHitShake?' screen-jitter':''"
 
- 													:style="[{ backgroundImage:'url('+avatarUrl+')' }]" style="width: 102.4rpx ;height: 102.4rpx;"></view>
 
- 											</view>
 
- 											<view style="margin-top: 8rpx; width: 165rpx; "
 
- 												class="text-cut text-white text-center">
 
- 												{{userName}}
 
- 											</view>
 
- 										</view>
 
- 										<view class="flex justify-center align-center " style=" width: 300rpx;">
 
- 											<LEDFont style="" :showValue='AJData.myScore' :size="30" color='#FFFFFF'>
 
- 											</LEDFont>
 
- 											<view class="text-white text-bold">:</view>
 
- 											<LEDFont style="" :showValue='AJData.otherScore' :size="30" color='#FFFFFF'>
 
- 											</LEDFont>
 
- 										</view>
 
- 										<view v-if="finallySelectFriendInfo"
 
- 											class="flex flex-direction justify-center align-center"
 
- 											@click="onNavToSelectFriend()">
 
- 											<view class="cu-avatar-group" style="position: relative;">
 
- 												<view class="cu-avatar round xl" :class="bHitShake?' screen-jitter':''"
 
- 													:style="[{ backgroundImage:'url('+finallySelectFriendInfo.avatarUrl+')' }]" style="width: 102.4rpx ;height: 102.4rpx;">
 
- 												</view>
 
- 											</view>
 
- 											<view style="margin-top: 8rpx; width: 165rpx;"
 
- 												class="text-cut text-white text-center">
 
- 												{{finallySelectFriendInfo.username}}
 
- 											</view>
 
- 										</view>
 
- 										<view v-else class="flex flex-direction justify-center align-center"
 
- 											@click="onNavToSelectFriend()">
 
- 											<image style="width: 102.4rpx ;height: 102.4rpx;"
 
- 												src="/static/friend/friend-add.png">
 
- 											</image>
 
- 											<view style="margin-top: 8rpx; width: 165rpx;"
 
- 												class="text-cut text-white text-center">
 
- 												选择好友
 
- 											</view>
 
- 										</view>
 
- 									</view>
 
- 								</view>
 
- 								<!-- 80rpx -->
 
- 								<view v-else style="height:14rpx; background-color: RGBA(30, 30, 85, 1);"> </view>
 
- 							</block>
 
- 							<!-- 圆形进度条 -->
 
- 							<view
 
- 								v-if="(currentMode == 'pkMode' && 1 === currentModeIndex)||currentMode== 'calorieMode'"
 
- 								class="qiun-charts-arcbar">
 
- 								<!-- 进度条 -->
 
- 								<canvas v-show="false" canvas-id="canvasArcbar" id="canvasArcbar"
 
- 									class="charts-arcbar "></canvas>
 
- 								<!-- 图标 -->
 
- 								<!-- <view class="personal-fruit-container">
 
- 									<image style="width: 36rpx;height: 56rpx; margin-top: -120px;"
 
- 										src="../../../static/modal/action-jump/arcbarJumpIcon.png"></image>
 
- 								</view> -->
 
- 								<!-- 图标 -->
 
- 								<!-- 	<view class="personal-fruit-container">
 
- 									<view class="text-13px text-white" style="margin-top: -50px;">
 
- 										失误:{{AJData.faultCount}}</view>
 
- 								</view> -->
 
- 								<!-- 跳动次数 -->
 
- 								<view class="position-absolute-center-bottom flex justify-center"
 
- 									style="align-items: flex-end; height: 276rpx; bottom: 40rpx;">
 
- 									<LEDFont style="" :showValue='AJData.allCount-AJData.faultCount' :height="120"
 
- 										:size="120" color='#FF9900'>
 
- 									</LEDFont>
 
- 									<LEDFont showValue="/" :height="65" :size="65" color='#FFFFFF'>
 
- 									</LEDFont>
 
- 									<LEDFont :showValue='AJData.targetCount' :height="65" :size="65" color='#FFFFFF'>
 
- 									</LEDFont>
 
- 								</view>
 
- 								<!-- 计时器 -->
 
- 								<view class="position-absolute-right-top" style="top: 76rpx;">
 
- 									<arcbarCountDown
 
- 										style="margin-right: 104rpx; border: 2px solid rgb(255,255,255); background-color: RGBA(255, 153, 0, 1); padding: 0px 14px; border-radius: 18px;"
 
- 										ref="arcbarCountDownRef" :show-day="false" :second="AJData.gameLimitTime"
 
- 										color="#FFFFFF" background-color="rgba(255,255,255,0)" border-color="#007AFF"
 
- 										:size="29" splitorColor="#FFFFFF" @timeUp="arcbarCountDownTimeUp"
 
- 										@timeUpdate="arcbarCountDownTimeUpdate" />
 
- 								</view>
 
- 							</view>
 
- 							<!-- 用于定位 -->
 
- 							<view id="boxingHitID" v-if="0 === currentModeIndex" class="charts-pring-bottom">
 
- 								<!-- 添加一个 ConnectBindingDevice 测试 -->
 
- 								<boxing-hit ref="boxingPostRef"
 
- 									:bUpdate="!bHide&&(ConnectBindingDevice!=null)||(cIndex!=-1 && BLEConnectDevice!=null &&
 
- 								 (BLEConnectDevice.deviceType == 'mySelf'||BLEConnectDevice.deviceType == 'BLEHandle' || BLEConnectDevice.deviceType == 'BLERope' ))"
 
- 									:showTime="localSportTime"
 
- 									:bRebound="BLEConnectDevice&&BLEConnectDevice.limitType == 'rebound'"
 
- 									@updateCalorie="boxingUpdateCalorie" @boxingPostCheck="onPersonalCheck"
 
- 									@shake="onScreenShake" @updateSportTime="onUpdateSportTime"
 
- 									@boxingGuideFinish="onBoxingGuideFinish"
 
- 									@boxingPostControlPlay="onActionControlPlay" @modeEvent="onModeEvent"
 
- 									@hitEvent="onHitEvent" @aiHitEvent="onAiHitEvent" @gameOver="onBoxingGameOver"
 
- 									@closeBoxingControl="onCloseBoxingHit"></boxing-hit>
 
- 							</view>
 
- 							<view id='actionJumpID' v-if="1 === currentModeIndex" class="charts-pring-bottom">
 
- 								<action-jump ref="actionJumpRef"
 
- 									:levelData="currentJumpTask!=null?currentJumpTask.item:null"
 
- 									:currentMode="currentMode" @actionJumpCheck="onPersonalCheck"
 
- 									@actionJumpControllerPlay="onActionControlPlay"
 
- 									@actionJumpDataUpdate="onActionJumpDataUpdate" @gameOver="onActionJumpGameOver"
 
- 									@tipLevel="onTipLevel">
 
- 								</action-jump>
 
- 							</view>
 
- 						</view>
 
- 					</scroll-view>
 
- 				</view>
 
- 			</view>
 
- 			<!-- 	<view class="example">
 
- 				<button @click="showGuide('level-game-tip',{levelType:'rotationJump'})">显示 level-game-tip</button>
 
- 			</view> -->
 
- 			<!-- <view class="example">
 
- 				<button @click="onTipLevel">显示 ontipLevel</button>
 
- 			</view> -->
 
- 			<view class="example" style="margin-top: 10rpx;">
 
- 				<button @click="onNavToDirection">跳转校准页面</button>
 
- 			</view>
 
- 			<!-- <view class="example">
 
- 				<button @click="onGetBluetoothConnectView({
 
- 												hiddenType: 'firstInstallation'
 
- 											})">显示 bluetoothConnect</button>
 
- 			</view> -->
 
- 			<!-- <view class="example">
 
- 				<button @click="onUserSignIn()">签到</button>
 
- 			</view> -->
 
- 			<!-- <view class="example">
 
- 				<button @click="showGuide('plan', {
 
- 												hiddenType: 'firstInstallation'
 
- 											})">计划</button>
 
- 			</view> -->
 
- 			
 
- 			<view style="height: 100rpx;"></view>
 
- 		</scroll-view>
 
- 		<!-- 底部中间上滑按钮 -->
 
- 		<view class="flex flex-direction justify-start align-center task-up-button" @tap="showModal"
 
- 			data-target="slideUpModal">
 
- 			<!-- <image style="width: 156rpx; height: 32rpx;" src="../../../static/personal/slideUp.png" @tap="showModal"
 
- 				data-target="slideUpModal"></image> -->
 
- 			<image style="width: 248rpx;height: 104rpx;" class="position-absolute-center"
 
- 				src="../../../static/modal/level-tip/level-tip-bg-orange.png"></image>
 
- 			<view class="text-blue bg-white radius "
 
- 				style="z-index: 10; margin-top: 20rpx; width: 72rpx; height: 12rpx;"></view>
 
- 			<!-- <image style="width: 30px;height: 23px; " src="../../../static/modal/level-tip/level-tip-logo@2x.png">
 
- 			</image> -->
 
- 			<!-- <view style="width: 100%;height: 16rpx; background-color: #FFFFFF; color: #FFFFFF;"></view> -->
 
- 		</view>
 
- 		<!-- 右下角导航栏 -->
 
- 		<round-fab ref="roundFabRef" :connect="cIndex!=-1 && BLEConnectDevice!=null" @fabClick="fabClick"></round-fab>
 
- 		<!-- 侧边栏 如果app使用 nvue 侧边栏 -->
 
- 		<!-- #ifdef H5 || MP-WEIXIN -->
 
- 		<sideBar ref="sideBar"></sideBar>
 
- 		<!-- #endif -->
 
- 		<!-- 训练卡 -->
 
- 		<view class="cu-modal " :class="modalName == 'sportCompletion' ? '' : ''">
 
- 			<view style="
 
- 			position: relative; 
 
- 			width: 586rpx;
 
- 			height: 766rpx;
 
- 			background-color: #FFFFFF; 
 
- 			border-radius: 25px;
 
- 			display: inline-block;
 
- 			vertical-align: middle;
 
- 			margin-left: auto;
 
- 			margin-right: auto;
 
- 			overflow: hidden;">
 
- 				<view style="position: relative; width: 100%; height: 328rpx;">
 
- 					<image style="position: absolute;top: 0;left: 0; width: 100%;height: 100%;"
 
- 						src="../../../static/sidebar_top_bg.png"></image>
 
- 					<view class="flex flex-direction justify-around align-center"
 
- 						style="position: relative; height: 100%;">
 
- 						<view class="text-white">已在哔嘣健身训练了</view>
 
- 						<view class="text-white"><span style="font-size: 43px;">{{sportData.time}}</span> 分钟</view>
 
- 						<view class="text-white">本次达标率{{sportData.percent}}%</view>
 
- 					</view>
 
- 				</view>
 
- 				<view class="flex justify-around">
 
- 					<view class="flex flex-direction justify-around align-center"
 
- 						style="position: relative; height: 162rpx;">
 
- 						<view class="text-grey">消耗</view>
 
- 						<view class="text-grey"><span
 
- 								style="font-size: 18px; color: #000000;">{{sportData.calorie}}</span> 卡</view>
 
- 					</view>
 
- 					<view class="flex flex-direction justify-around align-center"
 
- 						style="position: relative; height: 162rpx;">
 
- 						<view class="text-grey">踩中</view>
 
- 						<view class="text-grey"><span style="font-size: 18px; color: #000000;">{{sportData.hit}}</span>
 
- 							次</view>
 
- 					</view>
 
- 					<view class="flex flex-direction justify-around align-center"
 
- 						style="position: relative; height: 162rpx;">
 
- 						<view class="text-grey">失误</view>
 
- 						<view class="text-grey"><span style="font-size: 18px; color: #000000;">{{sportData.miss}}</span>
 
- 							次</view>
 
- 					</view>
 
- 				</view>
 
- 				<view class="flex flex-direction justify-around align-center margin-top-sm">
 
- 					<view style="position: relative; width: 500rpx; border:1rpx solid #EEEEEE ;"></view>
 
- 				</view>
 
- 				<view class="flex flex-direction justify-around align-center" style="height: 230rpx;">
 
- 					<view class="text-black text-16px">非常优秀,继续加油!</view>
 
- 					<view class="flex justify-center align-center text-white make-bg-bPurple round text-16px"
 
- 						style="width: 300rpx;height: 80rpx;" @tap="hideModal">确定</view>
 
- 				</view>
 
- 			</view>
 
- 		</view>
 
- 		<!-- :class="modalName == 'jumpAnimation' ? 'show' : ''" -->
 
- 		<view class="cu-modal " :class="modalName == 'jumpAnimation' ? '' : ''">
 
- 			<view style="
 
- 			position: relative; 
 
- 			width: 586rpx;
 
- 			height: 400rpx;
 
- 			background-color: #FFFFFF; 
 
- 			border-radius: 4px;
 
- 			display: inline-block;
 
- 			vertical-align: middle;
 
- 			margin-left: auto;
 
- 			margin-right: auto;
 
- 			overflow: hidden;">
 
- 				<view style="height: 100%;display: flex;justify-content: center;align-items: center;">
 
- 					<character></character>
 
- 				</view>
 
- 			</view>
 
- 		</view>
 
- 		<!-- 引导蒙层 bGuidePages guideCurrent-->
 
- 		<code-elf-guide ref="codeElfGuide" v-if="bGuidePages" @hide="guideHide" @change="onGuideChange"
 
- 			:current="guideCurrent" :currentMode="currentMode"></code-elf-guide>
 
- 		<view v-if="bStartCountDown" class="CountDownMask">
 
- 			{{BoxingPostCountDownText}}
 
- 		</view>
 
- 		<view class="cu-modal " :class="modalName=='showPlanTipModal'?'show':''"
 
- 			@touchmove.stop.prevent="moveBoxingHandle">
 
- 			<view class="cu-bind-modal">
 
- 				<view style="position: absolute; top: 0; left: 0; width: 100%; height:100%;">
 
- 					<image style="position: absolute;top: 0;left: 0; width: 100%;height: 100%;"
 
- 						src="/static/modelBg.png"></image>
 
- 				</view>
 
- 				<view class="flex flex-direction justify-between " style="position: relative; height: 100%;">
 
- 					<view class="flex justify-around justify-center align-center" style="margin: 170rpx 30rpx 0 30rpx;">
 
- 						<view style="width: 80rpx;height: 2rpx;border-radius: 2px; background-color: #cbcdcf;"></view>
 
- 						<view class="make-text-bPurple" style=" font-size: 20px;">提示</view>
 
- 						<view style="width: 80rpx;height: 2rpx;border-radius: 2px;background-color: #cbcdcf;"></view>
 
- 					</view>
 
- 					<view class="text-16px" style="align-self: center; max-width: 200px; word-break: break-all;">
 
- 						{{planTip[planTipIndex]}}
 
- 					</view>
 
- 					<view class="flex justify-around align-center"
 
- 						style=" border-top: 1rpx solid #EEEEEE; margin-bottom: 2px;">
 
- 						<view class="flex justify-center align-center  text-16px" style="width: 100%;height: 123rpx;"
 
- 							@tap="hidePlanTipModal">取消</view>
 
- 						<view style="height: 123rpx;width: 1px;background-color: #EEEEEE;"></view>
 
- 						<view class="flex justify-center align-center  text-16px" style="width: 100%;height: 123rpx;"
 
- 							@tap="confirmPlanTipModal">确定</view>
 
- 					</view>
 
- 				</view>
 
- 			</view>
 
- 		</view>
 
- 		<ModalTip ref='modalTipRef' :class="modalName=='showModalTip'?' show':''" @hide="onModalTipHide"
 
- 			@confirm="onModalTipConfirm"></ModalTip>
 
- 		<!-- 任务栏 -->
 
- 		<view class="cu-modal bottom-modal" :class="modalName=='slideUpModal'?'show':''" @tap="hideModal">
 
- 			<view class="cu-dialog bg-white" style="border-radius: 15px 15px 0 0 ;" @tap.stop="">
 
- 				<view class="flex justify-center align-center position-relative"
 
- 					style="width: 750rpx; height: 64rpx; background-color: RGBA(255, 153, 0, 1);" @tap="hideModal">
 
- 					<view class="text-blue bg-white radius" style="width: 114rpx; height: 12rpx;"></view>
 
- 					<!-- <view class="position-absolute-right-top">
 
- 						<image style="width: 64rpx;height: 64rpx;" src="../../../static/common/modal/task-close@2x.png">
 
- 						</image>
 
- 					</view> -->
 
- 				</view>
 
- 				<view class="flex justify-between" style="width: 100%; padding: 34rpx 60rpx 46rpx 81rpx;">
 
- 					<view class="flex align-center justify-center">
 
- 						<view class="text-16px text-bold make-text-bPurple"
 
- 							style="line-height: 32rpx;  margin-right: 18rpx;">{{currentMode == 'pkMode'?'PK模式':'健身模式'}}
 
- 						</view>
 
- 						<image style="width: 42rpx;height: 24rpx;" src="/static/common/modal/right-arrow.png"></image>
 
- 					</view>
 
- 					<view>
 
- 						<button class="make-bg-bPurple flex justify-center align-center" @click="onSwitchMode">
 
- 							<view class="flex align-center justify-center" style="width: 190rpx;height: 60rpx;">
 
- 								<image style="width: 24rpx;height: 22rpx; margin-right: 18rpx;"
 
- 									src="/static/personal/switchWhite.png"></image>
 
- 								<view class="text-14px text-white" style="line-height: 28rpx;">
 
- 									{{currentMode !== 'pkMode'?'PK模式':'健身模式'}}
 
- 								</view>
 
- 							</view>
 
- 						</button>
 
- 					</view>
 
- 				</view>
 
- 				<scroll-view scroll-y="true" style="height: 800rpx; max-height: 800rpx;min-height: 460rpx;"
 
- 					:style="{ height: modalHeight + 'px' }" :scroll-into-view="taskIntoView"
 
- 					:scroll-top="taskScrollTop">
 
- 					<!-- :class="!item.isUnlock?'':'make-text-bPurple'" -->
 
- 					<view class="my-column-cu-steps">
 
- 						<view class="cu-item"
 
- 							:class="(tempSelectedLevel!=null&&item.id==tempSelectedLevel.item.id)?'make-bg-bPurple-01':''"
 
- 							v-for="(item,index) in currentTaskList" :key="index" :id='"task_"+index'
 
- 							@click="selectTask(index,item)">
 
- 							<image v-if="item.isUnlock" class="my-column-cu-image"
 
- 								src="../../../static/common/modal/unLock.png"></image>
 
- 							<image
 
- 								v-else-if="index>=1&¤tTaskList[index-1].isUnlock&¤tTaskList[index-1].isPassed"
 
- 								class="my-column-cu-image" src="../../../static/common/modal/canUnlock.png">
 
- 							</image>
 
- 							<image v-else class="my-column-cu-image" src="../../../static/common/modal/lock.png">
 
- 							</image>
 
- 							<view class="content">
 
- 								<view class="text-15px text-bold text-cut text-left text-black text-medium"
 
- 									style="margin-left: 48rpx; width: 360rpx;margin-top: 30rpx;">
 
- 									{{index+1}}. {{item.name}}
 
- 								</view>
 
- 								<view class="flex justify-start align-center" style="margin:20rpx 0 20rpx 86rpx;">
 
- 									<!-- 居中绘制星星样式 -->
 
- 									<view class="flex align-center justify-center"
 
- 										style="margin-right: 36rpx;margin-top: 4rpx;">
 
- 										<image style="width: 36rpx;height: 36rpx; margin-right: 18rpx;"
 
- 											src="/static/common/sideBar/sGold.png"></image>
 
- 										<view class="text-13px text-black text-medium" style="line-height: 26rpx;">
 
- 											{{item.consumeGold}}
 
- 										</view>
 
- 									</view>
 
- 									<view class="flex align-center justify-center"
 
- 										style="margin-right: 36rpx;margin-top: 4rpx;">
 
- 										<image style="width: 38rpx;height: 34rpx; margin-right: 18rpx;"
 
- 											src="/static/common/sideBar/sDiamond.png"></image>
 
- 										<view class="text-13px text-black text-medium" style="line-height: 26rpx;">
 
- 											{{item.consumeDiamond}}
 
- 										</view>
 
- 									</view>
 
- 								</view>
 
- 								<!-- <view class="text-13px text-grey text-left" style="margin: 20rpx 20rpx 0 86rpx;">
 
- 									{{item.conditionPassed.explain}}
 
- 								</view> -->
 
- 								<view class="flex justify-start align-center" style="margin-left: 86rpx;">
 
- 									<view class="flex flex-direction align-center" v-for="(item, index) in 5"
 
- 										:key="index">
 
- 										<image style="width: 34rpx;height: 32rpx;"
 
- 											src="../../../static/modal/action-jump/stars.png">
 
- 										</image>
 
- 									</view>
 
- 								</view>
 
- 							</view>
 
- 							<image class="my-column-cu-right-image" style="pointer-events:auto;"
 
- 								src="../../../static/common/modal/medal.png" @click="showPopup('prompt',item)">
 
- 							</image>
 
- 							<view v-if="currentJumpTask!=null&&item.id==currentJumpTask.item.id"
 
- 								class="position-absolute-right-bottom make-text-bPurple text-13px text-medium "
 
- 								style="right: 70rpx;bottom: 24rpx;">游戏中...</view>
 
- 							<!-- /static/devicesOther/radio-g -->
 
- 							<image class="my-column-cu-image"
 
- 								style="left: 140rpx;top: 70rpx; width: 30rpx;height: 30rpx;"
 
- 								:src="(tempSelectedLevel!=null&&item.id==tempSelectedLevel.item.id)?'/static/devicesOther/radio-b.png':'.png'"
 
- 								mode="aspectFit"></image>
 
- 						</view>
 
- 					</view>
 
- 				</scroll-view>
 
- 				<button class="cu-btn make-bg-bPurple text-white margin-top margin-bottom"
 
- 					style="width: 604rpx;height: 88rpx;" @tap="onConfirmSelectionLevel">确认</button>
 
- 				<!-- <button class="cu-btn make-bg-bPurple text-white margin-top margin-bottom"
 
- 					style="width: 604rpx;height: 88rpx;" @tap="onPassTheLevel">点击直接通过所选关卡</button>
 
-  -->
 
- 			</view>
 
- 		</view>
 
- 		<!-- 这里vConsole 是为了解决再页面内显示vconsole -->
 
- 		<view id="vconsole" :prop="vLog" :change:prop="vconsole.updateData"></view>
 
- 	</view>
 
- </template>
 
- <!-- 这里vConsole 是为了解决再页面内显示vconsole -->
 
- <script module="vconsole" lang="renderjs">
 
- 	import VConsole from '../../../util/util-js/vconsole.min.js'
 
- 	new VConsole();
 
- 	export default {
 
- 		mounted() {
 
- 			// ...
 
- 		},
 
- 		data: {
 
- 			return () {}
 
- 		},
 
- 		methods: {
 
- 			updateData(newValue, oldValue, ownerInstance, instance) {
 
- 				// newValue: 新数据
 
- 				// oldValue: 老数据
 
- 				var log = console.log.bind(console);
 
- 				log(newValue)
 
- 			}
 
- 		}
 
- 	}
 
- </script>
 
- <script>
 
- 	// import uniNavBar from '@/components/uni-nav-bar/uni-nav-bar.vue';
 
- 	import uCharts from '@/components/u-charts/u-charts.js';
 
- 	import myPicker from '@/components/slambb-picker/slambb-picker.vue';
 
- 	import pickerData from '@/components/slambb-picker/picker.js';
 
- 	import date from '@/util/util-js/date.js';
 
- 	import sideBar from '@/components/side-bar/side-bar.vue';
 
- 	import reqUtil from '@/util/util-js/requstUtil.js';
 
- 	import config from '@/common/config.js';
 
- 	import uniCountDown from '@/components/uni-count-down/uni-count-down.vue'
 
- 	import character from "@/components/electAni/character.vue"
 
- 	import fruit from "@/components/fruitMachine/fruitMachine.vue"
 
- 	import promptBox from "@/components/prompt-box/prompt-box.vue"
 
- 	import roundFab from "@/components/round-fab/round-fab.vue"
 
- 	import codeElfGuide from '@/components/code-elf-guide/code-elf-guide.vue'
 
- 	import boxingPost from "@/components/modal/boxing-post/boxing-post.vue"
 
- 	import boxingHit from "@/components/modal/boxing-hit/boxing-hit.vue"
 
- 	import actionJump from "@/components/modal/action-jump/action-jump.vue"
 
- 	import AccAndOri from "@/util/util-js/AccAndOri.js"
 
- 	import AvatarConfig from "@/util/util-js/avatar.js"
 
- 	import HitEffect from "@/components/effectHit/hitEffect.vue"
 
- 	import HitFistEffect from "@/components/effectHit/hitFistEffect.vue"
 
- 	import ModalTip from "@/components/modal-tip/modalTip.vue"
 
- 	import keyboardListener from '@/components/keyboard-listener/keyboard-listener.vue'
 
- 	import LEDFont from '@/components/LEDFont/LEDFont.vue'
 
- 	import arcbarCountDown from '@/components/uni-count-down/uni-count-down.vue'
 
- 	import modalMask from '@/components/modal-mask/modal-mask.vue'
 
- 	// 获取 module 
 
- 	// var testModule = uni.requireNativePlugin("MyAttitude")
 
- 	// const modal = uni.requireNativePlugin('modal');
 
- 	import {
 
- 		mapState,
 
- 		mapMutations
 
- 	} from 'vuex';
 
- 	var _self;
 
- 	var canvaArcbar1;
 
- 	export default {
 
- 		computed: mapState(['bCanvasShow', 'forcedLogin', 'hasLogin', 'userName', 'avatarUrl', 'days', 'remainingDays',
 
- 			'signature', 'weight', 'height', 'planData', 'BLEDeviceShowList', 'BLEConnectDevice', 'bPlanExpired',
 
- 			'bPlanFinish',
 
- 			'bGuidePages',
 
- 			'globalAcc', 'globalOri', 'DeviceBindingList', 'ConnectBindingDevice', 'cIndex', 'bNewGuide',
 
- 			'localSportTime',
 
- 			'currentModeIndex', 'oldArcbarProCalorie', 'oldArcbarAllCalorie', 'bOpenBluetooth', 'bOpenSuccess',
 
- 			'bListenAdapterStateChange', 'bConnection', 'bVerifiedConnection', 'currentInstruction',
 
- 			'instructionState',
 
- 			'LocationGameUrl',
 
- 			'bPhoneMatched',
 
- 			'versionCodeState',
 
- 			'platform',
 
- 			'systemInfo', 'navHeight', 'tabbarHeight',
 
- 			'cDiamond', 'cGold',
 
- 			'finallySelectFriendInfo',
 
- 			'currentJumpTask', 'singlePersonList', 'multiPersonList',
 
- 			'guideUnlockState'
 
- 		]),
 
- 		components: {
 
- 			// uniNavBar,
 
- 			myPicker,
 
- 			sideBar,
 
- 			uniCountDown,
 
- 			character,
 
- 			fruit,
 
- 			roundFab,
 
- 			codeElfGuide,
 
- 			boxingPost,
 
- 			boxingHit,
 
- 			promptBox,
 
- 			HitEffect,
 
- 			HitFistEffect,
 
- 			ModalTip,
 
- 			keyboardListener,
 
- 			actionJump,
 
- 			LEDFont,
 
- 			arcbarCountDown,
 
- 			modalMask
 
- 		},
 
- 		data() {
 
- 			return {
 
- 				title: 'pk模式', //pk模式 健身模式
 
- 				modalName: null,
 
- 				originalDate: '', //记录new date
 
- 				currentDate: '', //当前日期
 
- 				cWidthArcbar: '', //圆弧进度图
 
- 				cHeightArcbar: '', //圆弧进度图
 
- 				arcbarWidth: '', //圆弧进度图,进度条宽度,此设置可使各端宽度一致
 
- 				pixelRatio: 1,
 
- 				// textarea: '',
 
- 				// arcbarImagePath: '/static/logo.png',
 
- 				// cWidth: '',
 
- 				// cHeight: '',
 
- 				scrollviewHight: '',
 
- 				// 顶部区域部分
 
- 				topScrollHight: '',
 
- 				// 选择器
 
- 				pickerObj: {},
 
- 				// lineAImagePath: '/static/logo.png',
 
- 				// visible: true,
 
- 				// indicatorStyle: `height: ${Math.round(uni.getSystemInfoSync().screenWidth / (750 / 100))}px;`,
 
- 				//设备列表
 
- 				deviceList: [{
 
- 					name: '蹦床',
 
- 					icon: '/static/trampoline.png'
 
- 				}],
 
- 				cState: 1,
 
- 				//游戏列表
 
- 				gameList: [],
 
- 				//视频列表,现在视频是和游戏一起管理
 
- 				videoList: [],
 
- 				//运动数据
 
- 				sportData: {
 
- 					calorie: 0,
 
- 					hit: 0,
 
- 					miss: 0,
 
- 					percent: 0,
 
- 					time: 0,
 
- 					allData: 0
 
- 				},
 
- 				//设置滚动栏高度
 
- 				scrollTop: 0,
 
- 				//scroll view 跳转到对应的组件上
 
- 				toView: '',
 
- 				guideCurrent: 0,
 
- 				bHide: false,
 
- 				//屏幕抖动
 
- 				bEFHitShake: false,
 
- 				bStartBoxingPost: false,
 
- 				bStartCountDown: false,
 
- 				BoxingPostCountDownText: 3,
 
- 				b_countDown: null,
 
- 				countDownUrl: [
 
- 					"/static/personal/audio/GO.mp3",
 
- 					"/static/personal/audio/1.mp3",
 
- 					"/static/personal/audio/2.mp3",
 
- 					"/static/personal/audio/3.mp3"
 
- 				],
 
- 				threeUrl: "/static/personal/audio/3.mp3",
 
- 				twoUrl: "/static/personal/audio/2.mp3",
 
- 				oneUrl: "/static/personal/audio/1.mp3",
 
- 				goUrl: "/static/personal/audio/GO.mp3",
 
- 				dangdang: "/static/personal/audio/dangdang.mp3",
 
- 				personalAudioContext: null,
 
- 				planTip: [
 
- 					'您今天的目标已经达成,是否进行自由训练.',
 
- 					'您今天的目标还没完成,是否结束训练.'
 
- 				],
 
- 				planTipIndex: 0,
 
- 				//匹配的ai信息
 
- 				aiObj: {
 
- 					name: '匿名',
 
- 					avatar: '/static/defaultAvatar.png'
 
- 				},
 
- 				aiOldObj: {
 
- 					name: '匿名',
 
- 					avatar: '/static/defaultAvatar.png'
 
- 				},
 
- 				currentMode: 'calorieMode', //pkMode calorieMode
 
- 				bHitShake: false,
 
- 				bAiHitShake: false,
 
- 				//限制重连,比如去了对应硬件连接页面,限制这个页面的重连操作
 
- 				bLimitReconnection: false,
 
- 				/**
 
- 				 * 首页这里连接了蓝牙,然后选择框回来后show会触发,触发时候检测一下是否有对应的
 
- 				 * 匹配蓝牙
 
- 				 */
 
- 				bGetBondTesting: false,
 
- 				basicsList: [{
 
- 						cuIcon: 'usefullfill',
 
- 						name: '开始',
 
- 						bLock: false,
 
- 					}, {
 
- 						cuIcon: 'radioboxfill',
 
- 						name: '等待',
 
- 						bLock: true,
 
- 					},
 
- 					{
 
- 						cuIcon: 'roundclosefill',
 
- 						name: '错误'
 
- 					}, {
 
- 						cuIcon: 'roundcheckfill',
 
- 						name: '完成'
 
- 					},
 
- 					{
 
- 						cuIcon: 'roundcheckfill',
 
- 						name: '完成'
 
- 					},
 
- 					{
 
- 						cuIcon: 'roundcheckfill',
 
- 						name: '完成'
 
- 					},
 
- 				],
 
- 				basics: 3,
 
- 				currentTask: null, //当前选择的任务
 
- 				taskIntoView: '',
 
- 				taskScrollTop: 0,
 
- 				currentTaskList: [],
 
- 				nextTaskCanUnlock: false, //下一个关卡是否可解锁
 
- 				/**
 
- 				 * actionJump 模块对应的交互参数
 
- 				 */
 
- 				AJData: {
 
- 					allCount: 0,
 
- 					faultCount: 0,
 
- 					targetCount: 0,
 
- 					perCountDown: 0,
 
- 					gameCountDown: 0,
 
- 					//pk部分参数
 
- 					myScore: 0, //左边自己的分数
 
- 					otherScore: 0, //右边好友的分数
 
- 					myUsageTime: 0,
 
- 					otherUsageTime: 0,
 
- 					isLeftPlayer: true,
 
- 					isFinish: false,
 
- 					gameLimitTime: 0,
 
- 					describe: '', //关卡说明
 
- 				},
 
- 				defaultAJData: null,
 
- 				bGamePlaying: false,
 
- 				/**
 
- 				 * 任务参数
 
- 				 */
 
- 				modalHeight: 300,
 
- 				vLog: '',
 
- 				/**
 
- 				 * 任务关卡相关
 
- 				 */
 
- 				tempSelectedLevel: null
 
- 			};
 
- 		},
 
- 		onLoad() {
 
- 			//设置self
 
- 			_self = this;
 
- 			// 圆形进度条样式
 
- 			this.cWidthArcbar = uni.upx2px(415); //这里要与样式的宽高对应
 
- 			this.cHeightArcbar = uni.upx2px(440); //这里要与样式的宽高对应
 
- 			this.arcbarWidth = uni.upx2px(14);
 
- 			// 体重数据样式
 
- 			// this.cWidth = uni.upx2px(750);
 
- 			// this.cHeight = uni.upx2px(300);
 
- 			// #ifdef APP-PLUS || H5
 
- 			//监听
 
- 			uni.$on('updateArcbarData', this.updateArcbarData);
 
- 			// #endif
 
- 			//监听
 
- 			uni.$on('callbackCloseBLE', this.callbackCloseBLE);
 
- 			// uni.$on('callbackBLEState', this.callbackBLEState);
 
- 			//获得游戏列表
 
- 			// reqUtil
 
- 			// 	.requestData(config.URL.GAMERECOMMENDBYPLATFORM, {
 
- 			// 		recommendType: 2,
 
- 			// 		endTime: config.endTime
 
- 			// 	})
 
- 			// 	.then(
 
- 			// 		res => {
 
- 			// 			// console.log('GAMERECOMMEND =====', res);
 
- 			// 			if (res.code == 0) {
 
- 			// 				if (res.data.gameList.length > 3) {
 
- 			// 					this.gameList = this.gameList.concat(res.data.gameList.slice(0, 3));
 
- 			// 				} else {
 
- 			// 					this.gameList = this.gameList.concat(res.data.gameList);
 
- 			// 				}
 
- 			// 			}
 
- 			// 		},
 
- 			// 		e => {
 
- 			// 			console.log(e);
 
- 			// 		}
 
- 			// 	);
 
- 			//获得视频列表
 
- 			// reqUtil
 
- 			// 	.requestData(config.URL.GAMERECOMMENDBYPLATFORM, {
 
- 			// 		recommendType: 1,
 
- 			// 		endTime: config.endTime
 
- 			// 	})
 
- 			// 	.then(
 
- 			// 		res => {
 
- 			// 			if (res.code == 0) {
 
- 			// 				if (res.data.gameList.length > 3) {
 
- 			// 					this.videoList = this.videoList.concat(res.data.gameList.slice(0, 3));
 
- 			// 				} else {
 
- 			// 					this.videoList = this.videoList.concat(res.data.gameList);
 
- 			// 				}
 
- 			// 			}
 
- 			// 		},
 
- 			// 		e => {
 
- 			// 			console.log(e);
 
- 			// 		}
 
- 			// 	);
 
- 			//初始化后设置一下pickerObj
 
- 			this.pickerObj = {
 
- 				pickerLeftList: pickerData.getWeightList().leftList,
 
- 				pickerRightList: pickerData.getWeightList().rightList,
 
- 				pickerType: 'doubleItem',
 
- 				pickerUnit: '公斤',
 
- 				pickerTitle: '记体重',
 
- 				defaultValue: this.weight,
 
- 				showInput: true,
 
- 			};
 
- 			this.getPlanData(function() {
 
- 				// 如果个人页面直接获取数据
 
- 				_self.showArcbar();
 
- 			});
 
- 			this.personalAudioContext = uni.createInnerAudioContext();
 
- 			this.personalAudioContext.autoplay = false;
 
- 			this.personalAudioContext.src = this.dangdang;
 
- 			this.personalAudioContext.volume = 1;
 
- 			//获取本地记录的运动时间
 
- 			uni.getStorage({
 
- 				key: 'localSportTime',
 
- 				success: function(res) {
 
- 					// console.log("本地的时间:",res.data);
 
- 					_self.$store.state.localSportTime = res.data;
 
- 				}
 
- 			});
 
- 			//获取设备信息,上报服务器
 
- 			this.gOnAddClientInfo();
 
- 			this.registerPopupEvent();
 
- 			//获取任务数据
 
- 			this.getLevelList(() => {
 
- 				this.switchTaskInfo();
 
- 			});
 
- 			//钱包信息
 
- 			this.getUserWallets();
 
- 			//测试socket
 
- 			// console.log('test*******************************');
 
- 			// this.$testWS.connectSocket(()=>{
 
- 			// 	this.$testWS.sendSocketMessage('unity');
 
- 			// });
 
- 			//复制一个默认参数
 
- 			this.defaultAJData = Object.assign({}, this.AJData);
 
- 			//用户签到列表
 
- 			this.getSignInList();
 
- 			uni.$on("onLog", this.onLog);
 
- 		},
 
- 		onShow() {
 
- 			_self.bHide = false;
 
- 			if (canvaArcbar1)
 
- 				_self.updateArcbarData();
 
- 			//this.bConnection && 
 
- 			if (this.bVerifiedConnection && this.BLEConnectDevice) {
 
- 				this.updateBLECIndex();
 
- 				// setTimeout(() => {
 
- 				// 	/**
 
- 				// 	 * 如果是首页连接,则检测
 
- 				// 	 */
 
- 				// 	if (this.bGetBondTesting) {
 
- 				// 		this.onGetBondDevice();
 
- 				// 		this.bGetBondTesting = false;
 
- 				// 	}
 
- 				// }, 5000)
 
- 			}
 
- 			//如果是测试数据
 
- 			if (this.ConnectBindingDevice) {
 
- 				if (this.$refs.boxingPostRef) {
 
- 					this.$refs.boxingPostRef.onSetMode('pkMode');
 
- 				} else {
 
- 					setTimeout(() => {
 
- 						this.$refs.boxingPostRef.onSetMode('pkMode');
 
- 					}, 500)
 
- 				}
 
- 			}
 
- 			console.log('personal show');
 
- 			this.bLimitReconnection = false;
 
- 			//测试环境检测,给个modal提示 active
 
- 			// if (config.active == 'dev') {
 
- 			// 	function thanDate(date2) {
 
- 			// 		var oDate1 = new Date();
 
- 			// 		console.log("检测日期", oDate1);
 
- 			// 		var oDate2 = new Date(date2);
 
- 			// 		if (oDate1.getTime() > oDate2.getTime()) {
 
- 			// 			return true;
 
- 			// 		} else {
 
- 			// 			return false;
 
- 			// 		}
 
- 			// 	}
 
- 			// 	if (thanDate('2021-05-31 13:10:36')) {
 
- 			// 		uni.showModal({
 
- 			// 			title: "提示",
 
- 			// 			content: "此版本为测试版本,有需要请和开发者联系。微信 sweetdontcry"
 
- 			// 		})
 
- 			// 	}
 
- 			// }
 
- 			// #ifdef APP-PLUS
 
- 			if (this.guideUnlockState.firstInstallation) {
 
- 				// 根据onshow 去调用first显示。 由于 onShow生命周期比 onReady 快。所以此时没有 注册 onShowFirstInstallation
 
- 				// 即 onShowFirstInstallation 是调用不到的
 
- 				uni.$emit("onShowFirstInstallation");
 
- 			}
 
- 			// #endif
 
- 		},
 
- 		onReady() {
 
- 			// 计算屏幕剩余高度  填补剩余高度
 
- 			// 计算组件的高度
 
- 			_self.scrollviewHight = this.systemInfo.windowHeight - this.navHeight - this.tabbarHeight - 10 - this
 
- 				.systemInfo
 
- 				.statusBarHeight;
 
- 			console.log("personal onReady");
 
- 			// #ifdef APP-PLUS
 
- 			//第一步提示设置计划,之后在回调registerPopupEvent 中处理
 
- 			//第一次安装登录。提示 计划,这里注册一次信息
 
- 			uni.$on("onShowFirstInstallation", this.onShowFirstInstallation);
 
- 			if (this.guideUnlockState.firstInstallation) {
 
- 				// 如果新安装便触发一次,新手调用
 
- 				uni.$emit("onShowFirstInstallation");
 
- 			}
 
- 			// #endif
 
- 		},
 
- 		onUnload() {
 
- 			console.log("personal ********* onUnload *********");
 
- 			uni.$off("onLog", this.onLog);
 
- 			// #ifndef APP-PLUS||H5
 
- 			//监听
 
- 			console.log('移除监听');
 
- 			uni.$off('updateArcbarData', this.updateArcbarData);
 
- 			// #endif
 
- 			//*****注释蓝牙操作******
 
- 			uni.$off('callbackCloseBLE', this.callbackCloseBLE);
 
- 			// uni.$off('callbackBLEState', this.callbackBLEState);
 
- 			uni.$off('updateBLEDeviceData', this.callbackUpdateBLEData);
 
- 			//unload 时候清除timeout
 
- 			this.onUnloadCreateBLEConnectionTimeout();
 
- 			this.unregisterPopupEvent();
 
- 			uni.$off("onShowFirstInstallation", this.onShowFirstInstallation);
 
- 		},
 
- 		onHide() {
 
- 			_self.bHide = true;
 
- 			console.log("personal ******* onHide *******");
 
- 			//时间暂停 ,隐藏了 需要判断是否为空
 
- 			if (_self.$refs.countDownObj)
 
- 				_self.$refs.countDownObj.timePause('pause');
 
- 			//心电图暂停
 
- 			if (_self.$refs.electRef)
 
- 				_self.$refs.electRef.pausedElect(true);
 
- 		},
 
- 		methods: {
 
- 			...mapMutations(['accountLogin', 'getPlanData', 'addlocalCalorie', 'setLocalCalorie', 'setShowCalorie',
 
- 				'syncLocalDataToServer', 'syncRequestEvent', 'setLocalSportTime',
 
- 				'initAdapter', 'onCreateBLEConnection', 'onUnloadCreateBLEConnectionTimeout', 'onCloseBLEConnection',
 
- 				'gOnAddClientInfo', 'onWriteBLEConnectionValue',
 
- 				'gCreateFilterObj', 'gUpdateFilter', 'B_GetBondedDevices', 'B_OpenBLESetting', 'B_OpenRopeSkipping',
 
- 				'B_CloseRopeSkipping',
 
- 				'gCreateSandbagAlgorithm', 'gUpdateSandbagAlgorithm', 'gStartSimulateBLEUpdate',
 
- 				'gStopSimulateBLEUpdate',
 
- 				'getActionJumpTask',
 
- 				'setActionJumpTask', 'getLevelList',
 
- 				'getUserWallets', 'setGoldAndDiamond',
 
- 				'onConvertDeviceData',
 
- 				'showDrawerById', 'showPopupById', 'showGuideById',
 
- 				'getSignInList', 'onUserSignIn',
 
- 				'setGuideUnlockState'
 
- 			]),
 
- 			BasicsSteps() {
 
- 				this.basics = this.basics == this.basicsList.length - 1 ? 0 : this.basics + 1
 
- 			},
 
- 			onLog(value) {
 
- 				this.vLog = value;
 
- 			},
 
- 			onKeyDown(e) {
 
- 				console.log(e);
 
- 			},
 
- 			showClickEvent() {
 
- 				// #ifdef APP-PLUS 
 
- 				this.showDrawer();
 
- 				// #endif 
 
- 				// #ifdef H5 || MP-WEIXIN 
 
- 				this.$refs.sideBar.showModal();
 
- 				this.$store.state.bCanvasShow = false;
 
- 				// #endif 
 
- 			},
 
- 			showModal(e) {
 
- 				if (e.currentTarget.dataset.target == "slideUpModal" && this.bGamePlaying) {
 
- 					/**
 
- 					 * 判断下游戏是否进行中,进行中不能切换
 
- 					 */
 
- 					uni.showToast({
 
- 						title: '游戏进行中,不能选择关卡。',
 
- 						icon: 'none',
 
- 						mask: true
 
- 					})
 
- 					return;
 
- 				}
 
- 				this.modalName = e.currentTarget.dataset.target;
 
- 				this.$store.state.bCanvasShow = false;
 
- 				if (this.modalName == "slideUpModal") {
 
- 					this.updateTaskScroll();
 
- 				}
 
- 			},
 
- 			hideModal(e) {
 
- 				if (this.modalName == "sportCompletion") {
 
- 					console.log("关闭卡片");
 
- 					this.sportData = {
 
- 						calorie: 0,
 
- 						hit: 0,
 
- 						miss: 0,
 
- 						percent: 0,
 
- 						time: 0,
 
- 						allData: 0,
 
- 					}
 
- 				} else if (this.modalName == "slideUpModal") {
 
- 					this.tempSelectedLevel = this.currentJumpTask;
 
- 				}
 
- 				this.modalName = null;
 
- 				this.$store.state.bCanvasShow = true;
 
- 			},
 
- 			onTestAddLocalCalorie() {
 
- 				let _add = (10 * 1.875) / (4 * 30);
 
- 				console.log(_add);
 
- 				this.onUpdateCaloriePlane(10);
 
- 			},
 
- 			/**
 
- 			 * 首页圆形表部分时间计时器
 
- 			 */
 
- 			arcbarCountDownTimeUp() {
 
- 				//todo,涉及到倒计时的关卡。时间到。游戏结束
 
- 				if (1 === this.currentModeIndex) {
 
- 					if (this.currentMode == "pkMode") {
 
- 						this.$refs.actionJumpRef.onPKModeGameOver("timeUp");
 
- 					} else {
 
- 						uni.showToast({
 
- 							title: '时间到,游戏结束。',
 
- 							icon: 'none',
 
- 							duration: 2000,
 
- 							mask: true
 
- 						})
 
- 						this.$refs.actionJumpRef.onGameOver("timeUp");
 
- 					}
 
- 				}
 
- 			},
 
- 			arcbarCountDownTimeUpdate(data) {
 
- 				this.AJData.gameCountDown = data.curSeconds;
 
- 				this.updateArcbarDataFromActionJump();
 
- 				this.onActionJumpCountDownUpdate();
 
- 			},
 
- 			arcbarCountDownTimeReset() {
 
- 				//清除时间计时器
 
- 				this.$refs.arcbarCountDownRef.timePause();
 
- 			},
 
- 			arcbarCountDownPlay(bResetTime) {
 
- 				if (bResetTime) {
 
- 					this.$refs.arcbarCountDownRef.startData();
 
- 				}
 
- 				this.$refs.arcbarCountDownRef.timePlay();
 
- 			},
 
- 			// 进度条数据
 
- 			arcbarData(_planData) {
 
- 				let showCal = 0,
 
- 					showLCal = 0,
 
- 					LCalTip = '',
 
- 					showTip = '';
 
- 				let series = [{
 
- 					name: showTip,
 
- 					data: 0,
 
- 					color: '#2fc25b'
 
- 				}];
 
- 				//这里区分进度条数据
 
- 				if (0 == this.currentModeIndex) {
 
- 					showCal = _planData.calorie;
 
- 					showLCal = _planData.allCalorie;
 
- 					LCalTip = '大卡';
 
- 					showTip = '(未达标)';
 
- 					// 如果运动的卡路里大于目标卡路里,设置为目标卡路里值,即为Max
 
- 					if (showLCal >= showCal) {
 
- 						showTip = '(达标)';
 
- 					}
 
- 					series = [{
 
- 						name: showTip,
 
- 						data: _planData.allCalorie == 0 ? 0 : _planData.allCalorie / showCal,
 
- 						color: '#2fc25b'
 
- 					}];
 
- 				} else if (1 == this.currentModeIndex) {
 
- 					showCal = _planData.calorie;
 
- 					showLCal = _planData.allCalorie;
 
- 					LCalTip = '大卡';
 
- 					showTip = '(未达标)';
 
- 					// 如果运动的卡路里大于目标卡路里,设置为目标卡路里值,即为Max
 
- 					if (showLCal >= showCal) {
 
- 						showTip = '(达标)';
 
- 					}
 
- 					series = [{
 
- 						name: showTip,
 
- 						data: this.AJData.gameCountDown == 0 ? 0 : this.AJData.gameCountDown / this.AJData
 
- 							.gameLimitTime,
 
- 						color: '#2fc25b'
 
- 					}];
 
- 					// console.log(series);
 
- 				}
 
- 				return {
 
- 					showCal,
 
- 					showLCal,
 
- 					LCalTip,
 
- 					showTip,
 
- 					series
 
- 				}
 
- 			},
 
- 			// 圆形进度条
 
- 			showArcbar() {
 
- 				let {
 
- 					showCal,
 
- 					showLCal,
 
- 					LCalTip,
 
- 					series
 
- 				} = this.arcbarData(_self.planData);
 
- 				// console.log("series==", series[0]);
 
- 				canvaArcbar1 = new uCharts({
 
- 					$this: _self,
 
- 					canvasId: 'canvasArcbar',
 
- 					type: 'myGradualChangeArcbar',
 
- 					fontSize: 11,
 
- 					legend: {
 
- 						show: false
 
- 					},
 
- 					background: '#FFFFFF',
 
- 					pixelRatio: 1,
 
- 					series: series,
 
- 					animation: false,
 
- 					width: _self.cWidthArcbar,
 
- 					height: _self.cHeightArcbar,
 
- 					dataLabel: true,
 
- 					//  Math.round(chartData.series[0].data * 100) + '%'
 
- 					// title: {
 
- 					// 	// arcbarDate: date.formatDate(_self.originalDate),
 
- 					// 	name: showLCal,
 
- 					// 	molecularUnit: LCalTip, //单位的分子部分
 
- 					// 	denominatorUnit: showCal, //单位的分母部分
 
- 					// 	unitFontSize: 11, //单位字符大小
 
- 					// 	color: 'rgba(255, 255, 255, 1)',
 
- 					// 	fontSize: 28,
 
- 					// 	offsetX: -30,
 
- 					// 	offsetY: 10
 
- 					// },
 
- 					// subtitle: {
 
- 					// 	name: series[0].name,
 
- 					// 	color: 'rgba(255, 255, 255, 1)',
 
- 					// 	fontSize: 13,
 
- 					// 	offsetY: -75
 
- 					// },
 
- 					extra: {
 
- 						arcbar: {
 
- 							type: 'default',
 
- 							backgroundColor: 'rgba(234, 234, 255, 1)',
 
- 							backgroundEndColor: 'rgba(234, 234, 255, 1)',
 
- 							backgroundMiddle: '#9291FF', //'rgba(158, 158, 255, 1)',
 
- 							width: _self.arcbarWidth, //圆弧的宽度
 
- 							lineColor: '#51EDFE',
 
- 							lineEndColor: '#F7C75D'
 
- 						}
 
- 					}
 
- 				});
 
- 				// 更新位置同步
 
- 				this.syncLocalDataToServer((res) => {
 
- 					this.originalDate = res.newDate;
 
- 					this.currentDate = date.formatTime(res.newDate);
 
- 					this.updateArcbarData();
 
- 				});
 
- 			},
 
- 			updateArcbarData(data) {
 
- 				// if (data == "plan") {
 
- 				// 	// 加入设置的卡路里小于本地,则更新本地最小值
 
- 				// 	_self.addlocalCalorie(0);
 
- 				// 	console.log("**************updateArcbarData");
 
- 				// 	// 如果是计划设置好后
 
- 				// 	// this.$store.state.bPlanFinish = true;
 
- 				// 	// setTimeout(() => {
 
- 				// 	// 	this.$store.state.bPlanFinish = false;
 
- 				// 	// }, 10000)
 
- 				// }
 
- 				// console.log("updateArcbarData:",this.planData);
 
- 				let {
 
- 					showCal,
 
- 					showLCal,
 
- 					LCalTip,
 
- 					series
 
- 				} = _self.arcbarData(_self.planData);
 
- 				if (showCal == _self.oldArcbarProCalorie && showLCal == _self.oldArcbarAllCalorie) {
 
- 					// console.log("没有改变值,不刷新表盘:", showCal, _self.oldArcbarProCalorie, showLCal, _self.oldArcbarAllCalorie);
 
- 					return;
 
- 				}
 
- 				//这个是显示当前的总卡路里
 
- 				_self.$store.state.oldArcbarAllCalorie = showLCal;
 
- 				//这个是计划的卡路里
 
- 				_self.$store.state.oldArcbarProCalorie = showCal;
 
- 				canvaArcbar1.updateData({
 
- 					series: series,
 
- 					// title: {
 
- 					// 	//这里的文案是自定义的,不写是不变的
 
- 					// 	name: showLCal,
 
- 					// 	molecularUnit: LCalTip, //单位的分子部分
 
- 					// 	denominatorUnit: showCal, //单位的分母部分
 
- 					// }
 
- 					//,
 
- 					// subtitle: {
 
- 					// 	//这里的文案是自定义的,不写是不变的
 
- 					// 	name: series[0].name
 
- 					// }
 
- 				});
 
- 			},
 
- 			updateArcbarDataFromActionJump(data) {
 
- 				let {
 
- 					showCal,
 
- 					showLCal,
 
- 					LCalTip,
 
- 					series
 
- 				} = _self.arcbarData(_self.planData);
 
- 				canvaArcbar1.updateData({
 
- 					series: series
 
- 				});
 
- 			},
 
- 			//没有限制下的更新表盘
 
- 			updateNoLimit() {
 
- 				let {
 
- 					showCal,
 
- 					showLCal,
 
- 					LCalTip,
 
- 					series
 
- 				} = _self.arcbarData(_self.planData);
 
- 				//这个是显示当前的总卡路里
 
- 				_self.$store.state.oldArcbarAllCalorie = showLCal;
 
- 				//这个是计划的卡路里
 
- 				_self.$store.state.oldArcbarProCalorie = showCal;
 
- 				canvaArcbar1.updateData({
 
- 					series: series,
 
- 					// title: {
 
- 					// 	//这里的文案是自定义的,不写是不变的
 
- 					// 	name: showLCal,
 
- 					// 	molecularUnit: LCalTip, //单位的分子部分
 
- 					// 	denominatorUnit: showCal, //单位的分母部分
 
- 					// }
 
- 					// ,
 
- 					// subtitle: {
 
- 					// 	//这里的文案是自定义的,不写是不变的
 
- 					// 	name: series[0].name
 
- 					// }
 
- 				});
 
- 			},
 
- 			// 跳转计划页面
 
- 			openPlan(e) {
 
- 				// console.log(e);
 
- 				uni.navigateTo({
 
- 					url: '../plan/plan?newsid=' + 11,
 
- 					success: res => {},
 
- 					fail: () => {},
 
- 					complete: () => {}
 
- 				});
 
- 			},
 
- 			// 跳转转换页面
 
- 			onNavConver() {
 
- 				uni.reLaunch({
 
- 					url: '../../conversion-page/conversion/conversion',
 
- 					success: res => {},
 
- 					fail: () => {},
 
- 					complete: () => {}
 
- 				});
 
- 			},
 
- 			// 跳转我的页面
 
- 			onNavMyPage() {
 
- 				uni.navigateTo({
 
- 					url: '../../my-page/homepage/homepage',
 
- 					success: res => {},
 
- 					fail: () => {},
 
- 					complete: () => {}
 
- 				});
 
- 			},
 
- 			updateBLECIndex() {
 
- 				for (let i = 0; i < this.BLEDeviceShowList.length; i++) {
 
- 					let eq = this.BLEDeviceShowList[i];
 
- 					if ((eq.ename.indexOf("mobilePhoneBandage") > -1 && this.BLEConnectDevice.id == 0) ||
 
- 						(eq.ename.indexOf("hotman") > -1 && this.BLEConnectDevice.id == 1) ||
 
- 						(eq.ename.indexOf("BLEHandle") > -1 && this.BLEConnectDevice.id == 2) ||
 
- 						(eq.ename.indexOf("rope") > -1 && this.BLEConnectDevice.id == 3)) {
 
- 						eq.bRatio = true;
 
- 						this.$store.state.cIndex = i;
 
- 					}
 
- 					if (eq.ename.indexOf("hotman") > -1 && this.BLEConnectDevice.id == 1) {
 
- 						if (this.$refs.boxingPostRef) {
 
- 							this.$refs.boxingPostRef.onSetMode('pkMode');
 
- 						} else {
 
- 							setTimeout(() => {
 
- 								this.$refs.boxingPostRef.onSetMode('pkMode');
 
- 							}, 500)
 
- 						}
 
- 					} else if (eq.ename.indexOf("BLEHandle") > -1 && this.BLEConnectDevice.id == 2) {
 
- 						if (this.$refs.boxingPostRef) {
 
- 							this.$refs.boxingPostRef.onSetMode('calorieMode');
 
- 						} else {
 
- 							setTimeout(() => {
 
- 								this.$refs.boxingPostRef.onSetMode('calorieMode');
 
- 							}, 500)
 
- 						}
 
- 					} else if (eq.ename.indexOf("rope") > -1 && this.BLEConnectDevice.id == 3) {
 
- 						//todo 暂时设置兼容跑步模式
 
- 						// if (this.$refs.boxingPostRef) {
 
- 						// 	this.$refs.boxingPostRef.onSetMode('ropeMode');
 
- 						// } else {
 
- 						// 	setTimeout(() => {
 
- 						// 		this.$refs.boxingPostRef.onSetMode('ropeMode');
 
- 						// 	}, 500)
 
- 						// }
 
- 					}
 
- 				}
 
- 			},
 
- 			/**
 
- 			 * 蓝牙断开连接时候
 
- 			 */
 
- 			callbackCloseBLE() {
 
- 				if (0 == this.currentModeIndex) {
 
- 					//蓝牙断开连接后,直接关闭
 
- 					this.$refs.boxingPostRef.onCloseDevices();
 
- 				} 
 
- 			},
 
- 			//蓝牙状态回调
 
- 			callbackBLEState(res) {
 
- 				console.log("callbackBLEState==", res);
 
- 				if (this.cState != res.state) this.cState = res.state;
 
- 			},
 
- 			//设备回调事件
 
- 			callbackUpdateBLEData(data) {
 
- 				//如果在监听状态时候隐藏页面,返回
 
- 				if (_self.bHide) return;
 
- 				// console.log("callbackDeviceState==", data);
 
- 				if (this.ConnectBindingDevice) {
 
- 					this.gUpdateSandbagAlgorithm({
 
- 						data: data,
 
- 						callback: (res) => {
 
- 							if (res.type == 'hit') {
 
- 								this.$refs.boxingPostRef.onBLEHotmanUpdate(res);
 
- 							}
 
- 						}
 
- 					});
 
- 					return;
 
- 				}
 
- 				//连接了手柄模式
 
- 				//没有开启指令不刷新
 
- 				if (!this.instructionState.bOpen) return;
 
- 				if (this.BLEConnectDevice.usageMode == "hotman") {
 
- 					this.gUpdateFilter({
 
- 						data: data,
 
- 						callback: (res) => {
 
- 							if (res.type == 'hit') {
 
- 								this.$refs.boxingPostRef.onBLEHotmanUpdate(res);
 
- 							}
 
- 						}
 
- 					});
 
- 				} else if (this.BLEConnectDevice.usageMode == "general") {
 
- 					//这个是普通打击模式
 
- 					this.$refs.boxingPostRef.onBLEHandleUpdate(data);
 
- 				} else if (this.BLEConnectDevice.usageMode == "ropeSkipping") {
 
- 					this.onConvertDeviceData({
 
- 						data: data,
 
- 						callback: (outData) => {
 
- 							// this.outBLEData = {
 
- 							// 	acc: outData.convertAcc,
 
- 							// 	gyro: outData.convertGyro
 
- 							// }
 
- 							// console.log(JSON.stringify(outData),JSON.stringify(data));
 
- 							data.acc = outData.convertAcc;
 
- 							data.gyro = outData.convertGyro;
 
- 							//跳绳蓝牙反馈
 
- 							this.$refs.actionJumpRef.onBLERopeUpdate(data);
 
- 						}
 
- 					});
 
- 				}
 
- 			},
 
- 			//绑定设备函数
 
- 			onBindingDevice(item, index) {
 
- 				if (item == null) {
 
- 					item = this.DeviceBindingList[0];
 
- 				}
 
- 				if (this.BLEConnectDevice) {
 
- 					uni.showToast({
 
- 						icon: "none",
 
- 						title: "已连接硬件设备",
 
- 						duration: 1000
 
- 					})
 
- 					return;
 
- 				}
 
- 				if (this.ConnectBindingDevice) {
 
- 					this.$store.state.ConnectBindingDevice = null;
 
- 					setTimeout(() => {
 
- 						uni.showToast({
 
- 							icon: "none",
 
- 							title: "断开连接",
 
- 							duration: 1000
 
- 						})
 
- 					}, 300)
 
- 				} else {
 
- 					this.$store.state.ConnectBindingDevice = item;
 
- 					setTimeout(() => {
 
- 						uni.showToast({
 
- 							icon: "none",
 
- 							title: "已连接",
 
- 							duration: 1000
 
- 						})
 
- 					}, 300)
 
- 					//连接后保存最近连接的设备
 
- 				}
 
- 				//刷新状态
 
- 				this.$refs.boxingPostRef.onSetMode('pkMode');
 
- 			},
 
- 			//关闭设备函数
 
- 			onCloseBindingDevice(item, e) {
 
- 				if (e.currentTarget.dataset.index == this.cIndex) {
 
- 					uni.showModal({
 
- 						title: '设备状态',
 
- 						content: '是否断开连接',
 
- 						ConfirmColor: '#A488DC',
 
- 						success: res => {
 
- 							if (res.confirm) {
 
- 								this.$store.state.cIndex = -1;
 
- 								this.$store.state.ConnectBindingDevice = null;
 
- 							}
 
- 						}
 
- 					});
 
- 				}
 
- 			},
 
- 			onNavBindingDevice() {
 
- 				this.toView = "addDeviceView";
 
- 			},
 
- 			onDevice(item, e) {
 
- 				if (this.ConnectBindingDevice) {
 
- 					uni.showToast({
 
- 						title: '当前已开启数据',
 
- 						icon: 'none',
 
- 						mask: true
 
- 					})
 
- 					return;
 
- 				}
 
- 				if (this.cIndex !== -1) {
 
- 					uni.showToast({
 
- 						title: '当前已连接设备',
 
- 						icon: 'none',
 
- 						mask: true
 
- 					})
 
- 					return;
 
- 				}
 
- 				//连接蓝牙
 
- 				this.onCreateBLEConnection({
 
- 					item: item,
 
- 					index: e.currentTarget.dataset.index,
 
- 					initItem: true,
 
- 					getinitAdapter: () => {
 
- 						this.onDevice(item, e);
 
- 					},
 
- 					getSuccess: () => {
 
- 						if (this.bHide) {
 
- 							//弹出框时候,是隐藏状态
 
- 							this.bGetBondTesting = true;
 
- 						} else {
 
- 							//没有弹出框时候,直接检测
 
- 							// setTimeout(() => {
 
- 							// 	this.onGetBondDevice();
 
- 							// }, 5000)
 
- 						}
 
- 						//刷新状态
 
- 						if (this.cIndex != -1) {
 
- 							let eq = this.BLEDeviceShowList[this.cIndex];
 
- 							// console.log(eq,this.BLEConnectDevice);
 
- 							if (eq.ename.indexOf("hotman") > -1 && this.BLEConnectDevice.id == 1) {
 
- 								this.$refs.boxingPostRef.onSetMode('pkMode');
 
- 							} else if (eq.ename.indexOf("BLEHandle") > -1 && this.BLEConnectDevice.id == 2) {
 
- 								this.$refs.boxingPostRef.onSetMode('calorieMode');
 
- 							} else if (eq.ename.indexOf("rope") > -1 && this.BLEConnectDevice.id == 3) {
 
- 								// this.$refs.boxingPostRef.onSetMode('ropeMode');
 
- 							}
 
- 						}
 
- 					}
 
- 				});
 
- 			},
 
- 			/**
 
- 			 * 检测获取匹配的设备
 
- 			 */
 
- 			onGetBondDevice() {
 
- 				/**
 
- 				 * 假如手机没有匹配,断开连接
 
- 				 */
 
- 				console.log("****", this.BLEConnectDevice);
 
- 				if (!this.BLEConnectDevice) return;
 
- 				this.B_GetBondedDevices({
 
- 					deviceId: this.BLEConnectDevice.deviceId,
 
- 					success: (bondedDevice) => {
 
- 						// console.error("===========", bondedDevice);
 
- 						// uni.hideToast();
 
- 						if (bondedDevice == null) {
 
- 							// if (plus.os.name == 'Android') 
 
- 							{
 
- 								//此问题 华为手机容易出现
 
- 								//android手机已配对的设备 不存在,但是app 又直接连接成功了。提示,并且断开app连接
 
- 								//1.关闭当前连接
 
- 								this.onCloseBLEConnection({
 
- 									getSuccess: () => {}
 
- 								});
 
- 								uni.hideToast();
 
- 								//2.跳转蓝牙设置
 
- 								uni.showModal({
 
- 									title: '蓝牙配对失败',
 
- 									content: '请跳转后点击配对BGBox_2020,成功后手动跳转回哔蹦重新连接。',
 
- 									success: (res) => {
 
- 										if (res.confirm) {
 
- 											this.B_OpenBLESetting();
 
- 										}
 
- 									}
 
- 								})
 
- 							}
 
- 						}
 
- 					}
 
- 				});
 
- 			},
 
- 			openDeviceList(e) {
 
- 				if (this.ConnectBindingDevice) {
 
- 					uni.showToast({
 
- 						title: '当前已开启数据',
 
- 						icon: 'none',
 
- 						mask: true
 
- 					})
 
- 					return;
 
- 				}
 
- 				//先判断蓝牙是否初始化
 
- 				/**
 
- 				 * 蓝牙部分操作,转全局变量操作
 
- 				 * */
 
- 				// console.log("openDeviceList bOpenBluetooth", this.bOpenBluetooth);
 
- 				// #ifdef APP-PLUS
 
- 				if (!this.bOpenBluetooth) {
 
- 					this.initAdapter(() => {
 
- 						uni.navigateTo({
 
- 							// url: '../devices-category/devices-category',
 
- 							url: '../devices-hardware/devices-hardware',
 
- 							success: res => {
 
- 								this.bLimitReconnection = true;
 
- 							},
 
- 							fail: () => {},
 
- 							complete: () => {}
 
- 						});
 
- 					});
 
- 					return;
 
- 				}
 
- 				// #endif
 
- 				uni.navigateTo({
 
- 					url: '../devices-hardware/devices-hardware',
 
- 					success: res => {
 
- 						this.bLimitReconnection = true;
 
- 					},
 
- 					fail: () => {},
 
- 					complete: () => {}
 
- 				});
 
- 			},
 
- 			onNavToMore() {
 
- 				uni.navigateTo({
 
- 					url: '../more/more?index=' + this.cIndex,
 
- 					success: res => {},
 
- 					fail: () => {},
 
- 					complete: () => {}
 
- 				});
 
- 			},
 
- 			onAddDevice() {
 
- 				let deviceItem = {
 
- 					name: '蹦床',
 
- 					icon: '/static/trampoline.png'
 
- 				};
 
- 				if (this.deviceList.length != 0) {
 
- 					this.deviceList = this.deviceList.concat(deviceItem);
 
- 				} else {
 
- 					this.deviceList = deviceItem;
 
- 				}
 
- 			},
 
- 			onCloseDevice(item, e) {
 
- 				//如果不是连接状态,则删除
 
- 				if (e.currentTarget.dataset.index != this.cIndex) {
 
- 					if (this.cIndex != -1) {
 
- 						uni.showToast({
 
- 							icon: 'none',
 
- 							title: "请先断开已连接设备",
 
- 							duration: 2000,
 
- 							mask: true
 
- 						})
 
- 						return;
 
- 					}
 
- 					uni.showModal({
 
- 						title: '设备状态',
 
- 						content: '是否删除设备?',
 
- 						ConfirmColor: '#A488DC',
 
- 						success: res => {
 
- 							if (res.confirm) {
 
- 								this.$store.commit('deleteBLEDevice', e.currentTarget.dataset.index);
 
- 							}
 
- 						}
 
- 					});
 
- 					return;
 
- 				}
 
- 				uni.showModal({
 
- 					title: '设备状态',
 
- 					content: '是否断开连接?',
 
- 					/**
 
- 					 * 如果需要强制,不显示取消按钮
 
- 					 */
 
- 					showCancel: true,
 
- 					ConfirmColor: '#A488DC',
 
- 					success: res => {
 
- 						if (res.confirm) {
 
- 							this.onCloseBLEConnection({
 
- 								getSuccess: () => {}
 
- 							});
 
- 						}
 
- 					}
 
- 				});
 
- 			},
 
- 			onNavDetail(item) {
 
- 				console.log(item);
 
- 				let temItem = encodeURIComponent(JSON.stringify(item));
 
- 				// return;
 
- 				uni.navigateTo({
 
- 					url: '../../game-page/game-detail/game-detail?item=' + temItem
 
- 				});
 
- 			},
 
- 			onNavToGameMore(e) {
 
- 				uni.reLaunch({
 
- 					url: '../../game-page/game/game?type=' + e.currentTarget.dataset.type
 
- 				});
 
- 			},
 
- 			//判断是否有其他限制
 
- 			onStartCheck(data) {
 
- 				//#ifdef H5
 
- 				// 直接走测试,如果是h5 APP-PLUS
 
- 				if (0 === this.currentModeIndex) {
 
- 					this.onBoxingGuideFinish();
 
- 				} else if (1 === this.currentModeIndex) {
 
- 					if (this.currentJumpTask == null) {
 
- 						uni.showToast({
 
- 							title: '先选一个挑战关卡',
 
- 							icon: 'none',
 
- 							duration: 2000,
 
- 						})
 
- 						return;
 
- 					}
 
- 					if (this.currentMode == 'pkMode' && this.finallySelectFriendInfo == null) {
 
- 						uni.showToast({
 
- 							title: '选择一个pk好友',
 
- 							icon: 'none',
 
- 							duration: 2000,
 
- 						})
 
- 						return;
 
- 					}
 
- 					//调用开始
 
- 					this.onActionJumpPlay();
 
- 				}
 
- 				return;
 
- 				//#endif
 
- 				//分类型判断
 
- 				if (0 === this.currentModeIndex) {
 
- 					//拳击运动类型
 
- 					// 1.检测是否有对应设备,没有ConnectBindingDevice,再进行下一步
 
- 					if (this.ConnectBindingDevice == null) {
 
- 						uni.showToast({
 
- 							title: '开启连接数据',
 
- 							icon: 'none'
 
- 						})
 
- 						this.toView = "openAccGyroView";
 
- 						return;
 
- 					}
 
- 					// TODO,目前去掉蓝牙设备
 
- 					// //2.检测是否有设备
 
- 					// if (this.BLEDeviceShowList.length == 0) {
 
- 					// 	this.$store.state.bGuidePages = true;
 
- 					// 	this.guideCurrent = 3;
 
- 					// 	uni.showToast({
 
- 					// 		title: '请添加蓝牙设备',
 
- 					// 		icon: 'none'
 
- 					// 	})
 
- 					// 	this.toView = "addDeviceView";
 
- 					// 	return;
 
- 					// }
 
- 					// //2.检测是否连接设备 || this.BLEConnectDevice.ename !== 'BT04'
 
- 					// if (this.cIndex == -1) {
 
- 					// 	//没有连接设备,提示去连接设备
 
- 					// 	uni.showToast({
 
- 					// 		title: '请连接蓝牙设备',
 
- 					// 		icon: 'none'
 
- 					// 	})
 
- 					// 	this.toView = "addDeviceView";
 
- 					// 	return;
 
- 					// }
 
- 				} else if (1 === this.currentModeIndex) {
 
- 					//2.检测是否连接设备 || this.BLEConnectDevice.ename !== 'BT04'
 
- 					if (this.cIndex == -1) {
 
- 						//没有连接设备,提示去连接设备
 
- 						// uni.showToast({
 
- 						// 	title: '请连接蓝牙设备',
 
- 						// 	icon: 'none'
 
- 						// })
 
- 						this.onGetBluetoothConnectView({
 
- 							hiddenType: 'none'
 
- 						});
 
- 						// this.toView = "addDeviceView";
 
- 						return;
 
- 					}
 
- 				}
 
- 				//3.检测一下计划日期
 
- 				console.log("remainingDays == >", this.planData, this.remainingDays);
 
- 				if (date.formatDate(new Date()) > this.planData.endTime || this.remainingDays == 0) {
 
- 					if (!this.$store.state.bPlanExpired) {
 
- 						this.$store.state.bPlanExpired = true;
 
- 						setTimeout(() => {
 
- 							this.$store.state.bPlanExpired = false;
 
- 						}, 3000)
 
- 						// uni.showToast({
 
- 						// 	title: "计划到期,请制定计划。",
 
- 						// 	icon: 'none'
 
- 						// })
 
- 						uni.showModal({
 
- 							title: '提醒',
 
- 							content: '计划到期,请制定新计划。',
 
- 							confirmText: '去制定',
 
- 							success: (res) => {
 
- 								if (res.confirm) {
 
- 									uni.switchTab({
 
- 										url: "../plan/plan"
 
- 									})
 
- 								}
 
- 							}
 
- 						})
 
- 					}
 
- 					// this.$store.state.bGuidePages = true;
 
- 					// setTimeout(() => {
 
- 					// 	this.$refs.codeElfGuide.setCurrent(0);
 
- 					// }, 0)
 
- 					// this.toView = "projectButtonView";
 
- 					// // #ifdef APP-PLUS
 
- 					// this.showGuide('plan', null)
 
- 					// // #endif
 
- 					return;
 
- 				}
 
- 				if (0 === this.currentModeIndex) {
 
- 					//如果新手,调用新手教程
 
- 					console.log("this.bNewGuide:", this.bNewGuide);
 
- 					if (this.bNewGuide) {
 
- 						// 拳击的新手提示
 
- 						this.$store.state.bGuidePages = true;
 
- 						this.guideCurrent = 5;
 
- 						this.toView = "boxingHitID";
 
- 						this.$store.state.bNewGuide = false;
 
- 					} else {
 
- 						if (this.ConnectBindingDevice) {
 
- 							//假如有连接bingding设备
 
- 							this.gCreateSandbagAlgorithm();
 
- 							this.gStartSimulateBLEUpdate();
 
- 						} else {
 
- 							//todo 跳绳模式 发送开启指令
 
- 							if (this.BLEConnectDevice.usageMode == "ropeSkipping") {
 
- 								//打开跳绳模式
 
- 								this.B_OpenRopeSkipping();
 
- 							} else {
 
- 								//初始化filter快速打击对象
 
- 								if (this.BLEConnectDevice.usageMode == "hotman") {
 
- 									this.gCreateFilterObj();
 
- 								}
 
- 								//打开加速计
 
- 								this.onWriteBLEConnectionValue({
 
- 									value: "3"
 
- 								});
 
- 								// setTimeout(() => {
 
- 								// 	//设置加速计b:20ms a:10ms
 
- 								// 	this.onWriteBLEConnectionValue({
 
- 								// 		value: config.refreshRate
 
- 								// 	});
 
- 								// }, 1000)
 
- 							}
 
- 						}
 
- 						//监听蓝牙回调
 
- 						uni.$on('updateBLEDeviceData', this.callbackUpdateBLEData);
 
- 						this.onBoxingGuideFinish();
 
- 					}
 
- 				} else if (1 == this.currentModeIndex) {
 
- 					if (data) {
 
- 						let {
 
- 							bStartCountDown
 
- 						} = data;
 
- 						this.bStartCountDown = bStartCountDown;
 
- 					}
 
- 					if (this.bStartCountDown) {
 
- 						this.BoxingPostCountDownText = 3;
 
- 						this.b_countDown = setInterval(() => {
 
- 							if (this.BoxingPostCountDownText <= 1) {
 
- 								if (this.b_countDown) {
 
- 									clearInterval(this.b_countDown);
 
- 									this.b_countDown = null;
 
- 								}
 
- 								setTimeout(() => {
 
- 									this.personalAudioContext.stop();
 
- 									this.personalAudioContext.play();
 
- 									//倒计时结束后开始游戏
 
- 									if (this.BLEConnectDevice.usageMode == "ropeSkipping") {
 
- 										//打开跳绳模式
 
- 										// this.B_OpenRopeSkipping();
 
- 										this.onWriteBLEConnectionValue({
 
- 											value: "3"
 
- 										});
 
- 									}
 
- 									//监听蓝牙回调
 
- 									uni.$on('updateBLEDeviceData', this.callbackUpdateBLEData);
 
- 									//调用开始
 
- 									this.onActionJumpPlay();
 
- 									this.bStartCountDown = false;
 
- 								}, 800)
 
- 								return;
 
- 							}
 
- 							this.BoxingPostCountDownText--;
 
- 						}, 1000)
 
- 					} else {
 
- 						if (this.BLEConnectDevice.usageMode == "ropeSkipping") {
 
- 							//打开跳绳模式
 
- 							// this.B_OpenRopeSkipping();
 
- 							this.onWriteBLEConnectionValue({
 
- 								value: "3"
 
- 							});
 
- 						}
 
- 						//监听蓝牙回调
 
- 						uni.$on('updateBLEDeviceData', this.callbackUpdateBLEData);
 
- 						//调用开始
 
- 						this.onActionJumpPlay();
 
- 					}
 
- 				}
 
- 			},
 
- 			onShowBoxingHitTip() {
 
- 				this.$store.state.bGuidePages = true;
 
- 				this.guideCurrent = 5;
 
- 				this.toView = "boxingHitID";
 
- 				this.$store.state.bNewGuide = false;
 
- 			},
 
- 			//检测是否符合要求,没有的话进行新手提示
 
- 			onPersonalCheck(data) {
 
- 				// #ifdef APP-PLUS
 
- 				if (1 === this.currentModeIndex) {
 
- 					if (this.currentJumpTask == null) {
 
- 						console.log("**************11");
 
- 						this.onTipLevel({
 
- 							hiddenType: 'normal'
 
- 						});
 
- 						if (this.guideUnlockState.firstPromptSelectLevel) {
 
- 							// this.onTipLevel();
 
- 							let guideUnlockState = Object.assign(this.guideUnlockState, {
 
- 								firstPromptSelectLevel: false
 
- 							});
 
- 							this.setGuideUnlockState(guideUnlockState);
 
- 						}
 
- 						// else {
 
- 						// uni.showToast({
 
- 						// 	title: '先选一个挑战关卡',
 
- 						// 	icon: 'none',
 
- 						// 	duration: 2000,
 
- 						// })
 
- 						// }
 
- 						return;
 
- 					}
 
- 					if (this.currentMode == 'pkMode' && this.finallySelectFriendInfo == null) {
 
- 						//todo 这里没处理 新手提示
 
- 						uni.showToast({
 
- 							title: '选择一个pk好友',
 
- 							icon: 'none',
 
- 							duration: 2000,
 
- 						})
 
- 						return;
 
- 					}
 
- 					let _item = this.currentJumpTask.item;
 
- 					//第一次选择关卡时候判断
 
- 					if (this.guideUnlockState.firstUnlockJumpUp && _item.id == 1) {
 
- 						this.showGuide('level-game-tip', {
 
- 							levelType: 'midJump',
 
- 							hiddenType: 'firstUnlockJumpUp'
 
- 						})
 
- 						let guideUnlockState = Object.assign(this.guideUnlockState, {
 
- 							firstUnlockJumpUp: false
 
- 						});
 
- 						this.setGuideUnlockState(guideUnlockState);
 
- 						return;
 
- 					} else if (this.guideUnlockState.firstUnlockLeftAndRightJump && _item.id == 6) {
 
- 						this.showGuide('level-game-tip', {
 
- 							levelType: 'directionJump',
 
- 							hiddenType: 'firstUnlockLeftAndRightJump'
 
- 						})
 
- 						let guideUnlockState = Object.assign(this.guideUnlockState, {
 
- 							firstUnlockLeftAndRightJump: false
 
- 						});
 
- 						this.setGuideUnlockState(guideUnlockState);
 
- 						return;
 
- 					} else if (this.guideUnlockState.firstUnlockLeftAndRightRotationJump && _item.id == 9) {
 
- 						this.showGuide('level-game-tip', {
 
- 							levelType: 'rotationJump',
 
- 							hiddenType: 'firstUnlockLeftAndRightRotationJump'
 
- 						})
 
- 						let guideUnlockState = Object.assign(this.guideUnlockState, {
 
- 							firstUnlockLeftAndRightRotationJump: false
 
- 						});
 
- 						this.setGuideUnlockState(guideUnlockState);
 
- 						return;
 
- 					}
 
- 				}
 
- 				// #endif
 
- 				this.onStartCheck(data);
 
- 			},
 
- 			//
 
- 			onBoxingGuideFinish() {
 
- 				if (this.b_countDown) {
 
- 					clearInterval(this.b_countDown);
 
- 					this.b_countDown = null;
 
- 				}
 
- 				//|| this.currentMode == 'ropeMode'
 
- 				if (this.currentMode == 'calorieMode') {
 
- 					this.personalAudioContext.stop();
 
- 					this.personalAudioContext.play();
 
- 					setTimeout(() => {
 
- 						this.$refs.boxingPostRef.onBoxingPostPlay(true);
 
- 					}, 600);
 
- 				} else {
 
- 					this.BoxingPostCountDownText = 3;
 
- 					this.$refs.boxingPostRef.onSetRingAnimation(true);
 
- 					uni.showToast({
 
- 						title: '匹配中...',
 
- 						mask: true,
 
- 						icon: 'loading',
 
- 						duration: 2000
 
- 					})
 
- 					setTimeout(() => {
 
- 						//ai信息
 
- 						this.onGetAiRandom();
 
- 						// this.b_countDown = setInterval(() => {
 
- 						// 	if (this.BoxingPostCountDownText <= 1) {
 
- 						// 		if (this.b_countDown) {
 
- 						// 			clearInterval(this.b_countDown);
 
- 						// 			this.b_countDown = null;
 
- 						// 		}
 
- 						// 		setTimeout(() => {
 
- 						// 			this.personalAudioContext.stop();
 
- 						// 			this.personalAudioContext.play();
 
- 						// 			this.$refs.boxingPostRef.onBoxingPostPlay(true);
 
- 						// 			this.$refs.boxingPostRef.onSetRingAnimation(false);
 
- 						// 			uni.hideToast();
 
- 						// 		}, 800)
 
- 						// 	}
 
- 						// 	this.BoxingPostCountDownText--;
 
- 						// }, 1000)
 
- 						setTimeout(() => {
 
- 							this.personalAudioContext.stop();
 
- 							this.personalAudioContext.play();
 
- 							this.$refs.boxingPostRef.onBoxingPostPlay(true);
 
- 							this.$refs.boxingPostRef.onSetRingAnimation(false);
 
- 							uni.hideToast();
 
- 						}, 800)
 
- 					}, 2000);
 
- 				}
 
- 			},
 
- 			//运动时间
 
- 			onUpdateSportTime(res) {
 
- 				// console.log("同步的运动时间",res);
 
- 				this.setLocalSportTime(res);
 
- 			},
 
- 			//更新运动数据
 
- 			onUpdateCaloriePlane(data) {
 
- 				// 记录卡路里到本地
 
- 				this.addlocalCalorie(data);
 
- 				this.updateArcbarData();
 
- 			},
 
- 			onRoundTrigger(data) {
 
- 				// console.log("onRoundTrigger==", data);
 
- 				// return;
 
- 				let url = '';
 
- 				switch (data.item.type) {
 
- 					case "personal":
 
- 						//个人中心页面
 
- 						url = '../../personal-page/personal/personal';
 
- 						break;
 
- 					case "game":
 
- 						url = '../../game-page/game/game';
 
- 						break;
 
- 					default:
 
- 						url = '../../personal-page/personal/personal';
 
- 						break;
 
- 				}
 
- 				uni.reLaunch({
 
- 					url: url,
 
- 					success: res => {},
 
- 					fail: () => {},
 
- 					complete: () => {}
 
- 				});
 
- 			},
 
- 			/**
 
- 			 * 同步本地数据到服务器
 
- 			 */
 
- 			onSyncData() {
 
- 				this.syncRequestEvent({
 
- 					success: () => {
 
- 						this.updateArcbarData();
 
- 					}
 
- 				});
 
- 				// 更新显示日期
 
- 				this.originalDate = new Date();
 
- 				this.currentDate = date.formatTime(this.originalDate);
 
- 			},
 
- 			hidePlanTipModal() {
 
- 				this.modalName = null;
 
- 				if (this.planTipIndex === 1) {
 
- 					// 您今天的目标还没完成  是否结束训练
 
- 					this.onActionPause(false);
 
- 				}
 
- 			},
 
- 			confirmPlanTipModal() {
 
- 				this.modalName = null;
 
- 				if (this.planTipIndex === 0) {
 
- 					this.onStartCheck()
 
- 				} else if (this.planTipIndex === 1) {
 
- 					// 您今天的目标还没完成  是否结束训练
 
- 					this.onActionPause(true);
 
- 				}
 
- 			},
 
- 			//断开连接时候,关闭
 
- 			onCloseBoxingHit() {
 
- 				console.log('关闭训练');
 
- 				if (this.currentMode == 'pkMode') {
 
- 					this.$refs.hitEffectRef.onStop();
 
- 				}
 
- 				this.onActionPause(true);
 
- 			},
 
- 			//点击暂停时候,判断一下是否完成目标
 
- 			onActionControlPlay(bPlay) {
 
- 				if (!bPlay) {
 
- 					//跳模块的情况下,暂停计时器
 
- 					if (1 == this.currentModeIndex)
 
- 						this.arcbarCountDownTimeReset();
 
- 					if (this.planData.allCalorie < this.planData.calorie) {
 
- 						this.modalName = 'showPlanTipModal';
 
- 						this.planTipIndex = 1;
 
- 					} else {
 
- 						//假如完成了目标,更新卡路里
 
- 						this.onActionPause(true);
 
- 					}
 
- 				}
 
- 			},
 
- 			/**
 
- 			 * 切换体验模式
 
- 			 * @param {Object} data
 
- 			 */
 
- 			onModeEvent(data) {
 
- 				console.log("当前模式:", data);
 
- 				this.currentMode = data.mode;
 
- 				this.title = data.name;
 
- 				// || this.currentMode == 'ropeMode'
 
- 				if (this.currentMode == 'calorieMode') {
 
- 					setTimeout(() => {
 
- 						this.updateNoLimit();
 
- 					}, 0)
 
- 				}
 
- 			},
 
- 			onAiHitEvent(bloodPoint) {
 
- 				// this.onPlay({
 
- 				// 	bloodPoint: num,
 
- 				// 	createType: 'red',
 
- 				// 	callback: (res) => {
 
- 				// 		console.log("红色拳头击中对方:", res);
 
- 				// 	}
 
- 				// });
 
- 				this.$refs.hitFistRef.onPlay({
 
- 					bloodPoint: bloodPoint,
 
- 					createType: 'red',
 
- 					callback: () => {
 
- 						if (this.bAiHitShake) return;
 
- 						this.bAiHitShake = true;
 
- 						this.$refs.aiHitEffectRef.onPlay();
 
- 						this.$refs.aiHitEffectRef.onAIHit();
 
- 						setTimeout(() => {
 
- 							this.bAiHitShake = false;
 
- 						}, 500)
 
- 					}
 
- 				});
 
- 			},
 
- 			//打击时候头像修改
 
- 			onHitEvent(bloodPoint) {
 
- 				// console.log("this.bHitShake:",this.bHitShake);
 
- 				this.$refs.hitFistRef.onPlay({
 
- 						bloodPoint: bloodPoint,
 
- 						createType: 'blue',
 
- 						callback: () => {
 
- 							if (this.bHitShake) return;
 
- 							this.bHitShake = true;
 
- 							this.$refs.hitEffectRef.onPlay();
 
- 							this.$refs.hitEffectRef.onMyHit();
 
- 							setTimeout(() => {
 
- 								this.bHitShake = false;
 
- 							}, 500)
 
- 						}
 
- 					}
 
- 				);
 
- 			},
 
- 			//弹出目标提示后,进行下一步
 
- 			onActionPause(bFinish) {
 
- 				if (bFinish) {
 
- 					if (this.ConnectBindingDevice) {
 
- 						this.gStopSimulateBLEUpdate();
 
- 						uni.$off('updateBLEDeviceData', this.callbackUpdateBLEData);
 
- 					} else {
 
- 						// if (this.BLEConnectDevice.usageMode == "ropeSkipping") {
 
- 						// 	this.B_CloseRopeSkipping();
 
- 						// } else {
 
- 						// }
 
- 						if (0 === this.currentModeIndex) {
 
- 							this.$refs.boxingPostRef.onBoxingPostStop();
 
- 							//停止时候,重置ai信息
 
- 							this.aiObj.name = this.aiOldObj.name;
 
- 							this.aiObj.avatar = this.aiOldObj.avatar;
 
- 						} else if (1 === this.currentModeIndex) {
 
- 							//todo actionJump
 
- 							if (this.currentMode == "calorieMode") {
 
- 								this.$refs.actionJumpRef.onGameOver("none");
 
- 							} else {
 
- 								this.$refs.actionJumpRef.onPKModeGameOver("none");
 
- 							}
 
- 						}
 
- 					}
 
- 					if (1 === this.currentModeIndex) {
 
- 						if (this.currentMode == "calorieMode") {
 
- 							this.syncRequestEvent({
 
- 								success: () => {
 
- 									this.updateArcbarData();
 
- 								}
 
- 							});
 
- 						}
 
- 					} else {
 
- 						this.syncRequestEvent({
 
- 							success: () => {
 
- 								this.updateArcbarData();
 
- 							}
 
- 						});
 
- 					}
 
- 				} else {
 
- 					//如果不是,继续调用播放
 
- 					if (0 === this.currentModeIndex) {
 
- 						this.$refs.boxingPostRef.onBoxingPostPlay(true);
 
- 					} else if (1 === this.currentModeIndex) {
 
- 						//actionJump
 
- 						this.$refs.actionJumpRef.onContinueGame();
 
- 						if (0 !== this.currentJumpTask.item.limitTime) {
 
- 							//0默认不限时,所以限时的才走计时间
 
- 							this.arcbarCountDownPlay(false);
 
- 						}
 
- 					}
 
- 				}
 
- 			},
 
- 			/**
 
- 			 * 新手任务引导
 
- 			 */
 
- 			onGuideChange(e) {
 
- 				let tempCurrent = e.detail.current;
 
- 				if (tempCurrent == 1) {
 
- 					_self.toView = "addDeviceView";
 
- 				} else if (tempCurrent == 0) {
 
- 					_self.toView = "projectButtonView";
 
- 				}
 
- 			},
 
- 			guideHide(e) {
 
- 				this.$store.state.bGuidePages = false;
 
- 				if (e.current == 0 && !e.onlyHide) {
 
- 					//跳转计划页面
 
- 					this.openPlan();
 
- 				} else if (e.current == 1 && !e.onlyHide) {
 
- 					console.log('guideHide:', e.current);
 
- 					//跳转搜索设备页面
 
- 					// this.openDeviceList();
 
- 				} else if (e.current == 3 && !e.onlyHide) {
 
- 					//新手引导跳转扫码页面,直接走绑定 再check
 
- 					// this.openQRCode((res) => {
 
- 					// 	setTimeout(() => {
 
- 					// 		this.onPersonalCheck();
 
- 					// 	}, 200);
 
- 					// });
 
- 					// 跳转连接蓝牙页面
 
- 					this.openDeviceList();
 
- 				} else if (e.current == 4 && !e.onlyHide) {
 
- 					//连接绑定设备
 
- 					// this.openQRCode();
 
- 					console.log(e);
 
- 					let _index = Number(e.device.dataset.index);
 
- 					this.onBindingDevice(this.DeviceBindingList[_index], _index);
 
- 					//连接设备后,再
 
- 					setTimeout(() => {
 
- 						this.onPersonalCheck();
 
- 					}, 200);
 
- 				} else if (e.current == 5 && !e.onlyHide) {
 
- 					console.log("==:", e);
 
- 					//todo 跳绳模式 新手引导
 
- 					if (this.BLEConnectDevice.usageMode == "ropeSkipping") {
 
- 						this.B_OpenRopeSkipping();
 
- 					} else {
 
- 						//初始化filter快速打击对象
 
- 						if (this.BLEConnectDevice.usageMode == "hotman") {
 
- 							this.gCreateFilterObj();
 
- 						}
 
- 						//打开加速计
 
- 						this.onWriteBLEConnectionValue({
 
- 							value: "3"
 
- 						});
 
- 						// setTimeout(() => {
 
- 						// 	//设置加速计b:20ms a:10ms
 
- 						// 	this.onWriteBLEConnectionValue({
 
- 						// 		value: config.refreshRate
 
- 						// 	});
 
- 						// }, 1000)
 
- 					}
 
- 					//监听蓝牙回调
 
- 					uni.$on('updateBLEDeviceData', this.callbackUpdateBLEData);
 
- 					this.onBoxingGuideFinish();
 
- 				}
 
- 			},
 
- 			mainScroll(e) {
 
- 				if (_self.toView == "addDeviceView") {
 
- 					_self.toView = "";
 
- 					if (!_self.bGuidePages) return;
 
- 					let view = uni.createSelectorQuery().select('#addDeviceView');
 
- 					view.boundingClientRect(data => {
 
- 						_self.$refs.codeElfGuide.setDeviceObj(data);
 
- 					}).exec();
 
- 				} else if (_self.toView == "projectButtonView") {
 
- 					_self.toView = "";
 
- 					if (!_self.bGuidePages) return;
 
- 					_self.onGetProjectView();
 
- 				} else if (_self.toView == "QRDeviceView") {
 
- 					_self.toView = "";
 
- 					if (!_self.bGuidePages) return;
 
- 					let view = uni.createSelectorQuery().select('#QRDeviceView');
 
- 					view.boundingClientRect(data => {
 
- 						_self.$refs.codeElfGuide.setDeviceObj(data);
 
- 					}).exec();
 
- 				} else if (_self.toView == "bing-boxingPost") {
 
- 					_self.toView = "";
 
- 					if (!_self.bGuidePages) return;
 
- 					let view = uni.createSelectorQuery().select('#bing-boxingPost');
 
- 					view.boundingClientRect(data => {
 
- 						_self.$refs.codeElfGuide.setDeviceObj(data);
 
- 						console.log(data);
 
- 					}).exec();
 
- 				} else if (_self.toView == "boxingHitID") {
 
- 					_self.toView = "";
 
- 					// let view = uni.createSelectorQuery().select('#boxingHitID');
 
- 					// view.boundingClientRect(data => {
 
- 					// 	_self.$refs.codeElfGuide.setModalObj(data);
 
- 					// 	console.log(data);
 
- 					// }).exec();
 
- 				} else if (_self.toView == "openAccGyroView") {
 
- 					_self.toView = "";
 
- 				}
 
- 			},
 
- 			onGetProjectView() {
 
- 				let view = uni.createSelectorQuery().select('#projectButtonView');
 
- 				view.boundingClientRect(data => {
 
- 					_self.$refs.codeElfGuide.setProjectObj(data);
 
- 				}).exec();
 
- 			},
 
- 			onGetActionJumpView() {
 
- 				this.$nextTick(() => {
 
- 					this.toView = "actionJumpID"
 
- 				});
 
- 				this.toView = '' //不清空再次跳到锚点位置会不起作用
 
- 				setTimeout(() => {
 
- 					_self.$refs.actionJumpRef.onGetActionJumpPlayView((data) => {
 
- 						console.log(JSON.stringify(data));
 
- 						// #ifdef APP-PLUS
 
- 						_self.showGuide('actionJumpPlay', data);
 
- 						// #endif
 
- 					});
 
- 				}, 200)
 
- 			},
 
- 			onGetBluetoothConnectView(initData) {
 
- 				_self.$refs.roundFabRef.onGetRoundFabView((data) => {
 
- 					console.log(JSON.stringify(data), initData.firstInstallation);
 
- 					// #ifdef APP-PLUS
 
- 					let temp = Object.assign({}, data, initData);
 
- 					console.log('当前的temp:', temp);
 
- 					_self.showGuide('bluetoothConnect', temp);
 
- 					// #endif
 
- 				});
 
- 				// let view = uni.createSelectorQuery().select('#roundFabID');
 
- 				// view.boundingClientRect(data => {
 
- 				// 	console.log(JSON.stringify(data));
 
- 				// 	// #ifdef APP-PLUS
 
- 				// 	_self.showGuide('bluetoothConnect', data);
 
- 				// 	// #endif
 
- 				// }).exec();
 
- 			},
 
- 			//拳击模块的回调
 
- 			boxingUpdateCalorie(calorie) {
 
- 				if (this.currentMode != 'pkMode') {
 
- 					//这里调用一下设置可以播放音效
 
- 					this.$refs.personalFruitRef.onCanPlay();
 
- 				}
 
- 				this.onUpdateCaloriePlane(calorie);
 
- 			},
 
- 			//扫码添加设备
 
- 			openQRCode(callback) {
 
- 				let that = this;
 
- 				// 允许从相机和相册扫码
 
- 				uni.scanCode({
 
- 					success: function(res) {
 
- 						// console.log('条码类型:' + res.scanType);
 
- 						// console.log('条码内容:' + res.result);
 
- 						let obj = JSON.parse(res.result)
 
- 						let data = {
 
- 							type: obj.type,
 
- 							uuid: obj.uuid,
 
- 						}
 
- 					}
 
- 				});
 
- 			},
 
- 			//屏幕抖动
 
- 			onScreenShake() {
 
- 				this.bEFHitShake = true;
 
- 				setTimeout(() => {
 
- 					this.bEFHitShake = false;
 
- 				}, 500)
 
- 			},
 
- 			onGetAiRandom() {
 
- 				let _self = this;
 
- 				let avatarlist = AvatarConfig.getAvatarList().avatarList;
 
- 				let _length = avatarlist.length;
 
- 				let _index = Math.floor(Math.random() * _length);
 
- 				console.log(avatarlist);
 
- 				_self.aiObj.name = avatarlist[_index].name;
 
- 				_self.aiObj.avatar = avatarlist[_index].url;
 
- 			},
 
- 			onBoxingGameOver(res) {
 
- 				this.$refs.hitEffectRef.onStop();
 
- 				this.onActionPause(true);
 
- 				//拳击柱部分
 
- 				uni.$off('updateBLEDeviceData', this.callbackUpdateBLEData);
 
- 				let _title = res.myWin ? "胜利" : "失败";
 
- 				let _context = res.myWin ? "你已经赢得PK胜利!" : "你在PK中被打败了!";
 
- 				this.modalName = "showModalTip"
 
- 				this.$refs.modalTipRef.setShowData({
 
- 					title: _title,
 
- 					context: _context,
 
- 					operationItem: null
 
- 				});
 
- 			},
 
- 			onModalTipHide() {
 
- 				this.modalName = null;
 
- 			},
 
- 			onModalTipConfirm(data) {
 
- 				let {
 
- 					type,
 
- 					operationItem
 
- 				} = data;
 
- 				this.modalName = null;
 
- 				//再来一局
 
- 				//提示过关奖励
 
- 				console.log('onModalTipConfirm', type, operationItem);
 
- 				if (type == 'PASSTHELEVEL') {
 
- 					this.showPopup('levelReward', operationItem);
 
- 				}
 
- 			},
 
- 			onTestShare() {
 
- 				uni.share({
 
- 					provider: "weixin",
 
- 					scene: "WXSenceTimeline",
 
- 					type: 2,
 
- 					imageUrl: "https://img-cdn-qiniu.dcloud.net.cn/uniapp/images/uni@2x.png",
 
- 					success: function(res) {
 
- 						console.log("success:" + JSON.stringify(res));
 
- 					},
 
- 					fail: function(err) {
 
- 						console.log("fail:" + JSON.stringify(err));
 
- 					}
 
- 				});
 
- 			},
 
- 			openAcc() {
 
- 				if (!this.globalAcc) {
 
- 					AccAndOri.bindAcc((accId) => {
 
- 						this.$store.state.globalAcc = accId;
 
- 						console.log("初始化:globalAcc=", this.globalAcc);
 
- 					});
 
- 				}
 
- 				if (!this.globalOri) {
 
- 					AccAndOri.bindOri((oriId) => {
 
- 						this.$store.state.globalOri = oriId;
 
- 						console.log("初始化:globalOri=", this.globalOri);
 
- 					});
 
- 				}
 
- 			},
 
- 			closeAcc() {
 
- 				AccAndOri.unBindAcc(this.globalAcc);
 
- 				this.$store.state.globalAcc = null;
 
- 				AccAndOri.unBindOri(this.globalOri);
 
- 				this.$store.state.globalOri = null;
 
- 			},
 
- 			outGyro(o) {
 
- 				console.log("Orientation\nAlpha:" + o.alpha + "\nBeta:" + o.beta + "\nGamma:" + o.gamma);
 
- 			},
 
- 			openGyro() {
 
- 				if (!this.globalOri) {
 
- 					AccAndOri.bindOri((oriId) => {
 
- 						this.$store.state.globalOri = oriId;
 
- 						console.log("初始化:globalOri=", this.globalOri);
 
- 					});
 
- 				}
 
- 				uni.$on('watchOrientation', this.outGyro);
 
- 			},
 
- 			stopGyro() {
 
- 				uni.$off('watchOrientation', this.outGyro);
 
- 				AccAndOri.unBindOri(this.globalOri);
 
- 				this.$store.state.globalOri = null;
 
- 			},
 
- 			onKeyInput: function(event) {
 
- 				this.$store.state.LocationGameUrl = event.target.value
 
- 			},
 
- 			onNavFcGame() {
 
- 				// console.log(0);
 
- 				uni.navigateTo({
 
- 					url: "../../fc-page/fc/fc"
 
- 				})
 
- 			},
 
- 			onNavAppInfo() {
 
- 				uni.navigateTo({
 
- 					url: '../../info-page/app-info/app-info'
 
- 				})
 
- 			},
 
- 			getBLEDeviceServices() {
 
- 				console.log("getBLEDeviceServices");
 
- 				// uni.getBLEDeviceServices({
 
- 				// 	deviceId: "C5:5C:19:04:00:30",
 
- 				// 	success: res => {
 
- 				// 		console.log("getBLEDeviceServices==", JSON.stringify(res));
 
- 				// 	},
 
- 				// 	fail: failRes => {
 
- 				// 		console.log('device services:', failRes)
 
- 				// 	}
 
- 				// });
 
- 			},
 
- 			// testAsyncFunc() {
 
- 			// 	// 调用异步方法
 
- 			// 	testModule.testAsyncFunc({
 
- 			// 			'name': 'unimp',
 
- 			// 			'age': 1
 
- 			// 		},
 
- 			// 		(ret) => {
 
- 			// 			modal.toast({
 
- 			// 				message: ret,
 
- 			// 				duration: 1.5
 
- 			// 			});
 
- 			// 		})
 
- 			// },
 
- 			// startSyncFunc() {
 
- 			// 	// 调用同步方法
 
- 			// 	var ret = testModule.onStartAccAndGyro({
 
- 			// 		'name': 'unimp',
 
- 			// 		'age': 1
 
- 			// 	})
 
- 			// 	modal.toast({
 
- 			// 		message: ret,
 
- 			// 		duration: 1.5
 
- 			// 	});
 
- 			// },
 
- 			// stopSyncFunc() {
 
- 			// 	// 调用同步方法
 
- 			// 	var ret = testModule.onStopAccAndGyro({
 
- 			// 		'name': 'unimp',
 
- 			// 		'age': 1
 
- 			// 	})
 
- 			// 	modal.toast({
 
- 			// 		message: ret,
 
- 			// 		duration: 1.5
 
- 			// 	});
 
- 			// },
 
- 			onNavToSelectFriend() {
 
- 				uni.navigateTo({
 
- 					url: '../../friend-page/select/select'
 
- 				})
 
- 			},
 
- 			/**
 
- 			 * 悬停按钮
 
- 			 */
 
- 			fabClick() {
 
- 				//如果第一次点击悬停按钮
 
- 				// if (this.guideUnlockState.firstDisconnectBluetooth) {
 
- 				// 	this.onGetBluetoothConnectView({
 
- 				// 		hiddenType: 'firstDisconnectBluetooth'
 
- 				// 	});
 
- 				// 	let guideUnlockState = Object.assign(this.guideUnlockState, {
 
- 				// 		firstDisconnectBluetooth: false
 
- 				// 	});
 
- 				// 	this.setGuideUnlockState(guideUnlockState);
 
- 				// 	return;
 
- 				// }
 
- 				if (this.cIndex != -1 && this.BLEConnectDevice != null) {
 
- 					//先检测
 
- 					uni.showModal({
 
- 						title: '设备状态',
 
- 						content: '是否断开连接?',
 
- 						/**
 
- 						 * 如果需要强制,不显示取消按钮
 
- 						 */
 
- 						showCancel: true,
 
- 						ConfirmColor: '#A488DC',
 
- 						success: res => {
 
- 							if (res.confirm) {
 
- 								this.onCloseBLEConnection({
 
- 									getSuccess: () => {}
 
- 								});
 
- 							}
 
- 						}
 
- 					});
 
- 				} else {
 
- 					this.openDeviceList();
 
- 				}
 
- 			},
 
- 			/**
 
- 			 * action 模块相关数据更新,实时更新
 
- 			 */
 
- 			onActionJumpDataUpdate(obj) {
 
- 				// console.log(obj);
 
- 				this.AJData.allCount = obj.eliminationCount + obj.faultCount;
 
- 				this.AJData.faultCount = obj.faultCount;
 
- 				//如果pk模式下,区分两个人的分数
 
- 				if (this.currentMode == "pkMode") {
 
- 					if (this.AJData.isLeftPlayer) {
 
- 						this.AJData.myScore = obj.eliminationCount - obj.faultCount;
 
- 					} else {
 
- 						this.AJData.otherScore = obj.eliminationCount - obj.faultCount;
 
- 					}
 
- 				}
 
- 				// console.log(this.AJData.myUsageTime, this.AJData.otherUsageTime);
 
- 			},
 
- 			onActionJumpCountDownUpdate(obj) {
 
- 				// this.AJData.perCountDown = obj.countDown;
 
- 				if (this.currentMode == "pkMode") {
 
- 					if (this.AJData.isLeftPlayer) {
 
- 						this.AJData.myUsageTime = this.AJData.gameLimitTime - this.AJData.gameCountDown;
 
- 					} else {
 
- 						this.AJData.otherUsageTime = this.AJData.gameLimitTime - this.AJData.gameCountDown;
 
- 					}
 
- 				}
 
- 				// console.log(this.AJData.myUsageTime, this.AJData.otherUsageTime, this.AJData.gameLimitTime);
 
- 			},
 
- 			//actionJump 模块跳关卡开始处理
 
- 			onActionJumpPlay() {
 
- 				//开始时候,设置默认参数
 
- 				if (this.AJData.isFinish) {
 
- 					//如果下一局,重新设置一下默认参数
 
- 					this.onResetDefaultActionJumpData();
 
- 				}
 
- 				this.onSetActionJumpData();
 
- 				this.$refs.actionJumpRef.onActionJumpPlay();
 
- 				this.bGamePlaying = true;
 
- 				//todo 首先判断时间处理
 
- 				if (0 !== this.currentJumpTask.item.limitTime) {
 
- 					//0默认不限时,所以限时的才走计时间
 
- 					this.arcbarCountDownPlay(true);
 
- 				}
 
- 			},
 
- 			//重置actionJump数据
 
- 			onResetDefaultActionJumpData() {
 
- 				this.AJData = Object.assign({}, this.defaultAJData);
 
- 			},
 
- 			onSetActionJumpData() {
 
- 				let _item = this.currentJumpTask.item;
 
- 				//这里set只是对应关卡的数据
 
- 				this.AJData = Object.assign({}, this.AJData, {
 
- 					allCount: 0,
 
- 					faultCount: 0,
 
- 					perCountDown: 0,
 
- 					gameCountDown: 0,
 
- 					gameLimitTime: _item.limitTime,
 
- 					targetCount:_item.signCount,
 
- 				})
 
- 				// console.log('onSetActionJumpData'+JSON.stringify(this.AJData)+JSON.stringify(_item));
 
- 			},
 
- 			onActionJumpGameOver(data) {
 
- 				let {
 
- 					isOffEvent = false
 
- 				} = data;
 
- 				if (isOffEvent) {
 
- 					//停止蓝牙加速计
 
- 					this.onWriteBLEConnectionValue({
 
- 						value: "4"
 
- 					});
 
- 					uni.$off('updateBLEDeviceData', this.callbackUpdateBLEData);
 
- 					console.log('onActionJumpGameOver 任务结束');
 
- 					this.bGamePlaying = false;
 
- 				}
 
- 				//游戏结束,重置时间
 
- 				this.arcbarCountDownTimeReset();
 
- 				//todo 可能区分 levelJump 关卡类型
 
- 				if (this.currentMode == "pkMode") {
 
- 					//pk模式下面
 
- 					if (this.AJData.isLeftPlayer) {
 
- 						//如果是左边的.切换下一个玩家
 
- 						this.AJData.isLeftPlayer = false;
 
- 						uni.showModal({
 
- 							title: '切换下一个玩家',
 
- 							showCancel: false,
 
- 							success: (res) => {
 
- 								if (res.confirm) {
 
- 									//重新开始计算
 
- 									this.onActionJumpPlay();
 
- 								}
 
- 							}
 
- 						})
 
- 					} else {
 
- 						this.AJData.isFinish = true;
 
- 						//奖励赢的人 PKLEVELREWARD
 
- 						let _item = this.currentJumpTask.item;
 
- 						let _curFriend = this.finallySelectFriendInfo;
 
- 						console.log('this.finallySelectFriendInfo:', this.finallySelectFriendInfo);
 
- 						let isMyWin = true;
 
- 						//如果是右边好友,即判断结束。计算胜负关系
 
- 						if (this.AJData.myScore > this.AJData.otherScore) {
 
- 							//规定时间内,跳得最多
 
- 							// uni.showToast({
 
- 							// 	title: '我赢!!',
 
- 							// 	duration: 2000
 
- 							// })
 
- 							isMyWin = true;
 
- 							//显示一个提示框
 
- 							this.showPopup('pkFinish', {
 
- 								name: this.username,
 
- 								url: this.avatarUrl,
 
- 								score: this.AJData.myScore,
 
- 								consumeTime: Math.abs(this.AJData.myUsageTime),
 
- 								hit: this.AJData.allCount - this.AJData.faultCount,
 
- 								miss: this.AJData.faultCount
 
- 							});
 
- 							console.log({
 
- 								name: this.username,
 
- 								url: this.avatarUrl,
 
- 								score: this.AJData.myScore,
 
- 								consumeTime: Math.abs(this.AJData.myUsageTime),
 
- 								hit: this.AJData.allCount - this.AJData.faultCount,
 
- 								miss: this.AJData.faultCount
 
- 							});
 
- 						} else {
 
- 							// uni.showToast({
 
- 							// 	title: '好友赢或者平局',
 
- 							// 	duration: 2000
 
- 							// })
 
- 							isMyWin = false;
 
- 							//显示一个提示框
 
- 							this.showPopup('pkFinish', {
 
- 								name: _curFriend.username,
 
- 								url: _curFriend.avatarUrl,
 
- 								score: this.AJData.otherScore,
 
- 								consumeTime: this.AJData.otherUsageTime,
 
- 								hit: this.AJData.allCount - this.AJData.faultCount,
 
- 								miss: this.AJData.faultCount
 
- 							});
 
- 						}
 
- 						reqUtil
 
- 							.requestData(config.URL.PKLEVELREWARD, {
 
- 								levelId: _item.id,
 
- 								levelType: 1,
 
- 								isMyWin: isMyWin,
 
- 								friendId: _curFriend.friendId
 
- 							})
 
- 							.then(
 
- 								res => {
 
- 									if (res.code == 0) {
 
- 										console.log('PKLEVELREWARD:' + JSON.stringify(res.data));
 
- 										this.nextTaskCanUnlock = false;
 
- 										for (let i = 0; i < this.currentTaskList.length; i++) {
 
- 											if (this.currentTaskList[i].id == _item.id) {
 
- 												this.currentTaskList[i].isPassed = true;
 
- 												break;
 
- 											}
 
- 										}
 
- 										if (isMyWin) {
 
- 											//只有isMyWin的情况下才有这两个字段返回,更新本地金币和钻石
 
- 											this.setGoldAndDiamond({
 
- 												gold: res.data.gold,
 
- 												diamond: res.data.diamond
 
- 											});
 
- 										}
 
- 									}
 
- 								},
 
- 								e => {
 
- 									console.log(e);
 
- 								}
 
- 							);
 
- 					}
 
- 				} else {
 
- 					this.AJData.isFinish = true;
 
- 					if (data.myWin) {
 
- 						//通过关卡,处理逻辑
 
- 						let _item = this.currentJumpTask.item;
 
- 						reqUtil
 
- 							.requestData(config.URL.PASSTHELEVEL, {
 
- 								levelId: _item.id,
 
- 								levelType: 1,
 
- 							})
 
- 							.then(
 
- 								res => {
 
- 									if (res.code == 0) {
 
- 										console.log('PASSTHELEVEL:' + JSON.stringify(res.data));
 
- 										//处理 列表数据
 
- 										this.nextTaskCanUnlock = false;
 
- 										for (let i = 0; i < this.currentTaskList.length; i++) {
 
- 											if (this.currentTaskList[i].id == _item.id) {
 
- 												this.currentTaskList[i].isPassed = true;
 
- 												break;
 
- 											}
 
- 										}
 
- 										let _title = data.myWin ? "胜利" : "失败";
 
- 										let _context = data.myWin ? "通关关卡成功!" : "通关关卡失败!";
 
- 										this.modalName = "showModalTip"
 
- 										if (0 !== res.data.rewardHonor.type || 0 !== res.data.rewardGold || 0 !== res.data
 
- 											.rewardDiamond) {
 
- 											//todo
 
- 											this.$refs.modalTipRef.setShowData({
 
- 												title: _title,
 
- 												context: _context,
 
- 												operationItem: res.data,
 
- 												type: 'PASSTHELEVEL'
 
- 											});
 
- 											//存在任何奖励的情况下直接更新一下返回的金币和钻石数据
 
- 											this.setGoldAndDiamond({
 
- 												gold: res.data.gold,
 
- 												diamond: res.data.diamond
 
- 											});
 
- 										} else {
 
- 											//没有奖励数据
 
- 											this.$refs.modalTipRef.setShowData({
 
- 												title: _title,
 
- 												context: _context,
 
- 												operationItem: null,
 
- 												type: 'none'
 
- 											});
 
- 										}
 
- 									}
 
- 								},
 
- 								e => {
 
- 									console.log(e);
 
- 								}
 
- 							);
 
- 					}
 
- 				}
 
- 			},
 
- 			showDrawer() {
 
- 				this.showDrawerById();
 
- 			},
 
- 			showPopup(type, item) {
 
- 				this.showPopupById({
 
- 					type,
 
- 					item
 
- 				});
 
- 			},
 
- 			showGuide(type, item) {
 
- 				this.showGuideById({
 
- 					type,
 
- 					item
 
- 				});
 
- 			},
 
- 			/**
 
- 			 * 任务相关
 
- 			 */
 
- 			selectTask(_index, _item) {
 
- 				// console.log(JSON.stringify(_item));
 
- 				if (_item.isUnlock) {
 
- 					let _data = {
 
- 						modeName: this.currentMode, //记录时候记录当前的mode 
 
- 						index: _index,
 
- 						item: _item,
 
- 					}
 
- 					//记录临时选择的游戏关卡
 
- 					this.tempSelectedLevel = _data;
 
- 				} else {
 
- 					let isCanUnlock = _index == 0 || (_index >= 1 && this.currentTaskList[_index - 1].isUnlock && this
 
- 						.currentTaskList[_index - 1].isPassed) ? true : false;
 
- 					if (!isCanUnlock) return;
 
- 					this.showPopup('unlock', _item);
 
- 				}
 
- 			},
 
- 			updateTaskScroll() {
 
- 				/**
 
- 				 * 获取任务对象
 
- 				 */
 
- 				this.getActionJumpTask();
 
- 				//console.error('当前的任务对象===========:' + JSON.stringify(this.currentJumpTask.modeName) + '= '+this.currentMode);
 
- 				if (this.currentJumpTask != null && this.currentJumpTask.modeName == this.currentMode) {
 
- 					let _index = this.currentJumpTask.index - 1 < 0 ? 0 : this.currentJumpTask.index - 1;
 
- 					this.$nextTick(() => {
 
- 						this.taskIntoView = "task_" + _index;
 
- 					});
 
- 					this.taskIntoView = '' //不清空再次跳到锚点位置会不起作用
 
- 				}
 
- 			},
 
- 			switchTaskInfo() {
 
- 				if (this.currentMode == 'calorieMode') {
 
- 					this.currentTaskList = this.singlePersonList;
 
- 				} else if (this.currentMode == 'pkMode') {
 
- 					this.currentTaskList = this.multiPersonList;
 
- 				}
 
- 			},
 
- 			onSwitchMode() {
 
- 				if (this.currentMode == 'calorieMode') {
 
- 					this.currentMode = 'pkMode';
 
- 				} else if (this.currentMode == 'pkMode') {
 
- 					this.currentMode = 'calorieMode';
 
- 				}
 
- 				this.switchTaskInfo();
 
- 			},
 
- 			/**
 
- 			 * @deprecated Test 测试通过关卡
 
- 			 */
 
- 			onPassTheLevel() {
 
- 				if (this.currentMode == "pkMode") {
 
- 					this.AJData.myScore = 10;
 
- 					this.AJData.isLeftPlayer = false;
 
- 				}
 
- 				this.onActionJumpGameOver({
 
- 					myWin: true
 
- 				});
 
- 			},
 
- 			//确认时候选择按钮
 
- 			onConfirmSelectionLevel() {
 
- 				if (this.tempSelectedLevel == null) {
 
- 					uni.showToast({
 
- 						icon: 'none',
 
- 						title: '先选择一个挑战关卡',
 
- 						mask: true
 
- 					})
 
- 					return;
 
- 				}
 
- 				//点击确认时候,记录关卡,并且开始游戏
 
- 				this.setActionJumpTask(this.tempSelectedLevel);
 
- 				this.hideModal();
 
- 				setTimeout(() => {
 
- 					// 自动调用开始游戏
 
- 					this.onPersonalCheck({
 
- 						bStartCountDown: true
 
- 					});
 
- 				}, 300);
 
- 			},
 
- 			registerPopupEvent() {
 
- 				// 接收 popup 的消息
 
- 				uni.$on('reward-popup-page', (data) => {
 
- 					switch (data.type) {
 
- 						case 'interactive':
 
- 							uni.showModal({
 
- 								title: '来自Popup的消息',
 
- 								content: data.info
 
- 							})
 
- 							break;
 
- 						case 'button':
 
- 							if (data.messageType == 'prompt') {
 
- 								if (data.confirm) {
 
- 									console.log('prompt confirm!');
 
- 								} else if (data.cancel) {
 
- 								}
 
- 							} else if (data.messageType == 'unlock') {
 
- 								if (data.confirm) {
 
- 									let _operationItem = data.operationItem;
 
- 									console.log('unlock confirm!', _operationItem);
 
- 									uni.showToast({
 
- 										title: '正在解锁',
 
- 										icon: 'loading',
 
- 										duration: 10000
 
- 									})
 
- 									//todo 处理解锁流程
 
- 									reqUtil
 
- 										.requestData(config.URL.UNLOCKLEVEL, {
 
- 											levelId: _operationItem.id,
 
- 											levelType: 1, //levelJump = 1
 
- 											numberType: _operationItem.numberType,
 
- 										})
 
- 										.then(
 
- 											res => {
 
- 												uni.hideToast();
 
- 												console.log('UNLOCKLEVEL:' + JSON.stringify(res));
 
- 												if (res.code === 404) {
 
- 													uni.showToast({
 
- 														title: '金币不足',
 
- 														icon: 'none',
 
- 														duration: 1000
 
- 													})
 
- 												} else if (res.code === 405) {
 
- 													uni.showToast({
 
- 														title: '钻石不足',
 
- 														icon: 'none',
 
- 														duration: 1000
 
- 													})
 
- 												} else if (res.code === 0) {
 
- 													//解锁成功
 
- 													uni.showToast({
 
- 														title: '解锁成功',
 
- 														icon: 'none',
 
- 														duration: 1000
 
- 													})
 
- 													//更新本地金币和钻石
 
- 													this.setGoldAndDiamond({
 
- 														gold: res.data.gold,
 
- 														diamond: res.data.diamond
 
- 													});
 
- 													for (let i = 0; i < this.currentTaskList.length; i++) {
 
- 														if (this.currentTaskList[i].id == _operationItem.id) {
 
- 															this.currentTaskList[i].isUnlock = true;
 
- 															break;
 
- 														}
 
- 													}
 
- 												} else if (res.code === 803) {
 
- 													if (res.data.length > 0) {
 
- 														uni.showToast({
 
- 															title: '需要' + res.data[0].explain,
 
- 															icon: 'none',
 
- 															duration: 2000
 
- 														})
 
- 													} else {
 
- 														uni.showToast({
 
- 															title: '关卡条件关联未设置',
 
- 															icon: 'none',
 
- 															duration: 2000
 
- 														})
 
- 													}
 
- 												} else if (res.code === 802 || res.code === 805) {
 
- 													uni.showToast({
 
- 														title: res.msg,
 
- 														icon: 'none',
 
- 														duration: 2000
 
- 													})
 
- 												}
 
- 											},
 
- 											e => {
 
- 												console.log(e);
 
- 											}
 
- 										);
 
- 								}
 
- 							} else if (data.messageType == 'signIn') {
 
- 								this.onUserSignIn();
 
- 							}
 
- 							break;
 
- 						default:
 
- 							uni.showToast({
 
- 								title: data.title,
 
- 							})
 
- 							break;
 
- 					}
 
- 				})
 
- 				// 监听 drawer 消息
 
- 				uni.$on('drawer-page', (data) => {
 
- 					uni.showToast({
 
- 						title: '点击了第' + data + '项',
 
- 						icon: "none"
 
- 					});
 
- 				})
 
- 				uni.$on('guide-popup-page', (data) => {
 
- 					console.log('guide-popup-page', JSON.stringify(data));
 
- 					switch (data.type) {
 
- 						case 'button':
 
- 							if (data.messageType == 'plan') {
 
- 								if (data.confirm) {
 
- 									//首次安装
 
- 									if (data.hiddenType == 'firstInstallation') {
 
- 										//跳转提示连接手柄蓝牙
 
- 										setTimeout(() => {
 
- 											this.onGetBluetoothConnectView({
 
- 												hiddenType: 'firstInstallation'
 
- 											});
 
- 										}, 60)
 
- 										console.log('提示连接手柄')
 
- 									}
 
- 								}
 
- 							} else if (data.messageType == 'bluetoothConnect') {
 
- 								if (data.confirm) {
 
- 									//跳转播放
 
- 									// this.onGetActionJumpView();
 
- 									//首次安装
 
- 									if (data.hiddenType == 'firstInstallation') {
 
- 										setTimeout(() => {
 
- 											// this.showGuide('device-tip', {
 
- 											// 	hiddenType: 'firstInstallation'
 
- 											// });
 
- 											this.showGuide('level-button-tip', {
 
- 												hiddenType: 'firstInstallation'
 
- 											});
 
- 											console.log('提示连接关卡')
 
- 										}, 60)
 
- 									} else if (data.hiddenType == 'firstDisconnectBluetooth') {
 
- 										this.fabClick();
 
- 									}
 
- 								}
 
- 							} else if (data.messageType == 'actionJumpPlay') {
 
- 								if (data.confirm) {
 
- 								}
 
- 							} else if (data.messageType == 'device-tip') {
 
- 								if (data.confirm) {
 
- 									if (data.hiddenType == 'firstInstallation') {
 
- 										setTimeout(() => {
 
- 											this.showGuide('level-button-tip', {
 
- 												hiddenType: 'firstInstallation'
 
- 											});
 
- 										}, 60)
 
- 									}
 
- 								}
 
- 							} else if (data.messageType == 'level-button-tip') {
 
- 								if (data.confirm) {
 
- 								}
 
- 							}
 
- 							break;
 
- 						case 'selected':
 
- 							console.log('当前操作的类型 selected:', data.messageType)
 
- 							if (data.messageType == 'level-button-tip') {
 
- 								if (data.isSelected) {
 
- 									uni.setStorage({
 
- 										key: 'levelButtonPrompt',
 
- 										data: {
 
- 											isSelected: true
 
- 										}
 
- 									})
 
- 									//如果选择不提示。则隐藏按钮
 
- 									this.$refs.actionJumpRef.onUpdateTipLevelValue(false);
 
- 								} else {
 
- 									uni.setStorage({
 
- 										key: 'levelButtonPrompt',
 
- 										data: {
 
- 											isSelected: false
 
- 										}
 
- 									})
 
- 									//如果选择提示。则显示按钮
 
- 									this.$refs.actionJumpRef.onUpdateTipLevelValue(true);
 
- 								}
 
- 							} else if (data.messageType == 'device-tip') {
 
- 								if (data.isSelected) {
 
- 									uni.setStorage({
 
- 										key: 'deviceDirectionPrompt',
 
- 										data: {
 
- 											isSelected: true
 
- 										}
 
- 									})
 
- 									//todo 后续处理是否自动提示,true就不自动提示
 
- 								} else {
 
- 									uni.setStorage({
 
- 										key: 'deviceDirectionPrompt',
 
- 										data: {
 
- 											isSelected: false
 
- 										}
 
- 									})
 
- 									//todo 后续处理是否自动提示,false就自动提示
 
- 								}
 
- 							}
 
- 							break;
 
- 						default:
 
- 							uni.showToast({
 
- 								title: data.title,
 
- 							})
 
- 							break;
 
- 					}
 
- 				})
 
- 			},
 
- 			unregisterPopupEvent() {
 
- 				uni.$off('reward-popup-page')
 
- 				uni.$off('drawer-page')
 
- 				uni.$off('guide-popup-page')
 
- 			},
 
- 			onNavToDirection() {
 
- 				uni.navigateTo({
 
- 					url: '../directionOfDetection/directionOfDetection'
 
- 				})
 
- 			},
 
- 			moveBoxingHandle() {
 
- 				return;
 
- 			},
 
- 			/**
 
- 			 * 提示打开关卡
 
- 			 */
 
- 			onTipLevel(value) {
 
- 				// #ifdef APP-PLUS
 
- 				this.showGuide('level-button-tip', value);
 
- 				// #endif
 
- 				// #ifdef H5
 
- 				console.warn("不支持nvue");
 
- 				// #endif
 
- 			},
 
- 			onShowFirstInstallation() {
 
- 				//第一次安装登录。提示 计划
 
- 				this.showGuide('plan', {
 
- 					hiddenType: 'firstInstallation'
 
- 				});
 
- 				console.log("guideUnlockState 1=============:", this.guideUnlockState);
 
- 				let guideUnlockState = Object.assign(this.guideUnlockState, {
 
- 					firstInstallation: false
 
- 				});
 
- 				this.setGuideUnlockState(guideUnlockState);
 
- 			}
 
- 		}
 
- 	};
 
- </script>
 
- <style>
 
- 	.bg-person {
 
- 		/* background-color: #9797ff; */
 
- 		background-color: #00003D;
 
- 		/* #ifdef H5 */
 
- 		/* background-size:750rpx 1622rpx;
 
- 		background-image: url(../../../static/modal/action-jump/temp-tip.png); */
 
- 		/* #endif */
 
- 	}
 
- 	.plan-view {
 
- 		overflow: hidden;
 
- 		/* background-color: #9797ff; */
 
- 	}
 
- 	.plan-l-tip-view {
 
- 		border-radius: 80upx 0 0 80upx;
 
- 		background-color: rgba(255, 255, 255, 0.05);
 
- 	}
 
- 	.plan-r-tip-view {
 
- 		border-radius: 0 80upx 80upx 0;
 
- 		background-color: rgba(255, 255, 255, 0.05);
 
- 	}
 
- 	.bottom-view {
 
- 		background-color: rgba(246, 243, 249, 255);
 
- 		padding-bottom: 20rpx;
 
- 		border-radius: 80rpx 80rpx 0 0;
 
- 		width: 750rpx;
 
- 		overflow: hidden;
 
- 	}
 
- 	.time-view {
 
- 		width: 100%;
 
- 		margin-top: 53rpx;
 
- 		/* border: 1rpx solid #DD514C; */
 
- 	}
 
- 	/*样式的width和height一定要与定义的cWidth和cHeight相对应*/
 
- 	.qiun-charts-arcbar {
 
- 		height: 376rpx;
 
- 		position: relative;
 
- 		width: 750rpx;
 
- 		/* border: 1rpx solid #fff; */
 
- 		background-color: RGBA(30, 30, 85, 1);
 
- 	}
 
- 	.charts-arcbar {
 
- 		position: absolute;
 
- 		/* margin-left: 81upx;
 
- 		 */
 
- 		left: 0;
 
- 		right: 0;
 
- 		top: 0;
 
- 		bottom: 0;
 
- 		margin: auto;
 
- 		width: 490rpx;
 
- 		height: 480rpx;
 
- 		/* border: 1rpx solid #FFFFFF; */
 
- 	}
 
- 	.charts-arcbar-img {
 
- 		position: absolute;
 
- 		left: 135upx;
 
- 		width: 480upx;
 
- 		height: 480upx;
 
- 	}
 
- 	.charts-pring-bottom {
 
- 		position: relative;
 
- 		width: 100%;
 
- 		display: flex;
 
- 		flex-direction: column;
 
- 		justify-content: center;
 
- 		align-items: center;
 
- 	}
 
- 	.charts-pring-button {
 
- 		width: 178rpx;
 
- 		height: 64rpx;
 
- 		display: flex;
 
- 		flex-direction: row;
 
- 		justify-content: start;
 
- 		align-items: center;
 
- 		border-radius: 0 25px 25px 0;
 
- 	}
 
- 	/* 心电图 */
 
- 	/* .qiun-charts-elect {
 
- 		width: 500rpx;
 
- 		height: 136rpx;
 
- 	} */
 
- 	.charts-elect {
 
- 		width: 464rpx;
 
- 		height: 96rpx;
 
- 		border: 1rpx solid #000000;
 
- 	}
 
- 	.e-button {
 
- 		background-color: rgba(255, 255, 255, 0.25);
 
- 		border-radius: 45px;
 
- 		margin: 5px 12px;
 
- 		box-shadow: 1px 1px 3px #888888;
 
- 		display: flex;
 
- 		justify-content: center;
 
- 	}
 
- 	/* 曲线图 */
 
- 	.qiun-charts-area {
 
- 		width: calc(750rpx - 40rpx);
 
- 		height: 300upx;
 
- 		/* background-color: #007AFF; */
 
- 		position: relative;
 
- 	}
 
- 	.charts-area {
 
- 		position: absolute;
 
- 		width: 750upx;
 
- 		height: 300upx;
 
- 	}
 
- 	.qiun-charts-bottom-container {
 
- 		height: 63px;
 
- 		position: relative;
 
- 		width: 100%;
 
- 		justify-content: center;
 
- 		align-items: center;
 
- 		display: flex;
 
- 		flex-direction: row;
 
- 	}
 
- 	.qiun-charts-bottom-right {
 
- 		position: absolute;
 
- 		left: calc(50% + 50rpx);
 
- 		top: 15px;
 
- 		margin-left: 20rpx;
 
- 	}
 
- 	/* picker */
 
- 	.mpvue-picker-view {
 
- 		width: calc(50% - 5px);
 
- 		height: 300px;
 
- 		/* background-color: rgba(255, 255, 255, 1); */
 
- 		border-radius: 20px;
 
- 	}
 
- 	.item {
 
- 		text-align: center;
 
- 		width: calc(100% - 0px);
 
- 		background-color: rgba(255, 255, 255, 1);
 
- 		height: 88upx;
 
- 		line-height: 88upx;
 
- 		text-overflow: ellipsis;
 
- 		white-space: nowrap;
 
- 		font-size: 40upx;
 
- 	}
 
- 	.picker-unit {
 
- 		position: absolute;
 
- 		right: 70px;
 
- 		top: 43%;
 
- 	}
 
- 	.left-button,
 
- 	.right-button {
 
- 		margin: 20px 0;
 
- 		padding: 10px 30px;
 
- 		background-color: #ffffff;
 
- 	}
 
- 	.left-button {
 
- 		border-top-left-radius: 20px;
 
- 		border-bottom-left-radius: 20px;
 
- 		border-right: 1px solid #e6e6e6;
 
- 	}
 
- 	.right-button {
 
- 		border-top-right-radius: 20px;
 
- 		border-bottom-right-radius: 20px;
 
- 	}
 
- 	.png-size-28 {
 
- 		width: 24px;
 
- 		height: 24px;
 
- 		margin-bottom: 4px;
 
- 	}
 
- 	.png-size-32 {
 
- 		width: 32px;
 
- 		height: 32px;
 
- 	}
 
- 	.png-size-34 {
 
- 		width: 34px;
 
- 		height: 34px;
 
- 	}
 
- 	/* 图标大小 */
 
- 	.data-play {
 
- 		width: 16px;
 
- 		height: 16px;
 
- 		margin-top: 10rpx;
 
- 	}
 
- 	.p-data-png {
 
- 		width: 16px;
 
- 		height: 16px;
 
- 		margin: 5rpx 20rpx;
 
- 	}
 
- 	.data-png {
 
- 		width: 16px;
 
- 		height: 16px;
 
- 		margin: 5rpx;
 
- 	}
 
- 	.data-png-20 {
 
- 		width: 20px;
 
- 		height: 20px;
 
- 		margin: 0 14rpx;
 
- 	}
 
- 	.data-png-54 {
 
- 		width: 54px;
 
- 		height: 54px;
 
- 		margin: 0 14rpx;
 
- 	}
 
- 	.data-png-add {
 
- 		position: absolute;
 
- 		left: 0;
 
- 		top: 0;
 
- 		right: 0;
 
- 		bottom: 0;
 
- 		margin: auto;
 
- 		width: 34px;
 
- 		height: 37px;
 
- 	}
 
- 	.time-container {
 
- 		margin-top: 13px;
 
- 		width: 100%;
 
- 		height: 218rpx;
 
- 		position: relative;
 
- 		/* border: 1rpx solid #007AFF; */
 
- 	}
 
- 	.time-png {
 
- 		width: 503rpx;
 
- 		height: 222rpx;
 
- 		position: absolute;
 
- 		left: 0;
 
- 		right: 0;
 
- 		top: 0;
 
- 		bottom: 0;
 
- 		margin: auto;
 
- 		z-index: 1;
 
- 	}
 
- 	.time-text {
 
- 		font-size: 9px;
 
- 		z-index: 10;
 
- 		position: relative;
 
- 		height: 100%;
 
- 		display: flex;
 
- 		justify-content: center;
 
- 		align-items: center;
 
- 		color: #FFFFFF;
 
- 	}
 
- 	.padding {
 
- 		padding: 10rpx;
 
- 	}
 
- 	.logo {
 
- 		height: 200rpx;
 
- 		width: 200rpx;
 
- 		margin-top: 200rpx;
 
- 		margin-left: auto;
 
- 		margin-right: auto;
 
- 		margin-bottom: 50rpx;
 
- 	}
 
- 	.float-png {
 
- 		position: absolute;
 
- 		right: 15px;
 
- 		bottom: 200px;
 
- 		width: 56px;
 
- 		height: 56px;
 
- 	}
 
- 	.moveCanvas {
 
- 		position: fixed;
 
- 		top: 9999rpx;
 
- 		left: 0;
 
- 		width: 188rpx;
 
- 		height: 188rpx;
 
- 	}
 
- 	.scroll-class {
 
- 		width: 100%;
 
- 		overflow-x: hidden;
 
- 		box-sizing: border-box;
 
- 		/* border: 1rpx solid #000000; */
 
- 	}
 
- 	.homepage-grid-square {
 
- 		width: 250rpx;
 
- 		/* height: 250rpx; */
 
- 		align-items: start;
 
- 	}
 
- 	.homepage-grid-square image {
 
- 		width: 176rpx;
 
- 		height: 176rpx;
 
- 	}
 
- 	.border {
 
- 		/* width: 176rpx; */
 
- 		font-size: 30rpx;
 
- 		color: rgba(175, 175, 175, 1);
 
- 		font-weight: 400;
 
- 		text-align: center;
 
- 		margin-top: 22rpx;
 
- 		margin-bottom: 40rpx;
 
- 	}
 
- 	.item-img {
 
- 		border-radius: 20rpx;
 
- 		/* border: 1rpx solid #EEEEEE; */
 
- 		box-shadow: 0px 1px 2px 0px rgba(113, 113, 219, 0.23);
 
- 	}
 
- 	.plan-Tip-child {
 
- 		height: 120rpx;
 
- 	}
 
- 	.plan-mode-tip {
 
- 		height: 90rpx;
 
- 	}
 
- 	.plan-grid-square {
 
- 		width: 250rpx;
 
- 		/* height: 250rpx; */
 
- 		align-items: start;
 
- 	}
 
- 	.plan-grid-square image {
 
- 		width: 168rpx;
 
- 		height: 58rpx;
 
- 	}
 
- 	.plan-mode {
 
- 		/* height: 54px; */
 
- 		border-radius: 10px;
 
- 		padding: 3px;
 
- 		margin: 0 5px 10px 5px;
 
- 		border: 1rpx solid #eeeeee;
 
- 		/* box-shadow: 0px 1px 2px 0px rgba(113, 113, 219, 0.23); */
 
- 		position: relative;
 
- 	}
 
- 	.plan-mode-selected {
 
- 		/* height: 54px; */
 
- 		padding: 3px;
 
- 		margin: 0 5px 10px 5px;
 
- 		background-size: contain;
 
- 		background-clip: border-box;
 
- 		background-repeat: no-repeat;
 
- 		background-image: url(../../../static/plan-select-bg.png);
 
- 		/* box-shadow: 0px 1px 2px 0px rgba(113, 113, 219, 0.23); */
 
- 		position: relative;
 
- 	}
 
- 	.plan-mode-border {
 
- 		/* width: 176rpx; */
 
- 		font-size: 26rpx;
 
- 		color: rgba(151, 151, 255, 1);
 
- 		font-weight: 400;
 
- 		text-align: center;
 
- 	}
 
- 	.button-fav {
 
- 		background-color: rgba(153, 150, 252, 255);
 
- 		color: #ffffff;
 
- 		/* border-radius: 10px; */
 
- 		/* width: 184rpx; */
 
- 		height: 122rpx;
 
- 		display: flex;
 
- 		justify-content: center;
 
- 		text-align: center;
 
- 		align-items: center;
 
- 		font-size: 14px;
 
- 	}
 
- 	.card-view-small {
 
- 		/* border: 1rpx solid #000000; */
 
- 		width: 80%;
 
- 		border-radius: 20px;
 
- 		margin-left: 50rpx;
 
- 		overflow: hidden;
 
- 		background-color: #ffffff;
 
- 		box-shadow: 0px 2px 4px 0px rgba(113, 113, 219, 0.23);
 
- 	}
 
- 	.right-bg {
 
- 		/* border: 1rpx solid #000000; */
 
- 		border-radius: 8px;
 
- 		background-color: #9797ff;
 
- 		padding: 15rpx;
 
- 		position: absolute;
 
- 		right: 5%;
 
- 		margin-top: 4%;
 
- 	}
 
- 	.plan-small-child {
 
- 		background-color: #f5f5ff;
 
- 		border-radius: 20px;
 
- 		width: 480rpx;
 
- 		height: 90rpx;
 
- 		margin: 0 0 30rpx 30rpx;
 
- 		/* margin-top: 60rpx; */
 
- 	}
 
- 	.cu-btn-plan {
 
- 		position: relative;
 
- 		border: 0upx;
 
- 		display: inline-flex;
 
- 		align-items: center;
 
- 		justify-content: center;
 
- 		box-sizing: border-box;
 
- 		padding: 4upx 25upx 4upx 4upx;
 
- 		margin-left: 5px;
 
- 		font-size: 22upx;
 
- 		height: 64upx;
 
- 		line-height: 1;
 
- 		text-align: center;
 
- 		text-decoration: none;
 
- 		overflow: visible;
 
- 		margin-left: initial;
 
- 		transform: translate(0upx, 0upx);
 
- 		margin-right: initial;
 
- 	}
 
- 	.cu-btn-plan-child {
 
- 		position: relative;
 
- 		border: 0upx;
 
- 		display: inline-flex;
 
- 		align-items: center;
 
- 		justify-content: center;
 
- 		box-sizing: border-box;
 
- 		padding: 0 4upx;
 
- 		font-size: 22upx;
 
- 		height: 56upx;
 
- 		line-height: 1;
 
- 		text-align: center;
 
- 		text-decoration: none;
 
- 		overflow: visible;
 
- 		margin-left: initial;
 
- 		transform: translate(0upx, 0upx);
 
- 		margin-right: initial;
 
- 	}
 
- 	.cu-btn-plan-right {
 
- 		position: relative;
 
- 		border: 0upx;
 
- 		display: inline-flex;
 
- 		align-items: center;
 
- 		justify-content: center;
 
- 		box-sizing: border-box;
 
- 		padding: 4upx 4upx 4upx 19upx;
 
- 		margin-left: 5px;
 
- 		font-size: 22upx;
 
- 		height: 64upx;
 
- 		line-height: 1;
 
- 		text-align: center;
 
- 		text-decoration: none;
 
- 		overflow: visible;
 
- 		margin-left: initial;
 
- 		transform: translate(0upx, 0upx);
 
- 		margin-right: initial;
 
- 	}
 
- 	/* 粗线条 */
 
- 	.line-make {
 
- 		margin-top: 11px;
 
- 		margin-left: 8px;
 
- 		border: 4rpx solid #FFFFFF;
 
- 		width: 152rpx;
 
- 		border-radius: 3px;
 
- 	}
 
- 	/* 头像背景处理 */
 
- 	.avatar-bg-personal {
 
- 		width: 34px;
 
- 		height: 34px;
 
- 		border-radius: 45px;
 
- 		border: 2px solid #9997fc;
 
- 		background-color: #9997fc;
 
- 		box-sizing: border-box;
 
- 	}
 
- 	.avatar-bg-arrow {
 
- 		position: absolute;
 
- 		top: 12px;
 
- 		left: calc(50% - 10px);
 
- 		border-left: 10px solid transparent;
 
- 		border-right: 10px solid transparent;
 
- 		border-bottom: 10px solid #9997fc;
 
- 	}
 
- 	.elect-round-image {
 
- 		width: 48px;
 
- 		height: 48px;
 
- 		z-index: 10;
 
- 		box-shadow: 1px 1px 3px #888888;
 
- 		border-radius: 45px;
 
- 	}
 
- 	.elect-personal {
 
- 		/* width: 100%; */
 
- 		height: 120rpx;
 
- 		/* margin: 50rpx 0; */
 
- 		margin-bottom: 50rpx;
 
- 		border-radius: 45px;
 
- 		padding: 10rpx;
 
- 		border: 1rpx solid rgba(255, 255, 255, 0.11);
 
- 		display: flex;
 
- 		justify-content: center;
 
- 		align-items: center;
 
- 		position: relative;
 
- 	}
 
- 	/* 呼吸灯 */
 
- 	.breathing-lamp {
 
- 		animation-duration: 1s;
 
- 		animation-timing-function: ease-out;
 
- 		animation-fill-mode: inherit;
 
- 		animation-iteration-count: infinite;
 
- 		animation-name: run-lamp;
 
- 		animation-play-state: running;
 
- 	}
 
- 	@keyframes run-lamp {
 
- 		0%,
 
- 		100% {
 
- 			opacity: 1;
 
- 			transform: scale(1);
 
- 		}
 
- 		50% {
 
- 			opacity: 0.6;
 
- 			transform: scale(0.9);
 
- 		}
 
- 	}
 
- 	.personal-fruit-container {
 
- 		position: absolute;
 
- 		left: 0;
 
- 		top: 0;
 
- 		bottom: 0;
 
- 		right: 0;
 
- 		margin: auto;
 
- 		display: flex;
 
- 		align-items: center;
 
- 		justify-content: center;
 
- 		/* border: 1rpx solid #F0F0F0; */
 
- 	}
 
- 	.screen-jitter {
 
- 		animation-duration: 1s;
 
- 		animation-timing-function: ease-out;
 
- 		animation-fill-mode: inherit;
 
- 		animation-iteration-count: infinite;
 
- 		animation-name: personal-shake;
 
- 		animation-play-state: running;
 
- 	}
 
- 	.screen-red {
 
- 		border: 1rpx solid #ff0000;
 
- 	}
 
- 	@keyframes personal-shake {
 
- 		0%,
 
- 		100% {
 
- 			transform: translateX(0)
 
- 		}
 
- 		10% {
 
- 			transform: translateX(-9px)
 
- 		}
 
- 		20% {
 
- 			transform: translateX(8px)
 
- 		}
 
- 		30% {
 
- 			transform: translateX(-7px)
 
- 		}
 
- 		40% {
 
- 			transform: translateX(6px)
 
- 		}
 
- 		50% {
 
- 			transform: translateX(-5px)
 
- 		}
 
- 		60% {
 
- 			transform: translateX(4px)
 
- 		}
 
- 		70% {
 
- 			transform: translateX(-3px)
 
- 		}
 
- 		80% {
 
- 			transform: translateX(2px)
 
- 		}
 
- 		90% {
 
- 			transform: translateX(-1px)
 
- 		}
 
- 	}
 
- 	.CountDownMask {
 
- 		position: absolute;
 
- 		top: 0;
 
- 		bottom: 0;
 
- 		right: 0;
 
- 		left: 0;
 
- 		background-color: rgba(0, 0, 0, 0.5);
 
- 		z-index: 1000;
 
- 		display: flex;
 
- 		justify-content: center;
 
- 		align-items: center;
 
- 		font-size: 100px;
 
- 		font-weight: bold;
 
- 		color: #FFFFFF;
 
- 	}
 
- 	/**
 
- 	 * 任务样式
 
- 	 */
 
- 	.task-up-button {
 
- 		z-index: 10;
 
- 		/* #ifndef APP-PLUS */
 
- 		position: absolute;
 
- 		/* #endif */
 
- 		/* #ifdef APP-PLUS */
 
- 		position: fixed;
 
- 		/* #endif */
 
- 		bottom: -53rpx;
 
- 		right: 0;
 
- 		left: 0;
 
- 		margin: auto;
 
- 		width: 100%;
 
- 		height: 104rpx;
 
- 		/* border: 1rpx solid #000000; */
 
- 	}
 
- </style>
 
 
  |