Index.vue 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345
  1. <template>
  2. <view class="content">
  3. <view class="top">
  4. <view class="threeLine" @tap="openDrawer">
  5. <image src="../../static/picture/fourLine.png" style="width: 30px;height: 30px;margin-top: 18px;margin-left: 10px;"></image>
  6. </view>
  7. <view class="text">
  8. <view class="notice">
  9. <view class="icon cuIcon-notice text-white" v-if="badge != 0">
  10. <view class="cu-tag looknumber" style="margin-top: 10px;">
  11. <block v-if="badge != 1">{{ badge > 99 ? '99+' : badge }}</block>
  12. </view>
  13. </view>
  14. </view>
  15. <view class="textWindpowerstation">{{address}}</view>
  16. </view>
  17. <view class="plus" @tap="showModal" data-target="viewModal">+</view>
  18. </view>
  19. <!-- 抽屉组件 -->
  20. <div>
  21. <drawer ref="drawer"></drawer>
  22. </div>
  23. <div class="plusDrawer" @tap="hideModal">
  24. <plusDrawer ref="plusDrawer"></plusDrawer>
  25. </div>
  26. <scroll-view scroll-y class="DrawerPage" :class="modalName=='viewModal'?'show':''">
  27. <!--时间组件-->
  28. <view class="time">
  29. <view class="timeimageshizhong">
  30. <image src="../../static/picture/dafeng.png" style="width: 20px;height: 20px;margin-left: 10px;"></image>
  31. </view>
  32. <view class="timeText">推荐时间:2020年4月15日 19:31</view>
  33. <view class="timeIcon">
  34. <image src="../../static/picture/qingwhite.png" style="width: 25px;height: 25px;"></image>
  35. </view>
  36. </view>
  37. <!--电量卡片-->
  38. <view class="InformationCard">
  39. <view class="informationCardAll">
  40. <view class="informationCardTextOne">
  41. <view class="informationCardText">
  42. <view class="textSilver" @tap="common.navTo('/components/detail/Detail')">安全天数(&nbsp;天&nbsp;)&nbsp;:</view>
  43. <view class="textWhite">15</view>
  44. </view>
  45. <view class="informationCardTextzj">
  46. <view class="textSilver" @tap="common.navTo('/components/detail/Detail')">装机容量(mv):</view>
  47. <view class="textWhite">15</view>
  48. </view>
  49. </view>
  50. <view class="informationCardTextTwo">
  51. <view class="informationCardTextNo1">
  52. <view class="textSilver" @tap="common.navTo('/components/detail/Detail')">日发电量(kwh):</view>
  53. <view class="textWhite">150</view>
  54. </view>
  55. <view class="informationCardText3">
  56. <view class="textSilver" @tap="common.navTo('/components/detail/Detail')">预测发电量(kwh):</view>
  57. <view class="textWhite2">15</view>
  58. </view>
  59. <view class="informationCardText2">
  60. <view class="textSilver" @tap="common.navTo('/components/detail/Detail')">上网电量(kwh):</view>
  61. <view class="textWhite">15</view>
  62. </view>
  63. </view>
  64. </view>
  65. </view>
  66. <!--风速卡片-->
  67. <view class="speedPower">
  68. <view class="cardinstallredSpeed" @tap="common.navTo('/components/detail/Detail')">
  69. <view class="cardinstalltitlegreen">
  70. 平均风速(km/h)
  71. <!-- <view class="textWhitekuangSpeed">(km/h)</view> -->
  72. </view>
  73. <view class="cardinstallnumbergreen">5</view>
  74. <view class="cardinstallnumbergreenmin">
  75. <view class="greenMinText">min: 5</view>
  76. </view>
  77. <view class="cardinstallnumbergreenmax">
  78. <view class="greenMaxText">max: 25</view>
  79. </view>
  80. </view>
  81. <view class="cardinstallredSpeed" @tap="common.navTo('/components/detail/Detail')">
  82. <view class="cardinstalltitlegreen">
  83. 预测风速(km/h)
  84. <!-- <view class="textWhitekuangSpeed">(km/h)</view> -->
  85. </view>
  86. <view class="cardinstallnumbergreen">48</view>
  87. <view class="cardinstallnumbergreenmin">
  88. <view class="greenMinText">min: 4</view>
  89. </view>
  90. <view class="cardinstallnumbergreenmax">
  91. <view class="greenMaxText">max: 26</view>
  92. </view>
  93. </view>
  94. <view class="cardinstallredSpeed" @tap="common.navTo('/components/detail/Detail')">
  95. <view class="cardinstalltitleRed">
  96. 实际功率(kw)
  97. <!-- <view class="textWhitekuang">(kw)</view> -->
  98. </view>
  99. <view class="cardinstallnumberred">15</view>
  100. <view class="cardinstallnumberredmin">
  101. <view class="redMinText">min: 566</view>
  102. </view>
  103. <view class="cardinstallnumberredmax">
  104. <view class="redMaxText">max: 656</view>
  105. </view>
  106. </view>
  107. <view class="cardinstallredSpeed" @tap="common.navTo('/components/detail/Detail')">
  108. <view class="cardinstalltitleRed">
  109. 理论功率(kw)
  110. <!-- <view class="textWhitekuang">(kw)</view> -->
  111. </view>
  112. <view class="cardinstallnumberred">14</view>
  113. <view class="cardinstallnumberredmin">
  114. <view class="redMinText">min: 589</view>
  115. </view>
  116. <view class="cardinstallnumberredmax">
  117. <view class="redMaxText">max: 674</view>
  118. </view>
  119. </view>
  120. </view>
  121. <!--接入卡片-->
  122. <view class="interfaceCard">
  123. <view class="interfaceCardSmallTop">
  124. <view class="interfaceCardSmall">
  125. <view class="AccessCardimage">
  126. <image src="../../static/picture/001.png" style="width: 18px;height:18px;margin-top: 9px;margin-left: 7px;"></image>
  127. </view>
  128. <view class="AccessCardText">接入</view>
  129. <view class="AccessCardNumber">59</view>
  130. </view>
  131. <view class="interfaceCardSmall">
  132. <view class="AccessCardimage">
  133. <image src="../../static/picture/002.png" style="width: 18px;height:18px;margin-top: 9px;margin-left: 7px;"></image>
  134. </view>
  135. <view class="AccessCardText">待机</view>
  136. <view class="AccessCardNumber">10</view>
  137. </view>
  138. <view class="interfaceCardSmall">
  139. <view class="AccessCardimage">
  140. <image src="../../static/picture/003.png" style="width: 18px;height:18px;margin-top: 9px;margin-left: 7px;"></image>
  141. </view>
  142. <view class="AccessCardText">运行</view>
  143. <view class="AccessCardNumber">29</view>
  144. </view>
  145. </view>
  146. <view class="interfaceCardSmallTop">
  147. <view class="interfaceCardSmall">
  148. <view class="AccessCardimage">
  149. <image src="../../static/picture/004.png" style="width: 18px;height:18px;margin-top: 9px;margin-left: 7px;"></image>
  150. </view>
  151. <view class="AccessCardText">故障</view>
  152. <view class="AccessCardNumber">18</view>
  153. </view>
  154. <view class="interfaceCardSmall">
  155. <view class="AccessCardimage">
  156. <image src="../../static/picture/005.png" style="width: 18px;height:18px;margin-top: 9px;margin-left: 7px;"></image>
  157. </view>
  158. <view class="AccessCardText">维护</view>
  159. <view class="AccessCardNumber">8</view>
  160. </view>
  161. <view class="interfaceCardSmall">
  162. <view class="AccessCardimage">
  163. <image src="../../static/picture/006.png" style="width: 18px;height:19px;margin-top: 9px;margin-left: 7px;"></image>
  164. </view>
  165. <view class="AccessCardText">离线</view>
  166. <view class="AccessCardNumber">8</view>
  167. </view>
  168. </view>
  169. </view>
  170. <!--进度条-->
  171. <view class="progressBar">
  172. <view class="progressBarAll">
  173. <view class="progressBarOne">
  174. <view class="progressBarLeft">
  175. <view class="progressBarLeftText">35kwh</view>
  176. </view>
  177. <view class="progressBarText">月计划发电量进度条</view>
  178. <view class="progressBarRight">
  179. <view class="progressBarRightText">100kwh</view>
  180. </view>
  181. </view>
  182. <view class="cu-progress round radius striped active">
  183. <view class="bg-olive" :style="[{ width: loading ? '61.8%' : '' }]"></view>
  184. <view class="bg-angrey" :style="[{ width: loading ? '38.2%' : '' }]"></view>
  185. </view>
  186. </view>
  187. <view class="progressBarAll">
  188. <view class="progressBarOne">
  189. <view class="progressBarLeft">
  190. <view class="progressBarLeftText">135kwh</view>
  191. </view>
  192. <view class="progressBarText">年计划发电量进度条</view>
  193. <view class="progressBarRight">
  194. <view class="progressBarRightText">200kwh</view>
  195. </view>
  196. </view>
  197. <view class="cu-progress round radius striped active">
  198. <view class="bg-olive" :style="[{ width: loading ? '70%' : '' }]"></view>
  199. <view class="bg-angrey" :style="[{ width: loading ? '30%' : '' }]"></view>
  200. </view>
  201. </view>
  202. </view>
  203. <scroll-view scroll-x class="horizontalSlider">
  204. <view class="slide">
  205. <view class="monthlyUtilizationHours" @tap="common.navTo('/components/detail/Detail')">月利用小时(h):13</view>
  206. <view class="yearlyUtilizationHours" @tap="common.navTo('/components/detail/Detail')">年利用小时(h):13</view>
  207. <view class="comprehensiveServicePowerConsumptionRate" @tap="common.navTo('/components/detail/Detail')">综合厂用电率(%):20</view>
  208. <view class="equipmentAvailability" @tap="common.navTo('/components/detail/Detail')">设备可利用率(%):90</view>
  209. <view class="sulfurDioxideEmissionReduction" @tap="common.navTo('/components/detail/Detail')">减排二氧化硫(吨):21</view>
  210. <view class="carbonDioxideReduction" @tap="common.navTo('/components/detail/Detail')">减排二氧化碳(吨):5</view>
  211. <view class="waterSaving" @tap="common.navTo('/components/detail/Detail')">节约用水(吨):15</view>
  212. <view class="saveStandardCoal" @tap="common.navTo('/components/detail/Detail')">节约标煤(吨):35</view>
  213. <view class="mttr" @tap="common.navTo('/components/detail/Detail')">mttr(h):22</view>
  214. <view class="mtbf" @tap="common.navTo('/components/detail/Detail')">mtbf(h):24</view>
  215. </view>
  216. </scroll-view>
  217. <!--折线图-->
  218. <view class="lineChart">
  219. <view class="qiun-charts">
  220. <view class="speedPowerDiagram">风速功率曲线图</view>
  221. <canvas canvas-id="canvasLineA" id="canvasLineA" class="charts" @touchstart="touchLineA"></canvas>
  222. </view>
  223. </view>
  224. <!-- 柱状图 -->
  225. <view class="Histogram">
  226. <view class="HistogramTitle">五项损失柱状图</view>
  227. <view class="choice">
  228. <view class="directGeneration">
  229. <image src="../../static/picture/dianliang/dianlianglan.png" style="width: 18px;height: 18px;float: left;margin-top: 4px;"></image>
  230. <view class="directGenerationText" @click="directGeneration()">
  231. 应发</view>
  232. </view>
  233. <view class="powerGeneration">
  234. <image src="../../static/picture/dianliang/dianlianglv.png" style="width: 18px;height: 18px;float: left;margin-top: 4px;"></image>
  235. <view class="powerGenerationText" @click="powerGeneration()">日发</view>
  236. </view>
  237. <view class="faultPower">
  238. <image src="../../static/picture/dianliang/dianlianghong.png" style="width: 18px;height: 18px;float: left;margin-top: 4px;"></image>
  239. <view class="faultPowerText" @click="faultPower()">故障损失</view>
  240. </view>
  241. <view class="maintenancePower">
  242. <image src="../../static/picture/dianliang/dianliangcheng.png" style="width: 18px;height: 18px;float: left;margin-top: 4px;"></image>
  243. <view class="maintenancePowerText" @click="maintenancePower()">检修损失</view>
  244. </view>
  245. <view class="limitedPower">
  246. <image src="../../static/picture/dianliang/dianliangfen.png" style="width: 18px;height: 18px;float: left;margin-top: 4px;"></image>
  247. <view class="limitedPowerText" @click="limitedPower()">限电损失</view>
  248. </view>
  249. <view class="performancePower">
  250. <image src="../../static/picture/dianliang/dianliangzi.png" style="width: 18px;height: 18px;float: left;margin-top: 4px;"></image>
  251. <view class="performancePowerText" @click="performancePower()">性能损失</view>
  252. </view>
  253. <view class="AffectedPower">
  254. <image src="../../static/picture/dianliang/dianlianghui.png" style="width: 18px;height: 18px;float: left;margin-top: 4px;"></image>
  255. <view class="AffectedPowerText" @click="AffectedPower()">受累损失</view>
  256. </view>
  257. </view>
  258. <view class="qiun-chart">
  259. <canvas canvas-id="canvasColumnStack" id="canvasColumnStack" class="chart" @touchstart="touchColumn"></canvas>
  260. </view>
  261. </view>
  262. <!-- 风电场卡片 -->
  263. <view class="windStation">
  264. <scroll-view scroll-x class="scrollWindStationCard">
  265. <view class="windStationCardContainer">
  266. <view class="windStationCard" @tap="common.navTo('/components/windStationCardDetail/WindStationCardDetail?option=' + '麻黄山')">
  267. <view class="windStationTitle">麻黄山风电场</view>
  268. <view class="powerAndSpeedContainer">
  269. <view class="powerAndSpeedRed">
  270. 预测电量(kwh):
  271. <span>15</span>
  272. </view>
  273. <view class="powerAndSpeedRed">
  274. 日发电量(kwh):
  275. <span>15</span>
  276. </view>
  277. <view class="powerAndSpeedRed">
  278. 实时风速(km/h):
  279. <span>15</span>
  280. </view>
  281. <view class="powerAndSpeedRed">
  282. 实际功率(km/h):
  283. <span>15</span>
  284. </view>
  285. </view>
  286. <!-- HQChart图 -->
  287. <!-- <view class="HQChart">
  288. <div class="divchart" ref="divchart"><div id="minute" style="width: 250px; height: 100px;" ref="minute"></div></div>
  289. </view> -->
  290. <view class="UChartContainer">
  291. <view class="windStationUChart">
  292. <view class="windStationQiun-charts">
  293. <canvas canvas-id="windStationCanvasLineA" id="windStationCanvasLineA" class="windStationCharts" @touchstart="touchLineB1"></canvas>
  294. </view>
  295. </view>
  296. <view class="UChartTitle">风速功率曲线图</view>
  297. <!-- <view class="xTime">时间</view> -->
  298. </view>
  299. <view class="fanStatusContainer">
  300. <view class="fanStatus">
  301. <view class="statusIcon">
  302. <image src="../../static/picture/001.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  303. </view>
  304. <span>接入&nbsp;&nbsp;99</span>
  305. </view>
  306. <view class="fanStatus">
  307. <view class="statusIcon">
  308. <image src="../../static/picture/002.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  309. </view>
  310. <span>待机&nbsp;&nbsp;99</span>
  311. </view>
  312. <view class="fanStatus">
  313. <view class="statusIcon">
  314. <image src="../../static/picture/003.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  315. </view>
  316. <span>运行&nbsp;&nbsp;99</span>
  317. </view>
  318. <view class="fanStatus">
  319. <view class="statusIcon">
  320. <image src="../../static/picture/004.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  321. </view>
  322. <span>故障&nbsp;&nbsp;99</span>
  323. </view>
  324. <view class="fanStatus">
  325. <view class="statusIcon">
  326. <image src="../../static/picture/005.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  327. </view>
  328. <span>维护&nbsp;&nbsp;99</span>
  329. </view>
  330. <view class="fanStatus">
  331. <view class="statusIcon">
  332. <image src="../../static/picture/006.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  333. </view>
  334. <span>离线&nbsp;&nbsp;99</span>
  335. </view>
  336. </view>
  337. </view>
  338. <view class="windStationCard" @tap="common.navTo('/components/windStationCardDetail/WindStationCardDetail?option=' + '牛首山')">
  339. <view class="windStationTitle">牛首山风电场</view>
  340. <view class="powerAndSpeedContainer">
  341. <view class="powerAndSpeedRed">
  342. 预测电量(kwh):
  343. <span>15</span>
  344. </view>
  345. <view class="powerAndSpeedRed">
  346. 日发电量(kwh):
  347. <span>15</span>
  348. </view>
  349. <view class="powerAndSpeedRed">
  350. 实时风速(km/h):
  351. <span>15</span>
  352. </view>
  353. <view class="powerAndSpeedRed">
  354. 实际功率(km/h):
  355. <span>15</span>
  356. </view>
  357. </view>
  358. <!-- HQChart图 -->
  359. <!-- <view class="HQChart">
  360. <div class="divchart" ref="divchart"><div id="minute" style="width: 250px; height: 100px;" ref="minute"></div></div>
  361. </view> -->
  362. <view class="UChartContainer">
  363. <view class="windStationUChart">
  364. <view class="windStationQiun-charts"><canvas canvas-id="windStationCanvasLineB" id="windStationCanvasLineB"
  365. class="windStationCharts" @touchstart="touchLineB2"></canvas></view>
  366. </view>
  367. <view class="UChartTitle">风速功率曲线图</view>
  368. <!-- <view class="xTime">时间</view> -->
  369. </view>
  370. <view class="fanStatusContainer">
  371. <view class="fanStatus">
  372. <view class="statusIcon">
  373. <image src="../../static/picture/001.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  374. </view>
  375. <span>接入&nbsp;&nbsp;99</span>
  376. </view>
  377. <view class="fanStatus">
  378. <view class="statusIcon">
  379. <image src="../../static/picture/002.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  380. </view>
  381. <span>待机&nbsp;&nbsp;99</span>
  382. </view>
  383. <view class="fanStatus">
  384. <view class="statusIcon">
  385. <image src="../../static/picture/003.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  386. </view>
  387. <span>运行&nbsp;&nbsp;99</span>
  388. </view>
  389. <view class="fanStatus">
  390. <view class="statusIcon">
  391. <image src="../../static/picture/004.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  392. </view>
  393. <span>故障&nbsp;&nbsp;99</span>
  394. </view>
  395. <view class="fanStatus">
  396. <view class="statusIcon">
  397. <image src="../../static/picture/005.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  398. </view>
  399. <span>维护&nbsp;&nbsp;99</span>
  400. </view>
  401. <view class="fanStatus">
  402. <view class="statusIcon">
  403. <image src="../../static/picture/006.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  404. </view>
  405. <span>离线&nbsp;&nbsp;99</span>
  406. </view>
  407. </view>
  408. </view>
  409. <view class="windStationCard" @tap="common.navTo('/components/windStationCardDetail/WindStationCardDetail?option=' + '石板泉')">
  410. <view class="windStationTitle">石板泉风电场</view>
  411. <view class="powerAndSpeedContainer">
  412. <view class="powerAndSpeedRed">
  413. 预测电量(kwh):
  414. <span>15</span>
  415. </view>
  416. <view class="powerAndSpeedRed">
  417. 日发电量(kwh):
  418. <span>15</span>
  419. </view>
  420. <view class="powerAndSpeedRed">
  421. 实时风速(km/h):
  422. <span>15</span>
  423. </view>
  424. <view class="powerAndSpeedRed">
  425. 实际功率(km/h):
  426. <span>15</span>
  427. </view>
  428. </view>
  429. <!-- HQChart图 -->
  430. <!-- <view class="HQChart">
  431. <div class="divchart" ref="divchart"><div id="minute" style="width: 250px; height: 100px;" ref="minute"></div></div>
  432. </view> -->
  433. <view class="UChartContainer">
  434. <view class="windStationUChart">
  435. <view class="windStationQiun-charts"><canvas canvas-id="windStationCanvasLineC" id="windStationCanvasLineC"
  436. class="windStationCharts" @touchstart="touchLineB3"></canvas></view>
  437. </view>
  438. <view class="UChartTitle">风速功率曲线图</view>
  439. <!-- <view class="xTime">时间</view> -->
  440. </view>
  441. <view class="fanStatusContainer">
  442. <view class="fanStatus">
  443. <view class="statusIcon">
  444. <image src="../../static/picture/001.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  445. </view>
  446. <span>接入&nbsp;&nbsp;99</span>
  447. </view>
  448. <view class="fanStatus">
  449. <view class="statusIcon">
  450. <image src="../../static/picture/002.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  451. </view>
  452. <span>待机&nbsp;&nbsp;99</span>
  453. </view>
  454. <view class="fanStatus">
  455. <view class="statusIcon">
  456. <image src="../../static/picture/003.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  457. </view>
  458. <span>运行&nbsp;&nbsp;99</span>
  459. </view>
  460. <view class="fanStatus">
  461. <view class="statusIcon">
  462. <image src="../../static/picture/004.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  463. </view>
  464. <span>故障&nbsp;&nbsp;99</span>
  465. </view>
  466. <view class="fanStatus">
  467. <view class="statusIcon">
  468. <image src="../../static/picture/005.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  469. </view>
  470. <span>维护&nbsp;&nbsp;99</span>
  471. </view>
  472. <view class="fanStatus">
  473. <view class="statusIcon">
  474. <image src="../../static/picture/006.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  475. </view>
  476. <span>离线&nbsp;&nbsp;99</span>
  477. </view>
  478. </view>
  479. </view>
  480. <view class="windStationCard" @tap="common.navTo('/components/windStationCardDetail/WindStationCardDetail?option=' + '青山')">
  481. <view class="windStationTitle">青山风电场</view>
  482. <view class="powerAndSpeedContainer">
  483. <view class="powerAndSpeedRed">
  484. 预测电量(kwh):
  485. <span>15</span>
  486. </view>
  487. <view class="powerAndSpeedRed">
  488. 日发电量(kwh):
  489. <span>15</span>
  490. </view>
  491. <view class="powerAndSpeedRed">
  492. 实时风速(km/h):
  493. <span>15</span>
  494. </view>
  495. <view class="powerAndSpeedRed">
  496. 实际功率(km/h):
  497. <span>15</span>
  498. </view>
  499. </view>
  500. <!-- HQChart图 -->
  501. <!-- <view class="HQChart">
  502. <div class="divchart" ref="divchart"><div id="minute" style="width: 250px; height: 100px;" ref="minute"></div></div>
  503. </view> -->
  504. <view class="UChartContainer">
  505. <view class="windStationUChart">
  506. <view class="windStationQiun-charts"><canvas canvas-id="windStationCanvasLineD" id="windStationCanvasLineD"
  507. class="windStationCharts" @touchstart="touchLineB4"></canvas></view>
  508. </view>
  509. <view class="UChartTitle">风速功率曲线图</view>
  510. <!-- <view class="xTime">时间</view> -->
  511. </view>
  512. <view class="fanStatusContainer">
  513. <view class="fanStatus">
  514. <view class="statusIcon">
  515. <image src="../../static/picture/001.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  516. </view>
  517. <span>接入&nbsp;&nbsp;99</span>
  518. </view>
  519. <view class="fanStatus">
  520. <view class="statusIcon">
  521. <image src="../../static/picture/002.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  522. </view>
  523. <span>待机&nbsp;&nbsp;99</span>
  524. </view>
  525. <view class="fanStatus">
  526. <view class="statusIcon">
  527. <image src="../../static/picture/003.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  528. </view>
  529. <span>运行&nbsp;&nbsp;99</span>
  530. </view>
  531. <view class="fanStatus">
  532. <view class="statusIcon">
  533. <image src="../../static/picture/004.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  534. </view>
  535. <span>故障&nbsp;&nbsp;99</span>
  536. </view>
  537. <view class="fanStatus">
  538. <view class="statusIcon">
  539. <image src="../../static/picture/005.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  540. </view>
  541. <span>维护&nbsp;&nbsp;99</span>
  542. </view>
  543. <view class="fanStatus">
  544. <view class="statusIcon">
  545. <image src="../../static/picture/006.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  546. </view>
  547. <span>离线&nbsp;&nbsp;99</span>
  548. </view>
  549. </view>
  550. </view>
  551. <view class="windStationCard" @tap="common.navTo('/components/windStationCardDetail/WindStationCardDetail?option=' + '香山')">
  552. <view class="windStationTitle">香山风电场</view>
  553. <view class="powerAndSpeedContainer">
  554. <view class="powerAndSpeedRed">
  555. 预测电量(kwh):
  556. <span>15</span>
  557. </view>
  558. <view class="powerAndSpeedRed">
  559. 日发电量(kwh):
  560. <span>15</span>
  561. </view>
  562. <view class="powerAndSpeedRed">
  563. 实时风速(km/h):
  564. <span>15</span>
  565. </view>
  566. <view class="powerAndSpeedRed">
  567. 实际功率(km/h):
  568. <span>15</span>
  569. </view>
  570. </view>
  571. <!-- HQChart图 -->
  572. <!-- <view class="HQChart">
  573. <div class="divchart" ref="divchart"><div id="minute" style="width: 250px; height: 100px;" ref="minute"></div></div>
  574. </view> -->
  575. <view class="UChartContainer">
  576. <view class="windStationUChart">
  577. <view class="windStationQiun-charts"><canvas canvas-id="windStationCanvasLineE" id="windStationCanvasLineE"
  578. class="windStationCharts" @touchstart="touchLineB5"></canvas></view>
  579. </view>
  580. <view class="UChartTitle">风速功率曲线图</view>
  581. <!-- <view class="xTime">时间</view> -->
  582. </view>
  583. <view class="fanStatusContainer">
  584. <view class="fanStatus">
  585. <view class="statusIcon">
  586. <image src="../../static/picture/001.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  587. </view>
  588. <span>接入&nbsp;&nbsp;99</span>
  589. </view>
  590. <view class="fanStatus">
  591. <view class="statusIcon">
  592. <image src="../../static/picture/002.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  593. </view>
  594. <span>待机&nbsp;&nbsp;99</span>
  595. </view>
  596. <view class="fanStatus">
  597. <view class="statusIcon">
  598. <image src="../../static/picture/003.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  599. </view>
  600. <span>运行&nbsp;&nbsp;99</span>
  601. </view>
  602. <view class="fanStatus">
  603. <view class="statusIcon">
  604. <image src="../../static/picture/004.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  605. </view>
  606. <span>故障&nbsp;&nbsp;99</span>
  607. </view>
  608. <view class="fanStatus">
  609. <view class="statusIcon">
  610. <image src="../../static/picture/005.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  611. </view>
  612. <span>维护&nbsp;&nbsp;99</span>
  613. </view>
  614. <view class="fanStatus">
  615. <view class="statusIcon">
  616. <image src="../../static/picture/006.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  617. </view>
  618. <span>离线&nbsp;&nbsp;99</span>
  619. </view>
  620. </view>
  621. </view>
  622. </view>
  623. </scroll-view>
  624. </view>
  625. </scroll-view>
  626. <view class="DrawerClose" :class="modalName=='viewModal'?'show':''" @tap="hideModal">
  627. <text class="cuIcon-pullright"></text>
  628. </view>
  629. </view>
  630. </template>
  631. <script>
  632. import plusDrawer from '../../components/drawer/plusDrawer.vue'
  633. import drawer from '../../components/drawer/threeLineDrawer.vue';
  634. import uCharts from '../../components/tools/u-charts/u-charts.js';
  635. var _self;
  636. var canvaLineA = null;
  637. var canvaColumn = null;
  638. var canvaLineB1 = null;
  639. var canvaLineB2 = null;
  640. var canvaLineB3 = null;
  641. var canvaLineB4 = null;
  642. var canvaLineB5 = null;
  643. export default {
  644. components: {
  645. drawer: drawer,
  646. "plusDrawer": plusDrawer,
  647. },
  648. data: function() {
  649. return {
  650. badge: 22,
  651. drawerList: [{
  652. "name": "首页"
  653. },
  654. {
  655. "name": "状态监视"
  656. },
  657. {
  658. "name": "矩阵监视"
  659. },
  660. {
  661. "name": "风场监视"
  662. },
  663. {
  664. "name": "人员监视"
  665. },
  666. ],
  667. plusDrawerList: [{
  668. name: "宁夏新能源公司",
  669. windPowerStationId: "NINGXIAXINNENGYUANGONGSI"
  670. },
  671. {
  672. name: "牛首山风电场",
  673. windPowerStationId: "NSS_FDC"
  674. },
  675. {
  676. name: "香山风电场",
  677. windPowerStationId: "XS_FDC"
  678. },
  679. {
  680. name: "石板泉风电场",
  681. windPowerStationId: "SBQ_FDC"
  682. },
  683. {
  684. name: "青山风电场",
  685. windPowerStationId: "QS_FDC"
  686. },
  687. {
  688. name: "麻黄山风电场",
  689. windPowerStationId: "MHS_FDC"
  690. },
  691. ],
  692. modalName: null,
  693. address: '宁夏新能源公司',
  694. windPowerStationId: '',
  695. inconList: ['form', 'favor', 'question', 'edit'],
  696. minaverageSpeed: '12',
  697. maxaverageSpeed: '25',
  698. loading: false,
  699. cWidth: '',
  700. cHeight: '',
  701. pixelRatio: 1,
  702. serverData: '',
  703. dayHair: false,
  704. fault: false,
  705. overhaul: false,
  706. powerLimitation: false,
  707. performance: false,
  708. toBeInvolved: false,
  709. Xzuobiao: ["04/12", "04/13", "04/14", "04/15", "04/16", "04/17", "04/18"],
  710. rifa: [18, 13, 12, 17, 13, 7, 11],
  711. guzhang: [17, 15, 17, 21, 16, 8, 10],
  712. jianxiu: [14, 17, 19, 20, 6, 14, 12],
  713. xiandian: [14, 17, 19, 20, 6, 14, 12],
  714. xingneng: [15, 17, 19, 20, 6, 4, 12],
  715. shoulei: [14, 17, 19, 20, 6, 4, 12],
  716. clickFlag: "stack",
  717. windStationCardCWidth: '',
  718. windStationCardCHeight: '',
  719. windStationCardPixelRatio: 1
  720. };
  721. },
  722. created: function() {
  723. this.address = this.getWindPowerStationNameToSessionStorage();
  724. if(this.address==""){
  725. this.pushWindPowerStationNameToSessionStorage("宁夏新能源公司");
  726. this.address = this.getWindPowerStationNameToSessionStorage();
  727. }
  728. this.windPowerStationId = uni.getStorageSync('windPowerStationId');
  729. },
  730. onLoad: function() {
  731. let that = this;
  732. setTimeout(function() {
  733. that.loading = true;
  734. }, 500);
  735. _self = this;
  736. this.cWidth = uni.upx2px(750);
  737. this.cHeight = uni.upx2px(400);
  738. this.getServerData();
  739. this.getColumnData();
  740. this.windStationCardCWidth = 250;
  741. this.windStationCardCHeight = 150;
  742. this.getWindStationCardData();
  743. },
  744. onHide() {
  745. this.$refs.drawer.closeDrawer();
  746. this.hideModal();
  747. },
  748. onShow(){
  749. this.windPowerStationId = uni.getStorageSync('windPowerStationId');
  750. this.address = this.getWindPowerStationNameToSessionStorage();
  751. },
  752. methods: {
  753. openDrawer: function() {
  754. this.$refs.drawer.openDrawer(250, this.drawerList, this.inconList);
  755. },
  756. closeDrawer: function() {
  757. this.drawerIsShow = false;
  758. },
  759. pushWindPowerStationNameToSessionStorage(windpowerstationName) {
  760. uni.setStorageSync('windpowerstationName', windpowerstationName);
  761. //sessionStorage.setItem('windpowerstationName', windpowerstationName);
  762. //alert("v"+ sessionStorage.getItem("windpowerstationName"));
  763. //this.common.goback('/pages/index/Index');
  764. },
  765. getWindPowerStationNameToSessionStorage() {
  766. uni.getStorageSync('windpowerstationName');
  767. return uni.getStorageSync('windpowerstationName');
  768. },
  769. showModal(e) {
  770. this.modalName = e.currentTarget.dataset.target;
  771. this.$refs.plusDrawer.showModal(this.plusDrawerList, this.modalName);
  772. },
  773. hideModal() {
  774. this.modalName = null;
  775. this.$refs.plusDrawer.hideModal(this.modalName);
  776. },
  777. getServerData() {
  778. // 折线图
  779. let LineA = {
  780. categories: [
  781. ' 17:26',
  782. '18:56',
  783. '19:56',
  784. '20:56',
  785. '21:56',
  786. '22:56',
  787. '23:56',
  788. '00:56',
  789. '01:56',
  790. '02:56',
  791. '03:56',
  792. '04:56',
  793. '05:56',
  794. '06:56',
  795. '07:56',
  796. '08:56',
  797. '09:56',
  798. '10:56',
  799. '11:56',
  800. '12:56',
  801. '13:56',
  802. '14:56',
  803. '15:56',
  804. '16:56',
  805. '17:56 '
  806. ],
  807. series: [{
  808. name: '功率',
  809. data: [11, 12, 14, 12, 13, 12, 16, 14, 11, 13, 10, 14, 11, 13, 11, 12, 11, 12.1, 12.2, 11.5, 11.7, 11.3, 12.7,
  810. 13, 12.8
  811. ],
  812. color: '#4BB94B',
  813. textColor: '#FFFFFF',
  814. textSize: this.seriesTextSize,
  815. format: val => {
  816. return val + 'kwh';
  817. },
  818. index: 0,
  819. legendShape: 'circle'
  820. },
  821. {
  822. name: '风速',
  823. data: [21, 22, 21, 22, 21, 22, 21, 22, 21, 22, 21, 22, 21, 22, 21, 22, 21, 22.1, 22.2, 21.5, 21.7, 21.3, 22.7,
  824. 23, 22.8
  825. ],
  826. color: '#E82E2F',
  827. textColor: '#FFFFFF',
  828. textSize: this.seriesTextSize,
  829. format: val => {
  830. return val + 'km/h';
  831. },
  832. index: 1,
  833. legendShape: 'circle'
  834. },
  835. {
  836. name: '理论功率',
  837. data: [31, 32, 31, 32, 31, 32, 31, 32, 31, 32, 31, 32, 31, 32, 31, 32, 31, 32.1, 32.2, 31.5, 31.7, 31.3, 32.7,
  838. 33, 32.8
  839. ],
  840. color: '#F5A83C',
  841. textColor: '#FFFFFF',
  842. textSize: this.seriesTextSize,
  843. format: val => {
  844. return val + 'kwh';
  845. },
  846. index: 0,
  847. legendShape: 'circle'
  848. },
  849. {
  850. name: '预测功率',
  851. data: [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2.1, 2.2, 1.5, 1.7, 1.3, 2.7, 3, 2.8],
  852. color: '#4A80B1',
  853. textColor: '#FFFFFF',
  854. textSize: this.seriesTextSize,
  855. format: val => {
  856. return val + 'kwh';
  857. },
  858. index: 1,
  859. legendShape: 'circle'
  860. }
  861. ]
  862. };
  863. this.showLineA('canvasLineA', LineA);
  864. },
  865. showLineA(canvasId, chartData) {
  866. var _self = this;
  867. canvaLineA = new uCharts({
  868. $this: _self,
  869. canvasId: canvasId,
  870. type: 'line',
  871. fontSize: 11,
  872. legend: {
  873. show: true,
  874. position: 'top',
  875. float: 'right',
  876. fontColor: 'silver',
  877. itemGap: '4',
  878. itemWidth: '3'
  879. },
  880. dataLabel: false,
  881. dataPointShape: false,
  882. background: '#FFFFFF',
  883. pixelRatio: _self.pixelRatio,
  884. categories: chartData.categories,
  885. series: chartData.series,
  886. animation: true,
  887. xAxis: {
  888. type: 'grid',
  889. gridColor: 'silver',
  890. fontColor: 'silver',
  891. gridType: 'solid',
  892. gridColor: '#2E2E2E',
  893. axisLineColor: '#2E2E2E',
  894. labelCount: '3'
  895. // itemCount:"3"
  896. },
  897. yAxis: {
  898. data: [{
  899. type: 'value',
  900. fontColor: 'silver',
  901. disabled: false, //y轴轴线
  902. min: 0,
  903. max: 40,
  904. position: 'left',
  905. axisLineColor: '#2E2E2E',
  906. title: ' 风速:(km/h)',
  907. titleFontColor: 'silver'
  908. },
  909. {
  910. fontColor: 'silver',
  911. disabled: false, //y轴轴线
  912. min: 0,
  913. max: 40,
  914. position: 'right',
  915. axisLineColor: '#2E2E2E',
  916. title: '功率:(kwh)',
  917. titleFontColor: 'silver'
  918. }
  919. ],
  920. gridColor: '#2E2E2E',
  921. splitNumber: 4,
  922. gridType: 'solid',
  923. dashLength: 8,
  924. showTitle: 'true',
  925. format: val => {
  926. return val.toFixed(0) + '元';
  927. }
  928. },
  929. width: _self.cWidth * _self.pixelRatio,
  930. height: _self.cHeight * _self.pixelRatio,
  931. extra: {
  932. line: {
  933. type: 'line',
  934. width: '1'
  935. }
  936. }
  937. });
  938. },
  939. AffectedPower() {
  940. this.toBeInvolved = true,
  941. this.performance = false;
  942. this.powerLimitation = false;
  943. this.overhaul = false;
  944. this.dayHair = false;
  945. this.fault = false;
  946. this.clickFlag = "group";
  947. this.getColumnData();
  948. },
  949. performancePower() {
  950. this.performance = true;
  951. this.powerLimitation = false;
  952. this.toBeInvolved = false,
  953. this.overhaul = false;
  954. this.dayHair = false;
  955. this.fault = false;
  956. this.clickFlag = "group";
  957. this.getColumnData();
  958. },
  959. limitedPower() {
  960. this.toBeInvolved = false,
  961. this.powerLimitation = true;
  962. this.performance = false;
  963. this.overhaul = false;
  964. this.dayHair = false;
  965. this.fault = false;
  966. this.clickFlag = "group";
  967. this.getColumnData();
  968. },
  969. maintenancePower() {
  970. this.toBeInvolved = false,
  971. this.overhaul = true;
  972. this.performance = false;
  973. this.dayHair = false;
  974. this.fault = false;
  975. this.powerLimitation = false;
  976. this.clickFlag = "group";
  977. this.getColumnData();
  978. },
  979. directGeneration() {
  980. this.toBeInvolved = false,
  981. this.dayHair = false;
  982. this.performance = false;
  983. this.fault = false;
  984. this.overhaul = false;
  985. this.powerLimitation = false;
  986. this.clickFlag = "stack";
  987. this.getColumnData();
  988. },
  989. powerGeneration() {
  990. this.toBeInvolved = false,
  991. this.dayHair = true;
  992. this.performance = false;
  993. this.fault = false;
  994. this.overhaul = false;
  995. this.powerLimitation = false;
  996. this.clickFlag = "group";
  997. this.getColumnData();
  998. },
  999. faultPower() {
  1000. this.toBeInvolved = false,
  1001. this.fault = true;
  1002. this.performance = false;
  1003. this.dayHair = false;
  1004. this.overhaul = false;
  1005. this.powerLimitation = false;
  1006. this.clickFlag = "group";
  1007. this.getColumnData();
  1008. },
  1009. getColumnData() {
  1010. let ColumnStack = {
  1011. "categories": ["04/12", "04/13", "04/14", "04/15", "04/16", "04/17", "04/18"],
  1012. "series": [{
  1013. "name": "应发电量(万kwh)",
  1014. "data": [0, 0, 0, 0, 0, 0, 0],
  1015. color: '#007BF9',
  1016. }, {
  1017. "name": "日发电量(万kwh)",
  1018. "data": [18, 13, 12, 17, 13, 7, 11],
  1019. color: '#4EB64E',
  1020. }, {
  1021. "name": "故障损失电量(万kwh)",
  1022. "data": [17, 15, 17, 21, 16, 8, 10],
  1023. color: '#F14E51',
  1024. }, {
  1025. "name": "检修损失电量(万kwh)",
  1026. "data": [14, 17, 19, 20, 6, 14, 12],
  1027. color: '#FF6B3E',
  1028. },
  1029. {
  1030. "name": "限电损失电量(万kwh)",
  1031. "data": [14, 17, 19, 20, 6, 14, 12],
  1032. color: '#DC62D2',
  1033. },
  1034. {
  1035. "name": "性能损失电量(万kwh)",
  1036. "data": [15, 17, 19, 20, 6, 4, 12],
  1037. color: '#9DA3F6',
  1038. },
  1039. {
  1040. "name": "受累损失电量(万kwh)",
  1041. "data": [14, 17, 19, 20, 6, 4, 12],
  1042. color: '#9E9E9E',
  1043. },
  1044. ],
  1045. };
  1046. if (this.dayHair) {
  1047. ColumnStack = {
  1048. "categories": ["04/12", "04/13", "04/14", "04/15", "04/16", "04/17", "04/18", "04/19", "04/20"],
  1049. "series": [{
  1050. "name": "日发电量(万kwh)",
  1051. "data": [18, 13, 12, 17, 13, 7, 11, 15, 13],
  1052. color: '#4EB64E',
  1053. }
  1054. ],
  1055. };
  1056. ColumnStack.categories = [];
  1057. ColumnStack.series[0].data = [];
  1058. for (let i = 0; i < this.rifa.length; i++) {
  1059. ColumnStack.categories.push(this.Xzuobiao[i]);
  1060. // console.log(ColumnStack.categories)
  1061. ColumnStack.series[0].data.push(this.rifa[i]);
  1062. // console.log(ColumnStack.series[1].data)
  1063. }
  1064. }
  1065. if (this.fault) {
  1066. ColumnStack = {
  1067. "categories": ["04/12", "04/13", "04/14", "04/15", "04/16", "04/17", "04/18", "04/19", "04/20"],
  1068. "series": [{
  1069. "name": "故障损失电量(万kwh)",
  1070. "data": [17, 15, 17, 21, 16, 8, 10, 17, 11],
  1071. color: '#F14E51',
  1072. }, ],
  1073. };
  1074. ColumnStack.categories = [];
  1075. ColumnStack.series[0].data = [];
  1076. for (let i = 0; i < this.guzhang.length; i++) {
  1077. ColumnStack.categories.push(this.Xzuobiao[i]);
  1078. // console.log(ColumnStack.categories)
  1079. ColumnStack.series[0].data.push(this.guzhang[i]);
  1080. // console.log(ColumnStack.series[1].data)
  1081. }
  1082. }
  1083. if (this.overhaul) {
  1084. ColumnStack = {
  1085. "categories": ["04/12", "04/13", "04/14", "04/15", "04/16", "04/17", "04/18", "04/19", "04/20"],
  1086. "series": [{
  1087. "name": "检修损失电量(万kwh)",
  1088. "data": [14, 17, 19, 20, 6, 14, 12, 14, 10],
  1089. color: '#FF6B3E',
  1090. }
  1091. ],
  1092. };
  1093. ColumnStack.categories = [];
  1094. ColumnStack.series[0].data = [];
  1095. for (let i = 0; i < this.jianxiu.length; i++) {
  1096. ColumnStack.categories.push(this.Xzuobiao[i]);
  1097. // console.log(ColumnStack.categories)
  1098. ColumnStack.series[0].data.push(this.jianxiu[i]);
  1099. // console.log(ColumnStack.series[1].data)
  1100. }
  1101. }
  1102. if (this.powerLimitation) {
  1103. ColumnStack = {
  1104. "categories": ["04/12", "04/13", "04/14", "04/15", "04/16", "04/17", "04/18", "04/19", "04/20"],
  1105. "series": [{
  1106. "name": "限电损失电量(万kwh)",
  1107. "data": [14, 17, 19, 20, 6, 14, 12, 14, 10],
  1108. color: '#DC62D2',
  1109. }
  1110. ],
  1111. };
  1112. ColumnStack.categories = [];
  1113. ColumnStack.series[0].data = [];
  1114. for (let i = 0; i < this.xiandian.length; i++) {
  1115. ColumnStack.categories.push(this.Xzuobiao[i]);
  1116. // console.log(ColumnStack.categories)
  1117. ColumnStack.series[0].data.push(this.xiandian[i]);
  1118. // console.log(ColumnStack.series[1].data)
  1119. }
  1120. }
  1121. if (this.performance) {
  1122. ColumnStack = {
  1123. "categories": ["04/12", "04/13", "04/14", "04/15", "04/16", "04/17", "04/18", "04/19", "04/20"],
  1124. "series": [{
  1125. "name": "性能损失电量(万kwh)",
  1126. "data": [14, 17, 19, 20, 6, 14, 12, 14, 10],
  1127. color: '#9DA3F6',
  1128. }
  1129. ],
  1130. };
  1131. ColumnStack.categories = [];
  1132. ColumnStack.series[0].data = [];
  1133. for (let i = 0; i < this.xingneng.length; i++) {
  1134. ColumnStack.categories.push(this.Xzuobiao[i]);
  1135. // console.log(ColumnStack.categories)
  1136. ColumnStack.series[0].data.push(this.xingneng[i]);
  1137. // console.log(ColumnStack.series[1].data)
  1138. }
  1139. }
  1140. if (this.toBeInvolved) {
  1141. ColumnStack = {
  1142. "categories": ["04/12", "04/13", "04/14", "04/15", "04/16", "04/17", "04/18", "04/19", "04/20"],
  1143. "series": [{
  1144. "name": "受累损失电量(万kwh)",
  1145. "data": [14, 17, 19, 20, 6, 14, 12, 14, 10],
  1146. color: '#9E9E9E',
  1147. }
  1148. ],
  1149. };
  1150. ColumnStack.categories = [];
  1151. ColumnStack.series[0].data = [];
  1152. for (let i = 0; i < this.shoulei.length; i++) {
  1153. ColumnStack.categories.push(this.Xzuobiao[i]);
  1154. // console.log(ColumnStack.categories)
  1155. ColumnStack.series[0].data.push(this.shoulei[i]);
  1156. // console.log(ColumnStack.series[1].data)
  1157. }
  1158. }
  1159. this.showColumnStack("canvasColumnStack", ColumnStack);
  1160. },
  1161. showColumnStack(canvasId, chartData) {
  1162. var _self = this;
  1163. canvaColumn = new uCharts({
  1164. $this: _self,
  1165. canvasId: canvasId,
  1166. type: 'column',
  1167. legend: {
  1168. show: false
  1169. },
  1170. fontSize: 11,
  1171. background: '#FFFFFF',
  1172. pixelRatio: _self.pixelRatio,
  1173. animation: true,
  1174. categories: chartData.categories,
  1175. series: chartData.series,
  1176. xAxis: {
  1177. disableGrid: true,
  1178. gridColor: 'silver',
  1179. fontColor: 'silver',
  1180. },
  1181. yAxis: {
  1182. data: [{
  1183. type: "value",
  1184. fontColor: 'silver',
  1185. disabled: false, //y轴轴线
  1186. min: 0,
  1187. max: 60,
  1188. axisLineColor: "#2E2E2E",
  1189. title: " 电量:(kwh)",
  1190. titleFontColor: "silver"
  1191. }],
  1192. gridColor: "#2E2E2E",
  1193. splitNumber: 4,
  1194. gridType: 'solid',
  1195. dashLength: 8,
  1196. showTitle: false,
  1197. //disabled:true
  1198. },
  1199. dataLabel: false,
  1200. width: _self.cWidth * _self.pixelRatio,
  1201. height: _self.cHeight * _self.pixelRatio,
  1202. extra: {
  1203. column: {
  1204. type: _self.clickFlag,
  1205. width: '13'
  1206. }
  1207. }
  1208. });
  1209. },
  1210. touchColumn(e) {
  1211. let _this = this;
  1212. canvaColumn.showToolTip(e, {
  1213. format: function(item, category) {
  1214. if (item.name == "应发电量(万kwh)") {
  1215. return category + ' ' + item.name + ':' + 50;
  1216. } else {
  1217. return category + ' ' + item.name + ':' + item.data
  1218. }
  1219. }
  1220. });
  1221. },
  1222. touchLineA(e) {
  1223. canvaLineA.showToolTip(e, {
  1224. format: function(item, category) {
  1225. return category + ' ' + item.name + ':' + item.data;
  1226. }
  1227. });
  1228. },
  1229. touchLineB1(e) {
  1230. canvaLineB1.showToolTip(e, {
  1231. format: function(item, category) {
  1232. return category + ' ' + item.name + ':' + item.data;
  1233. }
  1234. });
  1235. },
  1236. touchLineB2(e) {
  1237. canvaLineB2.showToolTip(e, {
  1238. format: function(item, category) {
  1239. return category + ' ' + item.name + ':' + item.data;
  1240. }
  1241. });
  1242. },
  1243. touchLineB3(e) {
  1244. canvaLineB3.showToolTip(e, {
  1245. format: function(item, category) {
  1246. return category + ' ' + item.name + ':' + item.data;
  1247. }
  1248. });
  1249. },
  1250. touchLineB4(e) {
  1251. canvaLineB4.showToolTip(e, {
  1252. format: function(item, category) {
  1253. return category + ' ' + item.name + ':' + item.data;
  1254. }
  1255. });
  1256. },
  1257. touchLineB5(e) {
  1258. canvaLineB5.showToolTip(e, {
  1259. format: function(item, category) {
  1260. return category + ' ' + item.name + ':' + item.data;
  1261. }
  1262. });
  1263. },
  1264. moveLineA(e) {
  1265. canvaLineA.scroll(e);
  1266. },
  1267. getWindStationCardData: function() {
  1268. let LineA1 = {
  1269. categories: [
  1270. ' 17:26',
  1271. '18:56',
  1272. '19:56',
  1273. '20:56',
  1274. '21:56',
  1275. '22:56',
  1276. '23:56',
  1277. '00:56',
  1278. '01:56',
  1279. '02:56',
  1280. '03:56',
  1281. '04:56',
  1282. '05:56',
  1283. '06:56',
  1284. '07:56',
  1285. '08:56',
  1286. '09:56',
  1287. '10:56',
  1288. '11:56',
  1289. '12:56',
  1290. '13:56',
  1291. '14:56',
  1292. '15:56',
  1293. '16:56',
  1294. '17:56 '
  1295. ],
  1296. series: [{
  1297. name: '功率',
  1298. data: [11, 12, 14, 12, 13, 12, 16, 14, 11, 13, 10, 14, 11, 13, 11, 12, 11, 12.1, 12.2, 11.5, 11.7, 11.3, 12.7,
  1299. 13, 12.8
  1300. ],
  1301. color: '#4BB94B',
  1302. textColor: '#FFFFFF',
  1303. textSize: this.seriesTextSize,
  1304. format: val => {
  1305. return val + 'kwh';
  1306. },
  1307. index: 0,
  1308. legendShape: 'circle'
  1309. },
  1310. {
  1311. name: '风速',
  1312. data: [21, 22, 21, 22, 21, 22, 21, 22, 21, 22, 21, 22, 21, 22, 21, 22, 21, 22.1, 22.2, 21.5, 21.7, 21.3, 22.7,
  1313. 23, 22.8
  1314. ],
  1315. color: '#E82E2F',
  1316. textColor: '#FFFFFF',
  1317. textSize: this.seriesTextSize,
  1318. format: val => {
  1319. return val + 'km/h';
  1320. },
  1321. index: 1,
  1322. legendShape: 'circle'
  1323. },
  1324. {
  1325. name: '理论功率',
  1326. data: [31, 32, 31, 32, 31, 32, 31, 32, 31, 32, 31, 32, 31, 32, 31, 32, 31, 32.1, 32.2, 31.5, 31.7, 31.3, 32.7,
  1327. 33, 32.8
  1328. ],
  1329. color: '#F5A83C',
  1330. textColor: '#FFFFFF',
  1331. textSize: this.seriesTextSize,
  1332. format: val => {
  1333. return val + 'kwh';
  1334. },
  1335. index: 0,
  1336. legendShape: 'circle'
  1337. },
  1338. {
  1339. name: '预测功率',
  1340. data: [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2.1, 2.2, 1.5, 1.7, 1.3, 2.7, 3, 2.8],
  1341. color: '#4A80B1',
  1342. textColor: '#FFFFFF',
  1343. textSize: this.seriesTextSize,
  1344. format: val => {
  1345. return val + 'kwh';
  1346. },
  1347. index: 1,
  1348. legendShape: 'circle'
  1349. }
  1350. ]
  1351. };
  1352. let LineB = {
  1353. categories: [
  1354. ' 17:26',
  1355. '18:56',
  1356. '19:56',
  1357. '20:56',
  1358. '21:56',
  1359. '22:56',
  1360. '23:56',
  1361. '00:56',
  1362. '01:56',
  1363. '02:56',
  1364. '03:56',
  1365. '04:56',
  1366. '05:56',
  1367. '06:56',
  1368. '07:56',
  1369. '08:56',
  1370. '09:56',
  1371. '10:56',
  1372. '11:56',
  1373. '12:56',
  1374. '13:56',
  1375. '14:56',
  1376. '15:56',
  1377. '16:56',
  1378. '17:56 '
  1379. ],
  1380. series: [{
  1381. name: '功率',
  1382. data: [11, 12, 14, 12, 13, 12, 16, 14, 11, 13, 10, 14, 11, 13, 11, 12, 11, 12.1, 12.2, 11.5, 11.7, 11.3, 12.7,
  1383. 13, 12.8
  1384. ],
  1385. color: '#4BB94B',
  1386. textColor: '#FFFFFF',
  1387. textSize: this.seriesTextSize,
  1388. format: val => {
  1389. return val + 'kwh';
  1390. },
  1391. index: 0,
  1392. legendShape: 'circle'
  1393. },
  1394. {
  1395. name: '风速',
  1396. data: [21, 22, 21, 22, 21, 22, 21, 22, 21, 22, 21, 22, 21, 22, 21, 22, 21, 22.1, 22.2, 21.5, 21.7, 21.3, 22.7,
  1397. 23, 22.8
  1398. ],
  1399. color: '#E82E2F',
  1400. textColor: '#FFFFFF',
  1401. textSize: this.seriesTextSize,
  1402. format: val => {
  1403. return val + 'km/h';
  1404. },
  1405. index: 1,
  1406. legendShape: 'circle'
  1407. },
  1408. {
  1409. name: '理论功率',
  1410. data: [31, 32, 31, 32, 31, 32, 31, 32, 31, 32, 31, 32, 31, 32, 31, 32, 31, 32.1, 32.2, 31.5, 31.7, 31.3, 32.7,
  1411. 33, 32.8
  1412. ],
  1413. color: '#F5A83C',
  1414. textColor: '#FFFFFF',
  1415. textSize: this.seriesTextSize,
  1416. format: val => {
  1417. return val + 'kwh';
  1418. },
  1419. index: 0,
  1420. legendShape: 'circle'
  1421. },
  1422. {
  1423. name: '预测功率',
  1424. data: [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2.1, 2.2, 1.5, 1.7, 1.3, 2.7, 3, 2.8],
  1425. color: '#4A80B1',
  1426. textColor: '#FFFFFF',
  1427. textSize: this.seriesTextSize,
  1428. format: val => {
  1429. return val + 'kwh';
  1430. },
  1431. index: 1,
  1432. legendShape: 'circle'
  1433. }
  1434. ]
  1435. };
  1436. let LineC = {
  1437. categories: [
  1438. ' 17:26',
  1439. '18:56',
  1440. '19:56',
  1441. '20:56',
  1442. '21:56',
  1443. '22:56',
  1444. '23:56',
  1445. '00:56',
  1446. '01:56',
  1447. '02:56',
  1448. '03:56',
  1449. '04:56',
  1450. '05:56',
  1451. '06:56',
  1452. '07:56',
  1453. '08:56',
  1454. '09:56',
  1455. '10:56',
  1456. '11:56',
  1457. '12:56',
  1458. '13:56',
  1459. '14:56',
  1460. '15:56',
  1461. '16:56',
  1462. '17:56 '
  1463. ],
  1464. series: [{
  1465. name: '功率',
  1466. data: [11, 12, 14, 12, 13, 12, 16, 14, 11, 13, 10, 14, 11, 13, 11, 12, 11, 12.1, 12.2, 11.5, 11.7, 11.3, 12.7,
  1467. 13, 12.8
  1468. ],
  1469. color: '#4BB94B',
  1470. textColor: '#FFFFFF',
  1471. textSize: this.seriesTextSize,
  1472. format: val => {
  1473. return val + 'kwh';
  1474. },
  1475. index: 0,
  1476. legendShape: 'circle'
  1477. },
  1478. {
  1479. name: '风速',
  1480. data: [21, 22, 21, 22, 21, 22, 21, 22, 21, 22, 21, 22, 21, 22, 21, 22, 21, 22.1, 22.2, 21.5, 21.7, 21.3, 22.7,
  1481. 23, 22.8
  1482. ],
  1483. color: '#E82E2F',
  1484. textColor: '#FFFFFF',
  1485. textSize: this.seriesTextSize,
  1486. format: val => {
  1487. return val + 'km/h';
  1488. },
  1489. index: 1,
  1490. legendShape: 'circle'
  1491. },
  1492. {
  1493. name: '理论功率',
  1494. data: [31, 32, 31, 32, 31, 32, 31, 32, 31, 32, 31, 32, 31, 32, 31, 32, 31, 32.1, 32.2, 31.5, 31.7, 31.3, 32.7,
  1495. 33, 32.8
  1496. ],
  1497. color: '#F5A83C',
  1498. textColor: '#FFFFFF',
  1499. textSize: this.seriesTextSize,
  1500. format: val => {
  1501. return val + 'kwh';
  1502. },
  1503. index: 0,
  1504. legendShape: 'circle'
  1505. },
  1506. {
  1507. name: '预测功率',
  1508. data: [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2.1, 2.2, 1.5, 1.7, 1.3, 2.7, 3, 2.8],
  1509. color: '#4A80B1',
  1510. textColor: '#FFFFFF',
  1511. textSize: this.seriesTextSize,
  1512. format: val => {
  1513. return val + 'kwh';
  1514. },
  1515. index: 1,
  1516. legendShape: 'circle'
  1517. }
  1518. ]
  1519. };
  1520. let LineD = {
  1521. categories: [
  1522. ' 17:26',
  1523. '18:56',
  1524. '19:56',
  1525. '20:56',
  1526. '21:56',
  1527. '22:56',
  1528. '23:56',
  1529. '00:56',
  1530. '01:56',
  1531. '02:56',
  1532. '03:56',
  1533. '04:56',
  1534. '05:56',
  1535. '06:56',
  1536. '07:56',
  1537. '08:56',
  1538. '09:56',
  1539. '10:56',
  1540. '11:56',
  1541. '12:56',
  1542. '13:56',
  1543. '14:56',
  1544. '15:56',
  1545. '16:56',
  1546. '17:56 '
  1547. ],
  1548. series: [{
  1549. name: '功率',
  1550. data: [11, 12, 14, 12, 13, 12, 16, 14, 11, 13, 10, 14, 11, 13, 11, 12, 11, 12.1, 12.2, 11.5, 11.7, 11.3, 12.7,
  1551. 13, 12.8
  1552. ],
  1553. color: '#4BB94B',
  1554. textColor: '#FFFFFF',
  1555. textSize: this.seriesTextSize,
  1556. format: val => {
  1557. return val + 'kwh';
  1558. },
  1559. index: 0,
  1560. legendShape: 'circle'
  1561. },
  1562. {
  1563. name: '风速',
  1564. data: [21, 22, 21, 22, 21, 22, 21, 22, 21, 22, 21, 22, 21, 22, 21, 22, 21, 22.1, 22.2, 21.5, 21.7, 21.3, 22.7,
  1565. 23, 22.8
  1566. ],
  1567. color: '#E82E2F',
  1568. textColor: '#FFFFFF',
  1569. textSize: this.seriesTextSize,
  1570. format: val => {
  1571. return val + 'km/h';
  1572. },
  1573. index: 1,
  1574. legendShape: 'circle'
  1575. },
  1576. {
  1577. name: '理论功率',
  1578. data: [31, 32, 31, 32, 31, 32, 31, 32, 31, 32, 31, 32, 31, 32, 31, 32, 31, 32.1, 32.2, 31.5, 31.7, 31.3, 32.7,
  1579. 33, 32.8
  1580. ],
  1581. color: '#F5A83C',
  1582. textColor: '#FFFFFF',
  1583. textSize: this.seriesTextSize,
  1584. format: val => {
  1585. return val + 'kwh';
  1586. },
  1587. index: 0,
  1588. legendShape: 'circle'
  1589. },
  1590. {
  1591. name: '预测功率',
  1592. data: [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2.1, 2.2, 1.5, 1.7, 1.3, 2.7, 3, 2.8],
  1593. color: '#4A80B1',
  1594. textColor: '#FFFFFF',
  1595. textSize: this.seriesTextSize,
  1596. format: val => {
  1597. return val + 'kwh';
  1598. },
  1599. index: 1,
  1600. legendShape: 'circle'
  1601. }
  1602. ]
  1603. };
  1604. let LineE = {
  1605. categories: [
  1606. ' 17:26',
  1607. '18:56',
  1608. '19:56',
  1609. '20:56',
  1610. '21:56',
  1611. '22:56',
  1612. '23:56',
  1613. '00:56',
  1614. '01:56',
  1615. '02:56',
  1616. '03:56',
  1617. '04:56',
  1618. '05:56',
  1619. '06:56',
  1620. '07:56',
  1621. '08:56',
  1622. '09:56',
  1623. '10:56',
  1624. '11:56',
  1625. '12:56',
  1626. '13:56',
  1627. '14:56',
  1628. '15:56',
  1629. '16:56',
  1630. '17:56 '
  1631. ],
  1632. series: [{
  1633. name: '功率',
  1634. data: [11, 12, 14, 12, 13, 12, 16, 14, 11, 13, 10, 14, 11, 13, 11, 12, 11, 12.1, 12.2, 11.5, 11.7, 11.3, 12.7,
  1635. 13, 12.8
  1636. ],
  1637. color: '#4BB94B',
  1638. textColor: '#FFFFFF',
  1639. textSize: this.seriesTextSize,
  1640. format: val => {
  1641. return val + 'kwh';
  1642. },
  1643. index: 0,
  1644. legendShape: 'circle'
  1645. },
  1646. {
  1647. name: '风速',
  1648. data: [21, 22, 21, 22, 21, 22, 21, 22, 21, 22, 21, 22, 21, 22, 21, 22, 21, 22.1, 22.2, 21.5, 21.7, 21.3, 22.7,
  1649. 23, 22.8
  1650. ],
  1651. color: '#E82E2F',
  1652. textColor: '#FFFFFF',
  1653. textSize: this.seriesTextSize,
  1654. format: val => {
  1655. return val + 'km/h';
  1656. },
  1657. index: 1,
  1658. legendShape: 'circle'
  1659. },
  1660. {
  1661. name: '理论功率',
  1662. data: [31, 32, 31, 32, 31, 32, 31, 32, 31, 32, 31, 32, 31, 32, 31, 32, 31, 32.1, 32.2, 31.5, 31.7, 31.3, 32.7,
  1663. 33, 32.8
  1664. ],
  1665. color: '#F5A83C',
  1666. textColor: '#FFFFFF',
  1667. textSize: this.seriesTextSize,
  1668. format: val => {
  1669. return val + 'kwh';
  1670. },
  1671. index: 0,
  1672. legendShape: 'circle'
  1673. },
  1674. {
  1675. name: '预测功率',
  1676. data: [1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2.1, 2.2, 1.5, 1.7, 1.3, 2.7, 3, 2.8],
  1677. color: '#4A80B1',
  1678. textColor: '#FFFFFF',
  1679. textSize: this.seriesTextSize,
  1680. format: val => {
  1681. return val + 'kwh';
  1682. },
  1683. index: 1,
  1684. legendShape: 'circle'
  1685. }
  1686. ]
  1687. };
  1688. this.showWindStationCardLineA1('windStationCanvasLineA', LineA1);
  1689. this.showWindStationCardLineA2('windStationCanvasLineB', LineB);
  1690. this.showWindStationCardLineA3('windStationCanvasLineC', LineC);
  1691. this.showWindStationCardLineA4('windStationCanvasLineD', LineD);
  1692. this.showWindStationCardLineA5('windStationCanvasLineE', LineE);
  1693. },
  1694. showWindStationCardLineA1(canvasId, chartData) {
  1695. var _self = this;
  1696. canvaLineB1 = new uCharts({
  1697. $this: _self,
  1698. canvasId: canvasId,
  1699. type: 'line',
  1700. fontSize: 11,
  1701. legend: {
  1702. show: true,
  1703. position: 'top',
  1704. float: 'right',
  1705. fontColor: 'silver',
  1706. itemGap: '9',
  1707. itemWidth: '3'
  1708. },
  1709. dataLabel: false,
  1710. dataPointShape: false,
  1711. background: '#FFFFFF',
  1712. pixelRatio: _self.windStationCardPixelRatio,
  1713. categories: chartData.categories,
  1714. series: chartData.series,
  1715. animation: true,
  1716. xAxis: {
  1717. disableGrid:true,
  1718. type: 'grid',
  1719. gridColor: 'silver',
  1720. fontColor: 'silver',
  1721. gridType: 'solid',
  1722. gridColor: '#2E2E2E',
  1723. axisLineColor: '#2E2E2E',
  1724. labelCount: '3'
  1725. // itemCount:"3"
  1726. },
  1727. yAxis: {
  1728. data: [{
  1729. type: 'value',
  1730. fontColor: 'silver',
  1731. disabled: false, //y轴轴线
  1732. min: 0,
  1733. max: 40,
  1734. position: 'left',
  1735. axisLineColor: '#2E2E2E',
  1736. title: ' 风速:(km/h)',
  1737. titleFontColor: 'silver'
  1738. },
  1739. {
  1740. fontColor: 'silver',
  1741. disabled: false, //y轴轴线
  1742. min: 0,
  1743. max: 40,
  1744. position: 'right',
  1745. axisLineColor: '#2E2E2E',
  1746. title: '功率:(kwh)',
  1747. titleFontColor: 'silver'
  1748. }
  1749. ],
  1750. disabled:true,
  1751. gridColor: '#2E2E2E',
  1752. splitNumber: 4,
  1753. gridType: 'solid',
  1754. dashLength: 8,
  1755. showTitle: 'true',
  1756. format: val => {
  1757. return val.toFixed(0) + '元';
  1758. }
  1759. },
  1760. width: _self.windStationCardCWidth * _self.windStationCardPixelRatio,
  1761. height: _self.windStationCardCHeight * _self.windStationCardPixelRatio,
  1762. padding:[10,0,0,0],//画布填充边距,顺序为上右下左,同css,但必须4位
  1763. extra: {
  1764. line: {
  1765. type: 'line',
  1766. width: '1'
  1767. }
  1768. }
  1769. });
  1770. },
  1771. showWindStationCardLineA2(canvasId, chartData) {
  1772. var _self = this;
  1773. canvaLineB2 = new uCharts({
  1774. $this: _self,
  1775. canvasId: canvasId,
  1776. type: 'line',
  1777. fontSize: 11,
  1778. legend: {
  1779. show: true,
  1780. position: 'top',
  1781. float: 'right',
  1782. fontColor: 'silver',
  1783. itemGap: '9',
  1784. itemWidth: '3'
  1785. },
  1786. dataLabel: false,
  1787. dataPointShape: false,
  1788. background: '#FFFFFF',
  1789. pixelRatio: _self.windStationCardPixelRatio,
  1790. categories: chartData.categories,
  1791. series: chartData.series,
  1792. animation: true,
  1793. xAxis: {
  1794. disableGrid:true,
  1795. type: 'grid',
  1796. gridColor: 'silver',
  1797. fontColor: 'silver',
  1798. gridType: 'solid',
  1799. gridColor: '#2E2E2E',
  1800. axisLineColor: '#2E2E2E',
  1801. labelCount: '3'
  1802. // itemCount:"3"
  1803. },
  1804. yAxis: {
  1805. data: [{
  1806. type: 'value',
  1807. fontColor: 'silver',
  1808. disabled: false, //y轴轴线
  1809. min: 0,
  1810. max: 40,
  1811. position: 'left',
  1812. axisLineColor: '#2E2E2E',
  1813. title: ' 风速:(km/h)',
  1814. titleFontColor: 'silver'
  1815. },
  1816. {
  1817. fontColor: 'silver',
  1818. disabled: false, //y轴轴线
  1819. min: 0,
  1820. max: 40,
  1821. position: 'right',
  1822. axisLineColor: '#2E2E2E',
  1823. title: '功率:(kwh)',
  1824. titleFontColor: 'silver'
  1825. }
  1826. ],
  1827. disabled:true,
  1828. gridColor: '#2E2E2E',
  1829. splitNumber: 4,
  1830. gridType: 'solid',
  1831. dashLength: 8,
  1832. showTitle: 'true',
  1833. format: val => {
  1834. return val.toFixed(0) + '元';
  1835. }
  1836. },
  1837. width: _self.windStationCardCWidth * _self.windStationCardPixelRatio,
  1838. height: _self.windStationCardCHeight * _self.windStationCardPixelRatio,
  1839. padding:[10,0,0,0],//画布填充边距,顺序为上右下左,同css,但必须4位
  1840. extra: {
  1841. line: {
  1842. type: 'line',
  1843. width: '1'
  1844. }
  1845. }
  1846. });
  1847. },
  1848. showWindStationCardLineA3(canvasId, chartData) {
  1849. var _self = this;
  1850. canvaLineB3 = new uCharts({
  1851. $this: _self,
  1852. canvasId: canvasId,
  1853. type: 'line',
  1854. fontSize: 11,
  1855. legend: {
  1856. show: true,
  1857. position: 'top',
  1858. float: 'right',
  1859. fontColor: 'silver',
  1860. itemGap: '9',
  1861. itemWidth: '3'
  1862. },
  1863. dataLabel: false,
  1864. dataPointShape: false,
  1865. background: '#FFFFFF',
  1866. pixelRatio: _self.windStationCardPixelRatio,
  1867. categories: chartData.categories,
  1868. series: chartData.series,
  1869. animation: true,
  1870. xAxis: {
  1871. disableGrid:true,
  1872. type: 'grid',
  1873. gridColor: 'silver',
  1874. fontColor: 'silver',
  1875. gridType: 'solid',
  1876. gridColor: '#2E2E2E',
  1877. axisLineColor: '#2E2E2E',
  1878. labelCount: '3'
  1879. // itemCount:"3"
  1880. },
  1881. yAxis: {
  1882. data: [{
  1883. type: 'value',
  1884. fontColor: 'silver',
  1885. disabled: false, //y轴轴线
  1886. min: 0,
  1887. max: 40,
  1888. position: 'left',
  1889. axisLineColor: '#2E2E2E',
  1890. title: ' 风速:(km/h)',
  1891. titleFontColor: 'silver'
  1892. },
  1893. {
  1894. fontColor: 'silver',
  1895. disabled: false, //y轴轴线
  1896. min: 0,
  1897. max: 40,
  1898. position: 'right',
  1899. axisLineColor: '#2E2E2E',
  1900. title: '功率:(kwh)',
  1901. titleFontColor: 'silver'
  1902. }
  1903. ],
  1904. disabled:true,
  1905. gridColor: '#2E2E2E',
  1906. splitNumber: 4,
  1907. gridType: 'solid',
  1908. dashLength: 8,
  1909. showTitle: 'true',
  1910. format: val => {
  1911. return val.toFixed(0) + '元';
  1912. }
  1913. },
  1914. width: _self.windStationCardCWidth * _self.windStationCardPixelRatio,
  1915. height: _self.windStationCardCHeight * _self.windStationCardPixelRatio,
  1916. padding:[10,0,0,0],//画布填充边距,顺序为上右下左,同css,但必须4位
  1917. extra: {
  1918. line: {
  1919. type: 'line',
  1920. width: '1'
  1921. }
  1922. }
  1923. });
  1924. },
  1925. showWindStationCardLineA4(canvasId, chartData) {
  1926. var _self = this;
  1927. canvaLineB4 = new uCharts({
  1928. $this: _self,
  1929. canvasId: canvasId,
  1930. type: 'line',
  1931. fontSize: 11,
  1932. legend: {
  1933. show: true,
  1934. position: 'top',
  1935. float: 'right',
  1936. fontColor: 'silver',
  1937. itemGap: '9',
  1938. itemWidth: '3'
  1939. },
  1940. dataLabel: false,
  1941. dataPointShape: false,
  1942. background: '#FFFFFF',
  1943. pixelRatio: _self.windStationCardPixelRatio,
  1944. categories: chartData.categories,
  1945. series: chartData.series,
  1946. animation: true,
  1947. xAxis: {
  1948. disableGrid:true,
  1949. type: 'grid',
  1950. gridColor: 'silver',
  1951. fontColor: 'silver',
  1952. gridType: 'solid',
  1953. gridColor: '#2E2E2E',
  1954. axisLineColor: '#2E2E2E',
  1955. labelCount: '3'
  1956. // itemCount:"3"
  1957. },
  1958. yAxis: {
  1959. data: [{
  1960. type: 'value',
  1961. fontColor: 'silver',
  1962. disabled: false, //y轴轴线
  1963. min: 0,
  1964. max: 40,
  1965. position: 'left',
  1966. axisLineColor: '#2E2E2E',
  1967. title: ' 风速:(km/h)',
  1968. titleFontColor: 'silver'
  1969. },
  1970. {
  1971. fontColor: 'silver',
  1972. disabled: false, //y轴轴线
  1973. min: 0,
  1974. max: 40,
  1975. position: 'right',
  1976. axisLineColor: '#2E2E2E',
  1977. title: '功率:(kwh)',
  1978. titleFontColor: 'silver'
  1979. }
  1980. ],
  1981. disabled:true,
  1982. gridColor: '#2E2E2E',
  1983. splitNumber: 4,
  1984. gridType: 'solid',
  1985. dashLength: 8,
  1986. showTitle: 'true',
  1987. format: val => {
  1988. return val.toFixed(0) + '元';
  1989. }
  1990. },
  1991. width: _self.windStationCardCWidth * _self.windStationCardPixelRatio,
  1992. height: _self.windStationCardCHeight * _self.windStationCardPixelRatio,
  1993. padding:[10,0,0,0],//画布填充边距,顺序为上右下左,同css,但必须4位
  1994. extra: {
  1995. line: {
  1996. type: 'line',
  1997. width: '1'
  1998. }
  1999. }
  2000. });
  2001. },
  2002. showWindStationCardLineA5(canvasId, chartData) {
  2003. var _self = this;
  2004. canvaLineB5 = new uCharts({
  2005. $this: _self,
  2006. canvasId: canvasId,
  2007. type: 'line',
  2008. fontSize: 11,
  2009. legend: {
  2010. show: true,
  2011. position: 'top',
  2012. float: 'right',
  2013. fontColor: 'silver',
  2014. itemGap: '9',
  2015. itemWidth: '3'
  2016. },
  2017. dataLabel: false,
  2018. dataPointShape: false,
  2019. background: '#FFFFFF',
  2020. pixelRatio: _self.windStationCardPixelRatio,
  2021. categories: chartData.categories,
  2022. series: chartData.series,
  2023. animation: true,
  2024. xAxis: {
  2025. disableGrid:true,
  2026. type: 'grid',
  2027. gridColor: 'silver',
  2028. fontColor: 'silver',
  2029. gridType: 'solid',
  2030. gridColor: '#2E2E2E',
  2031. axisLineColor: '#2E2E2E',
  2032. labelCount: '3'
  2033. // itemCount:"3"
  2034. },
  2035. yAxis: {
  2036. data: [{
  2037. type: 'value',
  2038. fontColor: 'silver',
  2039. disabled: false, //y轴轴线
  2040. min: 0,
  2041. max: 40,
  2042. position: 'left',
  2043. axisLineColor: '#2E2E2E',
  2044. title: ' 风速:(km/h)',
  2045. titleFontColor: 'silver'
  2046. },
  2047. {
  2048. fontColor: 'silver',
  2049. disabled: false, //y轴轴线
  2050. min: 0,
  2051. max: 40,
  2052. position: 'right',
  2053. axisLineColor: '#2E2E2E',
  2054. title: '功率:(kwh)',
  2055. titleFontColor: 'silver'
  2056. }
  2057. ],
  2058. disabled:true,
  2059. gridColor: '#2E2E2E',
  2060. splitNumber: 4,
  2061. gridType: 'solid',
  2062. dashLength: 8,
  2063. showTitle: 'true',
  2064. format: val => {
  2065. return val.toFixed(0) + '元';
  2066. }
  2067. },
  2068. width: _self.windStationCardCWidth * _self.windStationCardPixelRatio,
  2069. height: _self.windStationCardCHeight * _self.windStationCardPixelRatio,
  2070. padding:[10,0,0,0],//画布填充边距,顺序为上右下左,同css,但必须4位
  2071. extra: {
  2072. line: {
  2073. type: 'line',
  2074. width: '1'
  2075. }
  2076. }
  2077. });
  2078. },
  2079. }
  2080. };
  2081. </script>
  2082. <style>
  2083. .speedPowerDiagram {
  2084. width: 100px;
  2085. height: 30px;
  2086. user-select: text;
  2087. -webkit-user-select: text;
  2088. -moz-user-select: text;
  2089. -ms-user-select: text;
  2090. color: silver;
  2091. float: left;
  2092. margin-top: 18px;
  2093. margin-left: 9px;
  2094. font-size: 11px;
  2095. }
  2096. .monthlyUtilizationHours {
  2097. width: 160px;
  2098. height: 30px;
  2099. margin-top: 20px;
  2100. /* background-color: #161616; */
  2101. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(193, 94, 21, 0.2) 100%);
  2102. color: silver;
  2103. margin-left: 9px;
  2104. text-align: center;
  2105. padding-top: 7px;
  2106. font-size: 12px;
  2107. }
  2108. .yearlyUtilizationHours {
  2109. width: 160px;
  2110. height: 30px;
  2111. margin-top: 10px;
  2112. /* background-color: #161616; */
  2113. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(193, 94, 21, 0.2) 100%);
  2114. color: silver;
  2115. margin-left: 9px;
  2116. text-align: center;
  2117. padding-top: 7px;
  2118. font-size: 12px;
  2119. }
  2120. .comprehensiveServicePowerConsumptionRate {
  2121. width: 160px;
  2122. height: 30px;
  2123. /* margin-top: 10px; */
  2124. /* background-color: #161616; */
  2125. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(193, 94, 21, 0.2) 100%);
  2126. color: silver;
  2127. margin-left: 200px;
  2128. margin-top: -70px;
  2129. text-align: center;
  2130. padding-top: 7px;
  2131. font-size: 12px;
  2132. float: left;
  2133. }
  2134. .equipmentAvailability {
  2135. width: 160px;
  2136. height: 30px;
  2137. /* margin-top: 10px; */
  2138. /* background-color: #161616; */
  2139. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(193, 94, 21, 0.2) 100%);
  2140. color: silver;
  2141. margin-left: 200px;
  2142. margin-top: -30px;
  2143. text-align: center;
  2144. padding-top: 7px;
  2145. font-size: 12px;
  2146. float: left;
  2147. }
  2148. .sulfurDioxideEmissionReduction {
  2149. width: 160px;
  2150. height: 30px;
  2151. /* margin-top: 10px; */
  2152. /* background-color: #161616; */
  2153. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(193, 94, 21, 0.2) 100%);
  2154. color: silver;
  2155. margin-left: 380px;
  2156. margin-top: -70px;
  2157. text-align: center;
  2158. padding-top: 7px;
  2159. font-size: 12px;
  2160. float: left;
  2161. }
  2162. .carbonDioxideReduction {
  2163. width: 160px;
  2164. height: 30px;
  2165. /* margin-top: 10px; */
  2166. /* background-color: #161616; */
  2167. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(193, 94, 21, 0.2) 100%);
  2168. color: silver;
  2169. margin-left: 380px;
  2170. margin-top: -30px;
  2171. text-align: center;
  2172. padding-top: 7px;
  2173. font-size: 12px;
  2174. float: left;
  2175. }
  2176. .waterSaving {
  2177. width: 160px;
  2178. height: 30px;
  2179. /* margin-top: 10px; */
  2180. /* background-color: #161616; */
  2181. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(193, 94, 21, 0.2) 100%);
  2182. color: silver;
  2183. margin-left: 560px;
  2184. margin-top: -70px;
  2185. text-align: center;
  2186. padding-top: 7px;
  2187. font-size: 12px;
  2188. float: left;
  2189. }
  2190. .saveStandardCoal {
  2191. width: 160px;
  2192. height: 30px;
  2193. /* margin-top: 10px; */
  2194. /* background-color: #161616; */
  2195. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(193, 94, 21, 0.2) 100%);
  2196. color: silver;
  2197. margin-left: 560px;
  2198. margin-top: -30px;
  2199. text-align: center;
  2200. padding-top: 7px;
  2201. font-size: 12px;
  2202. float: left;
  2203. }
  2204. .mttr {
  2205. width: 160px;
  2206. height: 30px;
  2207. /* margin-top: 10px; */
  2208. /* background-color: #161616; */
  2209. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(193, 94, 21, 0.2) 100%);
  2210. color: silver;
  2211. margin-left: 740px;
  2212. margin-top: -70px;
  2213. text-align: center;
  2214. padding-top: 7px;
  2215. font-size: 12px;
  2216. float: left;
  2217. }
  2218. .mtbf {
  2219. width: 160px;
  2220. height: 30px;
  2221. /* margin-top: 10px; */
  2222. /* background-color: #161616; */
  2223. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(193, 94, 21, 0.2) 100%);
  2224. color: silver;
  2225. margin-left: 740px;
  2226. margin-top: -30px;
  2227. text-align: center;
  2228. padding-top: 7px;
  2229. font-size: 12px;
  2230. float: left;
  2231. }
  2232. .horizontalSlider {
  2233. white-space: nowrap;
  2234. width: 100%;
  2235. height: 100px;
  2236. background-color: #242424;
  2237. clear: both;
  2238. /* margin-top: 540px; */
  2239. }
  2240. .slide {
  2241. width: 920px;
  2242. height: 100px;
  2243. background-color: #242424;
  2244. }
  2245. .qiun-charts {
  2246. width: 750upx;
  2247. height: 400upx;
  2248. }
  2249. .charts {
  2250. width: 750upx;
  2251. height: 400upx;
  2252. }
  2253. .uchartTitle {
  2254. position: absolute;
  2255. left: 9px;
  2256. top: 605px;
  2257. user-select: text;
  2258. -webkit-user-select: text;
  2259. -moz-user-select: text;
  2260. -ms-user-select: text;
  2261. color: silver;
  2262. font-size: 12px;
  2263. }
  2264. .Histogram {
  2265. width: 100%;
  2266. height: 300px;
  2267. background-color: #242424;
  2268. margin-top: 10px;
  2269. float: left;
  2270. }
  2271. .HistogramTitle{
  2272. width: calc(100% - 9px);
  2273. height: 30px;
  2274. line-height: 30px;
  2275. font-size: 11px;
  2276. color: silver;
  2277. margin-left: 9px;
  2278. }
  2279. .lineChart {
  2280. width: 100%;
  2281. height: 225px;
  2282. background-color: #242424;
  2283. margin-top: 10px;
  2284. float: left;
  2285. }
  2286. body {
  2287. font-family:'方正兰亭细黑_GBK';
  2288. font-size: 20px;
  2289. color: silver;
  2290. background: #000;
  2291. }
  2292. @font-face {
  2293. font-family:'方正兰亭细黑_GBK';
  2294. src: url(../../static/方正兰亭细黑_GBK.TTF);
  2295. }
  2296. page {
  2297. background-color: #1f1f1f;
  2298. font-family:'方正兰亭细黑_GBK';
  2299. overflow-x: hidden;
  2300. }
  2301. .top {
  2302. width: 100%;
  2303. height: 130upx;
  2304. padding-top: 5upx;
  2305. background-color: #1f1f1f;
  2306. position: fixed;
  2307. top: 0px;
  2308. left: 0px;
  2309. z-index: 100;
  2310. }
  2311. .threeLine {
  2312. width: 50px;
  2313. height: 45px;
  2314. float: left;
  2315. }
  2316. .text {
  2317. width: calc(100% - 100px);
  2318. height: 45px;
  2319. float: left;
  2320. user-select: text;
  2321. -webkit-user-select: text;
  2322. -moz-user-select: text;
  2323. -ms-user-select: text;
  2324. color: silver;
  2325. line-height: 45px;
  2326. margin-top: 11px;
  2327. font-size: 18px;
  2328. }
  2329. .notice {
  2330. width: 50px;
  2331. height: 45px;
  2332. float: left;
  2333. }
  2334. .plus {
  2335. width: 30px;
  2336. height: 45px;
  2337. float: right;
  2338. color: white;
  2339. font-size: 35px;
  2340. line-height: 45px;
  2341. text-align: right;
  2342. margin-top: 11px;
  2343. margin-right: 2.5%;
  2344. }
  2345. .textWindpowerstation{
  2346. width: 180px;
  2347. height: 45px;
  2348. float: left;
  2349. text-align: center;
  2350. margin-left: 18px;
  2351. }
  2352. .time {
  2353. clear: both;
  2354. background-color: #242424;
  2355. margin-top: 80px;
  2356. width: 100%;
  2357. height: 30px;
  2358. /* float: left; */
  2359. }
  2360. .timeimageshizhong {
  2361. width: 30px;
  2362. height: 20px;
  2363. margin-top: 5px;
  2364. float: left;
  2365. }
  2366. .timeText {
  2367. width: 62%;
  2368. height: 30px;
  2369. float: left;
  2370. line-height: 30px;
  2371. font-size: 15px;
  2372. margin-left: 15px;
  2373. user-select: text;
  2374. -webkit-user-select: text;
  2375. -moz-user-select: text;
  2376. -ms-user-select: text;
  2377. color: silver;
  2378. }
  2379. .timeIcon {
  2380. width: 25px;
  2381. height: 30px;
  2382. float: right;
  2383. margin-right: 2.5%;
  2384. /* margin-left: 5px; */
  2385. }
  2386. .timeIconImage {
  2387. width: 100%;
  2388. height: 25px;
  2389. margin-top: 1px;
  2390. }
  2391. .timeIconText {
  2392. width: 100%;
  2393. height: 25px;
  2394. text-align: center;
  2395. font-size: 12px;
  2396. }
  2397. .cardinstallgreenSecurity {
  2398. margin-left: 9px;
  2399. margin-top: 9px;
  2400. margin-bottom: 9px;
  2401. width: 30%;
  2402. height: 78px;
  2403. background: -webkit-linear-gradient(top, rgba(133, 145, 132, 0.1) 0%, rgba(66, 130, 61, 0.2) 100%);
  2404. border-radius: 5px;
  2405. float: left;
  2406. /* font-family: "STKaiti"; */
  2407. }
  2408. .cardinstalltitle {
  2409. width: 100%;
  2410. height: 40px;
  2411. text-align: center;
  2412. user-select: text;
  2413. -webkit-user-select: text;
  2414. -moz-user-select: text;
  2415. -ms-user-select: text;
  2416. font-size: 14px;
  2417. color: silver;
  2418. line-height: 40px;
  2419. float: left;
  2420. }
  2421. .cardinstallnumber {
  2422. /* font-weight: bold; */
  2423. width: 100%;
  2424. height: 40px;
  2425. text-align: center;
  2426. user-select: text;
  2427. -webkit-user-select: text;
  2428. -moz-user-select: text;
  2429. -ms-user-select: text;
  2430. color: silver;
  2431. font-size: 16px;
  2432. /* color: #449618; */
  2433. line-height: 40px;
  2434. }
  2435. .cardinstallgreenEquipment {
  2436. margin-right: 11px;
  2437. margin-top: 10px;
  2438. width: 30%;
  2439. height: 78px;
  2440. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(193, 94, 21, 0.2) 100%);
  2441. border-radius: 5px;
  2442. float: right;
  2443. /* font-family: "STKaiti"; */
  2444. }
  2445. .cardinstallgreen {
  2446. margin-left: 9px;
  2447. width: 30%;
  2448. height: 78px;
  2449. background: -webkit-linear-gradient(top, rgba(133, 145, 132, 0.1) 0%, rgba(66, 130, 61, 0.2) 100%);
  2450. border-radius: 5px;
  2451. float: left;
  2452. }
  2453. .cardinstallblue {
  2454. margin-top: 9px;
  2455. margin-left: 9px;
  2456. width: 30%;
  2457. height: 78px;
  2458. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(10, 82, 156, 0.2) 100%);
  2459. border-radius: 5px;
  2460. float: left;
  2461. }
  2462. .cardinstallblueright {
  2463. margin-right: 11px;
  2464. margin-top: 10px;
  2465. width: 30%;
  2466. height: 78px;
  2467. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(10, 82, 156, 0.2) 100%);
  2468. border-radius: 5px;
  2469. float: right;
  2470. }
  2471. .cardinstalltitlegreen {
  2472. width: 100%;
  2473. height: 25px;
  2474. text-align: center;
  2475. /* margin-left: 37px; */
  2476. user-select: text;
  2477. -webkit-user-select: text;
  2478. -moz-user-select: text;
  2479. -ms-user-select: text;
  2480. font-size: 14px;
  2481. color: silver;
  2482. line-height: 25px;
  2483. /* float: left; */
  2484. }
  2485. .cardinstallnumbergreen {
  2486. width: 100%;
  2487. height: 25px;
  2488. text-align: center;
  2489. user-select: text;
  2490. -webkit-user-select: text;
  2491. -moz-user-select: text;
  2492. -ms-user-select: text;
  2493. font-size: 20px;
  2494. color: white;
  2495. /* color: #449618; */
  2496. line-height: 25px;
  2497. float: left;
  2498. }
  2499. .cardinstallnumbergreenmin {
  2500. margin-left: 2px;
  2501. width: 45%;
  2502. height: 20px;
  2503. user-select: text;
  2504. -webkit-user-select: text;
  2505. -moz-user-select: text;
  2506. -ms-user-select: text;
  2507. font-size: 12px;
  2508. color: silver;
  2509. /* color: #449618; */
  2510. float: left;
  2511. }
  2512. .cardinstallnumbergreenmax {
  2513. /* font-weight: bold; */
  2514. margin-right: 2px;
  2515. width: 45%;
  2516. height: 20px;
  2517. user-select: text;
  2518. -webkit-user-select: text;
  2519. -moz-user-select: text;
  2520. -ms-user-select: text;
  2521. font-size: 12px;
  2522. color: silver;
  2523. /* color: #449618; */
  2524. float: right;
  2525. }
  2526. .greenMinText {
  2527. line-height: 20px;
  2528. float: left;
  2529. margin-left: 40px;
  2530. }
  2531. .greenMaxText {
  2532. line-height: 20px;
  2533. float: left;
  2534. }
  2535. .cardinstallnumberred {
  2536. width: 100%;
  2537. height: 25px;
  2538. text-align: center;
  2539. user-select: text;
  2540. -webkit-user-select: text;
  2541. -moz-user-select: text;
  2542. -ms-user-select: text;
  2543. font-size: 20px;
  2544. color: white;
  2545. /* color: #E93131; */
  2546. line-height: 25px;
  2547. float: left;
  2548. }
  2549. .cardinstallnumberredmin {
  2550. margin-left: 2px;
  2551. width: 45%;
  2552. height: 20px;
  2553. user-select: text;
  2554. -webkit-user-select: text;
  2555. -moz-user-select: text;
  2556. -ms-user-select: text;
  2557. font-size: 12px;
  2558. color: silver;
  2559. /* color: #E93131; */
  2560. float: left;
  2561. }
  2562. .cardinstallnumberredmax {
  2563. margin-right: 2px;
  2564. width: 45%;
  2565. height: 20px;
  2566. user-select: text;
  2567. -webkit-user-select: text;
  2568. -moz-user-select: text;
  2569. -ms-user-select: text;
  2570. font-size: 12px;
  2571. color: silver;
  2572. /* color: #E93131; */
  2573. float: right;
  2574. }
  2575. .redMinText {
  2576. line-height: 20px;
  2577. float: right;
  2578. }
  2579. .redMaxText {
  2580. line-height: 20px;
  2581. float: left;
  2582. }
  2583. .electricityCard {
  2584. width: 100%;
  2585. height: 100px;
  2586. background-color: #242424;
  2587. /* height: 185px; */
  2588. float: left;
  2589. margin-top: 20rpx;
  2590. }
  2591. .speedPower {
  2592. width: 100%;
  2593. height: 180px;
  2594. background-color: #242424;
  2595. float: left;
  2596. margin-top: 20rpx;
  2597. }
  2598. .cardinstallgreenSpeed {
  2599. margin-top: 9px;
  2600. margin-left: 9px;
  2601. width: 46%;
  2602. height: 78px;
  2603. background: -webkit-linear-gradient(top, rgba(133, 145, 132, 0.1) 0%, rgba(66, 130, 61, 0.2) 100%);
  2604. border-radius: 5px;
  2605. float: left;
  2606. }
  2607. .cardinstallredSpeed {
  2608. margin-top: 8px;
  2609. margin-left: 2.5%;
  2610. width: 46%;
  2611. height: 78px;
  2612. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(193, 94, 21, 0.2) 100%);
  2613. border-radius: 5px;
  2614. float: left;
  2615. }
  2616. .cardinstalltitleRed {
  2617. width: 100%;
  2618. height: 25px;
  2619. text-align: center;
  2620. /* margin-left: 45px; */
  2621. user-select: text;
  2622. -webkit-user-select: text;
  2623. -moz-user-select: text;
  2624. -ms-user-select: text;
  2625. font-size: 14px;
  2626. color: silver;
  2627. line-height: 25px;
  2628. /* float: left; */
  2629. }
  2630. .textWhitekuangSpeed {
  2631. color: silver;
  2632. float: right ;
  2633. margin-right: 70px;
  2634. }
  2635. .textWhitekuang {
  2636. color: silver;
  2637. float: right;
  2638. margin-right: 85px;
  2639. }
  2640. .textWhite {
  2641. color: white;
  2642. float: right;
  2643. width: 24px;
  2644. text-align: right;
  2645. }
  2646. .textWhite2 {
  2647. color: white;
  2648. float: left;
  2649. text-align: right;
  2650. }
  2651. .textSilver {
  2652. user-select: text;
  2653. -webkit-user-select: text;
  2654. -moz-user-select: text;
  2655. -ms-user-select: text;
  2656. color: silver;
  2657. float: left;
  2658. }
  2659. .InformationCard {
  2660. margin-top: 10px;
  2661. width: 100%;
  2662. height: 70px;
  2663. background-color: #242424;
  2664. float: left;
  2665. }
  2666. .informationCardAll {
  2667. width: 95%;
  2668. margin-left: 2.5%;
  2669. margin-top: 10px;
  2670. height: 60px;
  2671. float: left;
  2672. }
  2673. .informationCardTextOne {
  2674. width: 100%;
  2675. height: 35px;
  2676. float: left;
  2677. margin-top: -10px;
  2678. }
  2679. .informationCardTextNo1{
  2680. /* margin-left: 2%; */
  2681. width: 115px;
  2682. height: 35px;
  2683. font-size: 13px;
  2684. line-height: 35px;
  2685. float: left;
  2686. }
  2687. .informationCardText {
  2688. /* margin-left: 2%; */
  2689. width: 115px;
  2690. height: 35px;
  2691. line-height: 35px;
  2692. user-select: text;
  2693. -webkit-user-select: text;
  2694. -moz-user-select: text;
  2695. -ms-user-select: text;
  2696. color: silver;
  2697. font-size: 13px;
  2698. float: left;
  2699. }
  2700. .informationCardTextzj {
  2701. /* margin-left: 43%; */
  2702. width: 115px;
  2703. height: 35px;
  2704. line-height: 35px;
  2705. user-select: text;
  2706. -webkit-user-select: text;
  2707. -moz-user-select: text;
  2708. -ms-user-select: text;
  2709. color: silver;
  2710. font-size: 13px;
  2711. float: right;
  2712. /* margin-right: 1%; */
  2713. }
  2714. .informationCardTextTwo {
  2715. width: 100%;
  2716. height: 35px;
  2717. float: left;
  2718. user-select: text;
  2719. -webkit-user-select: text;
  2720. -moz-user-select: text;
  2721. -ms-user-select: text;
  2722. color: silver;
  2723. }
  2724. .informationCardText2 {
  2725. /* margin-left: 6%; */
  2726. margin-left: calc(50% - 175px);
  2727. width: 115px;
  2728. height: 35px;
  2729. font-size: 13px;
  2730. line-height: 35px;
  2731. float: left;
  2732. }
  2733. .informationCardText3 {
  2734. /* margin-left: 6%; */
  2735. margin-left: calc(50% - 175px);
  2736. width: 120px;
  2737. height: 35px;
  2738. font-size: 13px;
  2739. line-height: 35px;
  2740. float: left;
  2741. }
  2742. .AccessCardNumber {
  2743. width: 30%;
  2744. height: 35px;
  2745. float: left;
  2746. line-height: 35px;
  2747. text-align: center;
  2748. font-size: 12px;
  2749. user-select: text;
  2750. -webkit-user-select: text;
  2751. -moz-user-select: text;
  2752. -ms-user-select: text;
  2753. color: silver;
  2754. }
  2755. .AccessCardText {
  2756. width: 30%;
  2757. height: 35px;
  2758. float: left;
  2759. line-height: 35px;
  2760. text-align: center;
  2761. font-size: 12px;
  2762. user-select: text;
  2763. -webkit-user-select: text;
  2764. -moz-user-select: text;
  2765. -ms-user-select: text;
  2766. color: silver;
  2767. }
  2768. .AccessCardimage {
  2769. margin-left: 5px;
  2770. width: 30%;
  2771. height: 35px;
  2772. float: left;
  2773. }
  2774. .interfaceCard {
  2775. margin-top: 10px;
  2776. width: 100%;
  2777. height: 85px;
  2778. background-color: #242424;
  2779. float: left;
  2780. }
  2781. .interfaceCardSmallTop {
  2782. margin-top: 5px;
  2783. width: 100%;
  2784. height: 35px;
  2785. float: left;
  2786. }
  2787. .interfaceCardSmall {
  2788. margin-left: 8px;
  2789. width: 30%;
  2790. height: 35px;
  2791. float: left;
  2792. }
  2793. .progressBarLeftText {
  2794. user-select: text;
  2795. -webkit-user-select: text;
  2796. -moz-user-select: text;
  2797. -ms-user-select: text;
  2798. color: silver;
  2799. font-size: 12px;
  2800. float: left;
  2801. margin-left: 5px;
  2802. }
  2803. .progressBarRightText {
  2804. user-select: text;
  2805. -webkit-user-select: text;
  2806. -moz-user-select: text;
  2807. -ms-user-select: text;
  2808. color: silver;
  2809. font-size: 12px;
  2810. float: right;
  2811. margin-right: 5px;
  2812. }
  2813. .progressBar {
  2814. margin-top: 10px;
  2815. width: 100%;
  2816. height: 115px;
  2817. background-color: #242424;
  2818. float: left;
  2819. }
  2820. .progressBarAll {
  2821. margin-left: 9px;
  2822. width: calc(100% - 5%);
  2823. height: 60px;
  2824. float: left;
  2825. }
  2826. .progressBarText {
  2827. text-align: center;
  2828. width: 50%;
  2829. height: 30px;
  2830. line-height: 30px;
  2831. user-select: text;
  2832. -webkit-user-select: text;
  2833. -moz-user-select: text;
  2834. -ms-user-select: text;
  2835. color: silver;
  2836. font-size: 12px;
  2837. float: left;
  2838. }
  2839. .progressBarOne {
  2840. width: 100%;
  2841. height: 30px;
  2842. float: left;
  2843. }
  2844. .progressBarLeft {
  2845. width: 25%;
  2846. height: 30px;
  2847. line-height: 30px;
  2848. user-select: text;
  2849. -webkit-user-select: text;
  2850. -moz-user-select: text;
  2851. -ms-user-select: text;
  2852. color: silver;
  2853. font-size: 12px;
  2854. float: left;
  2855. }
  2856. .progressBarRight {
  2857. width: 25%;
  2858. height: 30px;
  2859. user-select: text;
  2860. -webkit-user-select: text;
  2861. -moz-user-select: text;
  2862. -ms-user-select: text;
  2863. color: silver;
  2864. font-size: 12px;
  2865. line-height: 30px;
  2866. float: right;
  2867. }
  2868. /* 风电场卡片css */
  2869. .windStation {
  2870. clear: both;
  2871. width: calc(100% - 18px);
  2872. margin-left: 9px;
  2873. height: 320px;
  2874. color: silver;
  2875. margin-bottom: 120px;
  2876. /* background-color: #242424; */
  2877. }
  2878. .scrollWindStationCard {
  2879. white-space: nowrap;
  2880. }
  2881. .windStationCardContainer {
  2882. width: 1295px;
  2883. height: 350px;
  2884. margin-top: 10%;
  2885. }
  2886. .windStationCard {
  2887. width: 250px;
  2888. height: 100%;
  2889. margin-right: 9px;
  2890. float: left;
  2891. background-color: #242424;
  2892. }
  2893. .windStationTitle {
  2894. width: 90%;
  2895. height: 30px;
  2896. line-height: 30px;
  2897. font-size: 12px;
  2898. margin-left: 5px;
  2899. }
  2900. .powerAndSpeedContainer {
  2901. width: 100%;
  2902. height: 90px;
  2903. }
  2904. .powerAndSpeedRed {
  2905. margin-top: 8px;
  2906. margin-left: 2%;
  2907. margin-right: 2%;
  2908. width: 46%;
  2909. height: 37px;
  2910. line-height: 37px;
  2911. text-align: center;
  2912. font-size: 12px;
  2913. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(193, 94, 21, 0.2) 100%);
  2914. border-radius: 5px;
  2915. float: left;
  2916. }
  2917. .powerAndSpeedRed span {
  2918. color: white;
  2919. }
  2920. .HQChart {
  2921. width: 100%;
  2922. height: 100px;
  2923. margin-top: 8px;
  2924. }
  2925. .UChartContainer {
  2926. width: 250px;
  2927. height: 150px;
  2928. margin-top: 8px;
  2929. }
  2930. .windStationUChart {
  2931. width: 250px;
  2932. height: 150px;
  2933. position: absolute;
  2934. }
  2935. .windStationQiun-charts {
  2936. width: 250px;
  2937. height: 150px;
  2938. background-color: #242424;
  2939. }
  2940. .windStationCharts {
  2941. width: 250px;
  2942. height: 150px;
  2943. background-color: #242424;
  2944. }
  2945. .UChartTitle {
  2946. position: relative;
  2947. top: -2px;
  2948. left: 2px;
  2949. font-size: 12px;
  2950. width: 100px;
  2951. }
  2952. .xTime {
  2953. position: relative;
  2954. top: 90px;
  2955. left: 222px;
  2956. font-size: 8px;
  2957. width: 30px;
  2958. }
  2959. .fanStatusContainer {
  2960. width: 100%;
  2961. height: 70px;
  2962. }
  2963. .fanStatus {
  2964. width: 32%;
  2965. height: 30px;
  2966. margin-top: 5px;
  2967. margin-right: 0.5%;
  2968. margin-left: 0.5%;
  2969. float: left;
  2970. }
  2971. .statusIcon {
  2972. width: 22px;
  2973. height: 30px;
  2974. margin-left: 3px;
  2975. float: left;
  2976. }
  2977. .fanStatus {
  2978. height: 30px;
  2979. line-height: 30px;
  2980. font-size: 12px;
  2981. }
  2982. .AffectedPowerText{
  2983. width: 55px;
  2984. height: 25px;
  2985. float: left;
  2986. margin-left: 2px;
  2987. line-height: 25px;
  2988. }
  2989. .AffectedPower{
  2990. margin-left: 11px;
  2991. width: 20%;
  2992. height: 25px;
  2993. float: left;
  2994. }
  2995. .performancePowerText{
  2996. width: 55px;
  2997. height: 25px;
  2998. float: left;
  2999. margin-left: 2px;
  3000. line-height: 25px;
  3001. }
  3002. .performancePower{
  3003. margin-left: 11px;
  3004. width: 20%;
  3005. height: 25px;
  3006. float: left;
  3007. }
  3008. .limitedPowerText{
  3009. width: 55px;
  3010. height: 25px;
  3011. float: left;
  3012. margin-left: 2px;
  3013. line-height: 25px;
  3014. }
  3015. .limitedPower{
  3016. margin-left: 9px;
  3017. width: 20%;
  3018. height: 25px;
  3019. float: left;
  3020. }
  3021. .maintenancePowerText{
  3022. width: 55px;
  3023. height: 25px;
  3024. float: left;
  3025. margin-left: 2px;
  3026. line-height: 25px;
  3027. }
  3028. .maintenancePower{
  3029. margin-left: 30px;
  3030. width: 20%;
  3031. height: 25px;
  3032. float: left;
  3033. }
  3034. .faultPowerText{
  3035. width: 55px;
  3036. height: 25px;
  3037. float: left;
  3038. margin-left: 2px;
  3039. line-height: 25px;
  3040. }
  3041. .faultPower{
  3042. width: 20%;
  3043. height: 25px;
  3044. float: left;
  3045. margin-left: 11px;
  3046. }
  3047. .powerGenerationText {
  3048. width: 30px;
  3049. height: 25px;
  3050. float: left;
  3051. margin-left: 2px;
  3052. line-height: 25px;
  3053. }
  3054. .powerGeneration {
  3055. width: 20%;
  3056. height: 25px;
  3057. float: left;
  3058. margin-left: 11px;
  3059. }
  3060. .directGenerationText {
  3061. width: 30px;
  3062. height: 25px;
  3063. float: left;
  3064. margin-left: 2px;
  3065. line-height: 25px;
  3066. }
  3067. .directGeneration {
  3068. width: 20%;
  3069. height: 25px;
  3070. float: left;
  3071. margin-left: 9px;
  3072. }
  3073. .choice {
  3074. width: 100%;
  3075. height: 80px;
  3076. float: left;
  3077. user-select: text;
  3078. -webkit-user-select: text;
  3079. -moz-user-select: text;
  3080. -ms-user-select: text;
  3081. color: silver;
  3082. font-size: 12px;
  3083. }
  3084. .speedPowerDiagram {
  3085. width: 100px;
  3086. height: 30px;
  3087. user-select: text;
  3088. -webkit-user-select: text;
  3089. -moz-user-select: text;
  3090. -ms-user-select: text;
  3091. color: silver;
  3092. float: left;
  3093. margin-top: 18px;
  3094. margin-left: 9px;
  3095. font-size: 11px;
  3096. }
  3097. .qiun-chart {
  3098. margin-top: 50px;
  3099. width: 750upx;
  3100. height: 400upx;
  3101. }
  3102. .chart {
  3103. width: 750upx;
  3104. height: 400upx;
  3105. }
  3106. .DrawerPage {
  3107. position: fixed;
  3108. width: 100vw;
  3109. height: 100vh;
  3110. left: 0vw;
  3111. background-color: #1f1f1f;
  3112. transition: all 0.4s;
  3113. }
  3114. .DrawerPage.show {
  3115. transform: scale(0.9, 0.9);
  3116. left: 85vw;
  3117. box-shadow: 0 0 60upx rgba(0, 0, 0, 0.2);
  3118. transform-origin: 0;
  3119. }
  3120. .DrawerWindow {
  3121. position: absolute;
  3122. width: 85vw;
  3123. height: 100vh;
  3124. left: 0;
  3125. top: 0;
  3126. transform: scale(0.9, 0.9) translateX(-100%);
  3127. opacity: 0;
  3128. pointer-events: none;
  3129. transition: all 0.4s;
  3130. padding: 100upx 0;
  3131. }
  3132. .DrawerWindow.show {
  3133. transform: scale(1, 1) translateX(0%);
  3134. opacity: 1;
  3135. pointer-events: all;
  3136. }
  3137. .DrawerClose {
  3138. position: absolute;
  3139. width: 40vw;
  3140. height: 100vh;
  3141. right: 0;
  3142. top: 0;
  3143. color: transparent;
  3144. padding-bottom: 30upx;
  3145. display: flex;
  3146. align-items: flex-end;
  3147. justify-content: center;
  3148. background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.6));
  3149. letter-spacing: 5px;
  3150. font-size: 50upx;
  3151. opacity: 0;
  3152. pointer-events: none;
  3153. transition: all 0.4s;
  3154. }
  3155. .DrawerClose.show {
  3156. opacity: 1;
  3157. pointer-events: all;
  3158. width: 15vw;
  3159. color: #fff;
  3160. }
  3161. .DrawerPage .cu-bar.tabbar .action button.cuIcon {
  3162. width: 64upx;
  3163. height: 64upx;
  3164. line-height: 64upx;
  3165. margin: 0;
  3166. display: inline-block;
  3167. }
  3168. .DrawerPage .cu-bar.tabbar .action .cu-avatar {
  3169. margin: 0;
  3170. }
  3171. .DrawerPage .nav {
  3172. flex: 1;
  3173. }
  3174. .DrawerPage .nav .cu-item.cur {
  3175. border-bottom: 0;
  3176. position: relative;
  3177. }
  3178. .DrawerPage .nav .cu-item.cur::after {
  3179. content: "";
  3180. width: 10upx;
  3181. height: 10upx;
  3182. background-color: currentColor;
  3183. position: absolute;
  3184. bottom: 10upx;
  3185. border-radius: 10upx;
  3186. left: 0;
  3187. right: 0;
  3188. margin: auto;
  3189. }
  3190. .DrawerPage .cu-bar.tabbar .action {
  3191. flex: initial;
  3192. }
  3193. </style>