Index.vue 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784
  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: 8px;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">
  11. <block v-if="badge != 1">{{ badge > 99 ? '99+' : badge }}</block>
  12. </view>
  13. </view>
  14. </view>
  15. 宁夏新能源公司
  16. </view>
  17. <view class="plus">+</view>
  18. </view>
  19. <!-- 抽屉组件 -->
  20. <div>
  21. <drawer ref="drawer"></drawer>
  22. </div>
  23. <!--时间组件-->
  24. <view class="time">
  25. <view class="timeimageshizhong">
  26. <image src="../../static/picture/dafeng.png" style="width: 20px;height: 20px;margin-left: 10px;"></image>
  27. </view>
  28. <view class="timeText">推荐时间:2020年4月15日ㅤ19:31</view>
  29. <view class="timeIcon">
  30. <image src="../../static/picture/qingwhite.png" style="width: 25px;height: 25px;margin-left: 54px;"></image>
  31. </view>
  32. </view>
  33. <!--电量卡片-->
  34. <view class="InformationCard">
  35. <view class="informationCardAll">
  36. <view class="informationCardTextOne">
  37. <view class="informationCardText">
  38. <view class="textSilver">安全天数</view>
  39. <view class="textWhite">(天)</view>
  40. :15
  41. </view>
  42. <view class="informationCardTextzj">
  43. <view class="textSilver">装机容量</view>
  44. <view class="textWhite">(MV)</view>
  45. :15
  46. </view>
  47. </view>
  48. <view class="informationCardTextTwo">
  49. <view class="informationCardText2">
  50. <view class="textSilver">日发电量</view>
  51. <view class="textWhite">(kwh)</view>
  52. :150
  53. </view>
  54. <view class="informationCardText2">
  55. <view class="textSilver">预测发电量</view>
  56. <view class="textWhite">(kwh)</view>
  57. :15
  58. </view>
  59. <view class="informationCardText2">
  60. <view class="textSilver">上网电量</view>
  61. <view class="textWhite">(kwh)</view>
  62. :15
  63. </view>
  64. </view>
  65. </view>
  66. </view>
  67. <!--风速卡片-->
  68. <view class="speedPower">
  69. <view class="cardinstallredSpeed">
  70. <view class="cardinstalltitlegreen">
  71. 平均风速
  72. <view class="textWhitekuangSpeed">(km/h)</view>
  73. </view>
  74. <view class="cardinstallnumbergreen">5</view>
  75. <view class="cardinstallnumbergreenmin">
  76. <view class="greenMinText">min: 5</view>
  77. </view>
  78. <view class="cardinstallnumbergreenmax">
  79. <view class="greenMaxText">max: 25</view>
  80. </view>
  81. </view>
  82. <view class="cardinstallredSpeed">
  83. <view class="cardinstalltitlegreen">
  84. 预测风速
  85. <view class="textWhitekuangSpeed">(km/h)</view>
  86. </view>
  87. <view class="cardinstallnumbergreen">48</view>
  88. <view class="cardinstallnumbergreenmin">
  89. <view class="greenMinText">min: 4</view>
  90. </view>
  91. <view class="cardinstallnumbergreenmax">
  92. <view class="greenMaxText">max: 26</view>
  93. </view>
  94. </view>
  95. <view class="cardinstallredSpeed">
  96. <view class="cardinstalltitleRed">
  97. 实际功率
  98. <view class="textWhitekuang">(kw)</view>
  99. </view>
  100. <view class="cardinstallnumberred">15</view>
  101. <view class="cardinstallnumberredmin">
  102. <view class="redMinText">min: 566</view>
  103. </view>
  104. <view class="cardinstallnumberredmax">
  105. <view class="redMaxText">max: 656</view>
  106. </view>
  107. </view>
  108. <view class="cardinstallredSpeed">
  109. <view class="cardinstalltitleRed">
  110. 理论功率
  111. <view class="textWhitekuang">(kw)</view>
  112. </view>
  113. <view class="cardinstallnumberred">14</view>
  114. <view class="cardinstallnumberredmin">
  115. <view class="redMinText">min: 589</view>
  116. </view>
  117. <view class="cardinstallnumberredmax">
  118. <view class="redMaxText">max: 674</view>
  119. </view>
  120. </view>
  121. </view>
  122. <!--接入卡片-->
  123. <view class="interfaceCard">
  124. <view class="interfaceCardSmallTop">
  125. <view class="interfaceCardSmall">
  126. <view class="AccessCardimage">
  127. <image src="../../static/picture/001.png" style="width: 18px;height:18px;margin-top: 9px;margin-left: 7px;"></image>
  128. </view>
  129. <view class="AccessCardText">接入</view>
  130. <view class="AccessCardNumber">59</view>
  131. </view>
  132. <view class="interfaceCardSmall">
  133. <view class="AccessCardimage">
  134. <image src="../../static/picture/002.png" style="width: 18px;height:18px;margin-top: 9px;margin-left: 7px;"></image>
  135. </view>
  136. <view class="AccessCardText">运行</view>
  137. <view class="AccessCardNumber">29</view>
  138. </view>
  139. <view class="interfaceCardSmall">
  140. <view class="AccessCardimage">
  141. <image src="../../static/picture/003.png" style="width: 18px;height:18px;margin-top: 9px;margin-left: 7px;"></image>
  142. </view>
  143. <view class="AccessCardText">故障</view>
  144. <view class="AccessCardNumber">18</view>
  145. </view>
  146. </view>
  147. <view class="interfaceCardSmallTop">
  148. <view class="interfaceCardSmall">
  149. <view class="AccessCardimage">
  150. <image src="../../static/picture/004.png" style="width: 18px;height:18px;margin-top: 9px;margin-left: 7px;"></image>
  151. </view>
  152. <view class="AccessCardText">待机</view>
  153. <view class="AccessCardNumber">10</view>
  154. </view>
  155. <view class="interfaceCardSmall">
  156. <view class="AccessCardimage">
  157. <image src="../../static/picture/005.png" style="width: 18px;height:18px;margin-top: 9px;margin-left: 7px;"></image>
  158. </view>
  159. <view class="AccessCardText">维护</view>
  160. <view class="AccessCardNumber">8</view>
  161. </view>
  162. <view class="interfaceCardSmall">
  163. <view class="AccessCardimage">
  164. <image src="../../static/picture/006.png" style="width: 18px;height:19px;margin-top: 9px;margin-left: 7px;"></image>
  165. </view>
  166. <view class="AccessCardText">离线</view>
  167. <view class="AccessCardNumber">8</view>
  168. </view>
  169. </view>
  170. </view>
  171. <!--进度条-->
  172. <view class="progressBar">
  173. <view class="progressBarAll">
  174. <view class="progressBarOne">
  175. <view class="progressBarLeft">
  176. <view class="progressBarLeftText">35kwh</view>
  177. </view>
  178. <view class="progressBarText">月计划发电量进度条</view>
  179. <view class="progressBarRight">
  180. <view class="progressBarRightText">100kwh</view>
  181. </view>
  182. </view>
  183. <view class="cu-progress round radius striped active">
  184. <view class="bg-olive" :style="[{ width: loading ? '61.8%' : '' }]"></view>
  185. <view class="bg-angrey" :style="[{ width: loading ? '38.2%' : '' }]"></view>
  186. </view>
  187. </view>
  188. <view class="progressBarAll">
  189. <view class="progressBarOne">
  190. <view class="progressBarLeft">
  191. <view class="progressBarLeftText">135kwh</view>
  192. </view>
  193. <view class="progressBarText">年计划发电量进度条</view>
  194. <view class="progressBarRight">
  195. <view class="progressBarRightText">200kwh</view>
  196. </view>
  197. </view>
  198. <view class="cu-progress round radius striped active">
  199. <view class="bg-olive" :style="[{ width: loading ? '70%' : '' }]"></view>
  200. <view class="bg-angrey" :style="[{ width: loading ? '30%' : '' }]"></view>
  201. </view>
  202. </view>
  203. </view>
  204. <scroll-view scroll-x class="horizontalSlider">
  205. <view class="slide">
  206. <view class="monthlyUtilizationHours">月利用小时(h):13</view>
  207. <view class="yearlyUtilizationHours">年利用小时(h):13</view>
  208. <view class="comprehensiveServicePowerConsumptionRate">综合厂用电率(%):20</view>
  209. <view class="equipmentAvailability">设备可利用率(%):90</view>
  210. <view class="sulfurDioxideEmissionReduction">减排二氧化硫(吨):21</view>
  211. <view class="carbonDioxideReduction">减排二氧化碳(吨):5</view>
  212. <view class="waterSaving">节约用水(吨):15</view>
  213. <view class="saveStandardCoal">节约标煤(吨):35</view>
  214. <view class="mttr">mttr(h):22</view>
  215. <view class="mtbf">mtbf(h):24</view>
  216. </view>
  217. </scroll-view>
  218. <!--折线图-->
  219. <view class="lineChart">
  220. <view class="qiun-charts">
  221. <view class="speedPowerDiagram">风速功率曲线图</view>
  222. <canvas canvas-id="canvasLineA" id="canvasLineA" class="charts" @touchstart="touchLineA"></canvas>
  223. </view>
  224. </view>
  225. <!-- 柱状图 -->
  226. <view class="Histogram">
  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. 预测电量
  271. <span>(kwh)</span>
  272. :15
  273. </view>
  274. <view class="powerAndSpeedRed">
  275. 日发电量
  276. <span>(kwh)</span>
  277. :15
  278. </view>
  279. <view class="powerAndSpeedRed">
  280. 实时风速
  281. <span>(km/h)</span>
  282. :15
  283. </view>
  284. <view class="powerAndSpeedRed">
  285. 实际功率
  286. <span>(km/h)</span>
  287. :15
  288. </view>
  289. </view>
  290. <!-- HQChart图 -->
  291. <!-- <view class="HQChart">
  292. <div class="divchart" ref="divchart"><div id="minute" style="width: 250px; height: 100px;" ref="minute"></div></div>
  293. </view> -->
  294. <view class="UChartContainer">
  295. <view class="windStationUChart">
  296. <view class="windStationQiun-charts"><canvas canvas-id="windStationCanvasLineA" id="windStationCanvasLineA"
  297. class="windStationCharts"></canvas></view>
  298. </view>
  299. <view class="UChartTitle">风速功率曲线图</view>
  300. <!-- <view class="xTime">时间</view> -->
  301. </view>
  302. <view class="fanStatusContainer">
  303. <view class="fanStatus">
  304. <view class="statusIcon">
  305. <image src="../../static/picture/001.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  306. </view>
  307. <span>接入&nbsp;&nbsp;99</span>
  308. </view>
  309. <view class="fanStatus">
  310. <view class="statusIcon">
  311. <image src="../../static/picture/002.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  312. </view>
  313. <span>运行&nbsp;&nbsp;99</span>
  314. </view>
  315. <view class="fanStatus">
  316. <view class="statusIcon">
  317. <image src="../../static/picture/003.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  318. </view>
  319. <span>故障&nbsp;&nbsp;99</span>
  320. </view>
  321. <view class="fanStatus">
  322. <view class="statusIcon">
  323. <image src="../../static/picture/004.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  324. </view>
  325. <span>待机&nbsp;&nbsp;99</span>
  326. </view>
  327. <view class="fanStatus">
  328. <view class="statusIcon">
  329. <image src="../../static/picture/005.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  330. </view>
  331. <span>维护&nbsp;&nbsp;99</span>
  332. </view>
  333. <view class="fanStatus">
  334. <view class="statusIcon">
  335. <image src="../../static/picture/006.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  336. </view>
  337. <span>离线&nbsp;&nbsp;99</span>
  338. </view>
  339. </view>
  340. </view>
  341. <view class="windStationCard" @tap="common.navTo('/components/windStationCardDetail/WindStationCardDetail?option=' + '牛首山')">
  342. <view class="windStationTitle">牛首山风电场</view>
  343. <view class="powerAndSpeedContainer">
  344. <view class="powerAndSpeedRed">
  345. 预测电量
  346. <span>(kwh)</span>
  347. :15
  348. </view>
  349. <view class="powerAndSpeedRed">
  350. 日发电量
  351. <span>(kwh)</span>
  352. :15
  353. </view>
  354. <view class="powerAndSpeedRed">
  355. 实时风速
  356. <span>(km/h)</span>
  357. :15
  358. </view>
  359. <view class="powerAndSpeedRed">
  360. 实际功率
  361. <span>(km/h)</span>
  362. :15
  363. </view>
  364. </view>
  365. <!-- HQChart图 -->
  366. <!-- <view class="HQChart">
  367. <div class="divchart" ref="divchart"><div id="minute" style="width: 250px; height: 100px;" ref="minute"></div></div>
  368. </view> -->
  369. <view class="UChartContainer">
  370. <view class="windStationUChart">
  371. <view class="windStationQiun-charts"><canvas canvas-id="windStationCanvasLineB" id="windStationCanvasLineB"
  372. class="windStationCharts"></canvas></view>
  373. </view>
  374. <view class="UChartTitle">风速功率曲线图</view>
  375. <!-- <view class="xTime">时间</view> -->
  376. </view>
  377. <view class="fanStatusContainer">
  378. <view class="fanStatus">
  379. <view class="statusIcon">
  380. <image src="../../static/picture/001.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  381. </view>
  382. <span>接入&nbsp;&nbsp;99</span>
  383. </view>
  384. <view class="fanStatus">
  385. <view class="statusIcon">
  386. <image src="../../static/picture/002.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  387. </view>
  388. <span>运行&nbsp;&nbsp;99</span>
  389. </view>
  390. <view class="fanStatus">
  391. <view class="statusIcon">
  392. <image src="../../static/picture/003.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  393. </view>
  394. <span>故障&nbsp;&nbsp;99</span>
  395. </view>
  396. <view class="fanStatus">
  397. <view class="statusIcon">
  398. <image src="../../static/picture/004.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  399. </view>
  400. <span>待机&nbsp;&nbsp;99</span>
  401. </view>
  402. <view class="fanStatus">
  403. <view class="statusIcon">
  404. <image src="../../static/picture/005.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  405. </view>
  406. <span>维护&nbsp;&nbsp;99</span>
  407. </view>
  408. <view class="fanStatus">
  409. <view class="statusIcon">
  410. <image src="../../static/picture/006.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  411. </view>
  412. <span>离线&nbsp;&nbsp;99</span>
  413. </view>
  414. </view>
  415. </view>
  416. <view class="windStationCard" @tap="common.navTo('/components/windStationCardDetail/WindStationCardDetail?option=' + '石板泉')">
  417. <view class="windStationTitle">石板泉风电场</view>
  418. <view class="powerAndSpeedContainer">
  419. <view class="powerAndSpeedRed">
  420. 预测电量
  421. <span>(kwh)</span>
  422. :15
  423. </view>
  424. <view class="powerAndSpeedRed">
  425. 日发电量
  426. <span>(kwh)</span>
  427. :15
  428. </view>
  429. <view class="powerAndSpeedRed">
  430. 实时风速
  431. <span>(km/h)</span>
  432. :15
  433. </view>
  434. <view class="powerAndSpeedRed">
  435. 实际功率
  436. <span>(km/h)</span>
  437. :15
  438. </view>
  439. </view>
  440. <!-- HQChart图 -->
  441. <!-- <view class="HQChart">
  442. <div class="divchart" ref="divchart"><div id="minute" style="width: 250px; height: 100px;" ref="minute"></div></div>
  443. </view> -->
  444. <view class="UChartContainer">
  445. <view class="windStationUChart">
  446. <view class="windStationQiun-charts"><canvas canvas-id="windStationCanvasLineC" id="windStationCanvasLineC"
  447. class="windStationCharts"></canvas></view>
  448. </view>
  449. <view class="UChartTitle">风速功率曲线图</view>
  450. <!-- <view class="xTime">时间</view> -->
  451. </view>
  452. <view class="fanStatusContainer">
  453. <view class="fanStatus">
  454. <view class="statusIcon">
  455. <image src="../../static/picture/001.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  456. </view>
  457. <span>接入&nbsp;&nbsp;99</span>
  458. </view>
  459. <view class="fanStatus">
  460. <view class="statusIcon">
  461. <image src="../../static/picture/002.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  462. </view>
  463. <span>运行&nbsp;&nbsp;99</span>
  464. </view>
  465. <view class="fanStatus">
  466. <view class="statusIcon">
  467. <image src="../../static/picture/003.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  468. </view>
  469. <span>故障&nbsp;&nbsp;99</span>
  470. </view>
  471. <view class="fanStatus">
  472. <view class="statusIcon">
  473. <image src="../../static/picture/004.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  474. </view>
  475. <span>待机&nbsp;&nbsp;99</span>
  476. </view>
  477. <view class="fanStatus">
  478. <view class="statusIcon">
  479. <image src="../../static/picture/005.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  480. </view>
  481. <span>维护&nbsp;&nbsp;99</span>
  482. </view>
  483. <view class="fanStatus">
  484. <view class="statusIcon">
  485. <image src="../../static/picture/006.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  486. </view>
  487. <span>离线&nbsp;&nbsp;99</span>
  488. </view>
  489. </view>
  490. </view>
  491. <view class="windStationCard" @tap="common.navTo('/components/windStationCardDetail/WindStationCardDetail?option=' + '青山')">
  492. <view class="windStationTitle">青山风电场</view>
  493. <view class="powerAndSpeedContainer">
  494. <view class="powerAndSpeedRed">
  495. 预测电量
  496. <span>(kwh)</span>
  497. :15
  498. </view>
  499. <view class="powerAndSpeedRed">
  500. 日发电量
  501. <span>(kwh)</span>
  502. :15
  503. </view>
  504. <view class="powerAndSpeedRed">
  505. 实时风速
  506. <span>(km/h)</span>
  507. :15
  508. </view>
  509. <view class="powerAndSpeedRed">
  510. 实际功率
  511. <span>(km/h)</span>
  512. :15
  513. </view>
  514. </view>
  515. <!-- HQChart图 -->
  516. <!-- <view class="HQChart">
  517. <div class="divchart" ref="divchart"><div id="minute" style="width: 250px; height: 100px;" ref="minute"></div></div>
  518. </view> -->
  519. <view class="UChartContainer">
  520. <view class="windStationUChart">
  521. <view class="windStationQiun-charts"><canvas canvas-id="windStationCanvasLineD" id="windStationCanvasLineD"
  522. class="windStationCharts"></canvas></view>
  523. </view>
  524. <view class="UChartTitle">风速功率曲线图</view>
  525. <!-- <view class="xTime">时间</view> -->
  526. </view>
  527. <view class="fanStatusContainer">
  528. <view class="fanStatus">
  529. <view class="statusIcon">
  530. <image src="../../static/picture/001.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  531. </view>
  532. <span>接入&nbsp;&nbsp;99</span>
  533. </view>
  534. <view class="fanStatus">
  535. <view class="statusIcon">
  536. <image src="../../static/picture/002.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  537. </view>
  538. <span>运行&nbsp;&nbsp;99</span>
  539. </view>
  540. <view class="fanStatus">
  541. <view class="statusIcon">
  542. <image src="../../static/picture/003.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  543. </view>
  544. <span>故障&nbsp;&nbsp;99</span>
  545. </view>
  546. <view class="fanStatus">
  547. <view class="statusIcon">
  548. <image src="../../static/picture/004.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  549. </view>
  550. <span>待机&nbsp;&nbsp;99</span>
  551. </view>
  552. <view class="fanStatus">
  553. <view class="statusIcon">
  554. <image src="../../static/picture/005.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  555. </view>
  556. <span>维护&nbsp;&nbsp;99</span>
  557. </view>
  558. <view class="fanStatus">
  559. <view class="statusIcon">
  560. <image src="../../static/picture/006.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  561. </view>
  562. <span>离线&nbsp;&nbsp;99</span>
  563. </view>
  564. </view>
  565. </view>
  566. <view class="windStationCard" @tap="common.navTo('/components/windStationCardDetail/WindStationCardDetail?option=' + '香山')">
  567. <view class="windStationTitle">香山风电场</view>
  568. <view class="powerAndSpeedContainer">
  569. <view class="powerAndSpeedRed">
  570. 预测电量
  571. <span>(kwh)</span>
  572. :15
  573. </view>
  574. <view class="powerAndSpeedRed">
  575. 日发电量
  576. <span>(kwh)</span>
  577. :15
  578. </view>
  579. <view class="powerAndSpeedRed">
  580. 实时风速
  581. <span>(km/h)</span>
  582. :15
  583. </view>
  584. <view class="powerAndSpeedRed">
  585. 实际功率
  586. <span>(km/h)</span>
  587. :15
  588. </view>
  589. </view>
  590. <!-- HQChart图 -->
  591. <!-- <view class="HQChart">
  592. <div class="divchart" ref="divchart"><div id="minute" style="width: 250px; height: 100px;" ref="minute"></div></div>
  593. </view> -->
  594. <view class="UChartContainer">
  595. <view class="windStationUChart">
  596. <view class="windStationQiun-charts"><canvas canvas-id="windStationCanvasLineE" id="windStationCanvasLineE"
  597. class="windStationCharts"></canvas></view>
  598. </view>
  599. <view class="UChartTitle">风速功率曲线图</view>
  600. <!-- <view class="xTime">时间</view> -->
  601. </view>
  602. <view class="fanStatusContainer">
  603. <view class="fanStatus">
  604. <view class="statusIcon">
  605. <image src="../../static/picture/001.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  606. </view>
  607. <span>接入&nbsp;&nbsp;99</span>
  608. </view>
  609. <view class="fanStatus">
  610. <view class="statusIcon">
  611. <image src="../../static/picture/002.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  612. </view>
  613. <span>运行&nbsp;&nbsp;99</span>
  614. </view>
  615. <view class="fanStatus">
  616. <view class="statusIcon">
  617. <image src="../../static/picture/003.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  618. </view>
  619. <span>故障&nbsp;&nbsp;99</span>
  620. </view>
  621. <view class="fanStatus">
  622. <view class="statusIcon">
  623. <image src="../../static/picture/004.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  624. </view>
  625. <span>待机&nbsp;&nbsp;99</span>
  626. </view>
  627. <view class="fanStatus">
  628. <view class="statusIcon">
  629. <image src="../../static/picture/005.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  630. </view>
  631. <span>维护&nbsp;&nbsp;99</span>
  632. </view>
  633. <view class="fanStatus">
  634. <view class="statusIcon">
  635. <image src="../../static/picture/006.png" style="width: 16px;height: 16px;margin-top: 7px;"></image>
  636. </view>
  637. <span>离线&nbsp;&nbsp;99</span>
  638. </view>
  639. </view>
  640. </view>
  641. </view>
  642. </scroll-view>
  643. </view>
  644. </view>
  645. </template>
  646. <script>
  647. import drawer from '../../components/drawer/threeLineDrawer.vue';
  648. import uCharts from '../../components/tools/u-charts/u-charts.js';
  649. var _self;
  650. var canvaLineA = null;
  651. var canvaColumn = null;
  652. var canvaLineB = null;
  653. export default {
  654. components: {
  655. drawer: drawer
  656. },
  657. data: function() {
  658. return {
  659. badge: 22,
  660. drawerList: [{
  661. "name": "首页"
  662. },
  663. {
  664. "name": "状态监视"
  665. },
  666. {
  667. "name": "矩阵监视"
  668. },
  669. {
  670. "name": "风场监视"
  671. },
  672. {
  673. "name": "人员监视"
  674. },
  675. ],
  676. inconList: ['form', 'favor', 'question', 'edit'],
  677. minaverageSpeed: '12',
  678. maxaverageSpeed: '25',
  679. loading: false,
  680. cWidth: '',
  681. cHeight: '',
  682. pixelRatio: 1,
  683. serverData: '',
  684. dayHair: false,
  685. fault: false,
  686. overhaul: false,
  687. powerLimitation: false,
  688. performance: false,
  689. toBeInvolved: false,
  690. Xzuobiao: ["04/12", "04/13", "04/14", "04/15", "04/16", "04/17", "04/18"],
  691. rifa: [18, 13, 12, 17, 13, 7, 11],
  692. guzhang: [17, 15, 17, 21, 16, 8, 10],
  693. jianxiu: [14, 17, 19, 20, 6, 14, 12],
  694. xiandian: [14, 17, 19, 20, 6, 14, 12],
  695. xingneng: [15, 17, 19, 20, 6, 4, 12],
  696. shoulei: [14, 17, 19, 20, 6, 4, 12],
  697. clickFlag: "stack",
  698. windStationCardCWidth: '',
  699. windStationCardCHeight: '',
  700. windStationCardPixelRatio: 1
  701. };
  702. },
  703. onLoad: function() {
  704. let that = this;
  705. setTimeout(function() {
  706. that.loading = true;
  707. }, 500);
  708. _self = this;
  709. this.cWidth = uni.upx2px(750);
  710. this.cHeight = uni.upx2px(400);
  711. this.getServerData();
  712. this.getColumnData();
  713. this.windStationCardCWidth = 250;
  714. this.windStationCardCHeight = 150;
  715. this.getWindStationCardData();
  716. },
  717. onHide() {
  718. this.$refs.drawer.closeDrawer();
  719. },
  720. methods: {
  721. openDrawer: function() {
  722. this.$refs.drawer.openDrawer(250, this.drawerList, this.inconList);
  723. },
  724. closeDrawer: function() {
  725. this.drawerIsShow = false;
  726. },
  727. getServerData() {
  728. // 折线图
  729. let LineA = {
  730. categories: [
  731. ' 17:26',
  732. '18:56',
  733. '19:56',
  734. '20:56',
  735. '21:56',
  736. '22:56',
  737. '23:56',
  738. '00:56',
  739. '01:56',
  740. '02:56',
  741. '03:56',
  742. '04:56',
  743. '05:56',
  744. '06:56',
  745. '07:56',
  746. '08:56',
  747. '09:56',
  748. '10:56',
  749. '11:56',
  750. '12:56',
  751. '13:56',
  752. '14:56',
  753. '15:56',
  754. '16:56',
  755. '17:56 '
  756. ],
  757. series: [{
  758. name: '功率',
  759. 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,
  760. 13, 12.8
  761. ],
  762. color: '#4BB94B',
  763. textColor: '#FFFFFF',
  764. textSize: this.seriesTextSize,
  765. format: val => {
  766. return val + 'kwh';
  767. },
  768. index: 0,
  769. legendShape: 'circle'
  770. },
  771. {
  772. name: '风速',
  773. 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,
  774. 23, 22.8
  775. ],
  776. color: '#E82E2F',
  777. textColor: '#FFFFFF',
  778. textSize: this.seriesTextSize,
  779. format: val => {
  780. return val + 'km/h';
  781. },
  782. index: 1,
  783. legendShape: 'circle'
  784. },
  785. {
  786. name: '理论功率',
  787. 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,
  788. 33, 32.8
  789. ],
  790. color: '#F5A83C',
  791. textColor: '#FFFFFF',
  792. textSize: this.seriesTextSize,
  793. format: val => {
  794. return val + 'kwh';
  795. },
  796. index: 0,
  797. legendShape: 'circle'
  798. },
  799. {
  800. name: '预测功率',
  801. 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],
  802. color: '#4A80B1',
  803. textColor: '#FFFFFF',
  804. textSize: this.seriesTextSize,
  805. format: val => {
  806. return val + 'kwh';
  807. },
  808. index: 1,
  809. legendShape: 'circle'
  810. }
  811. ]
  812. };
  813. this.showLineA('canvasLineA', LineA);
  814. },
  815. showLineA(canvasId, chartData) {
  816. var _self = this;
  817. canvaLineA = new uCharts({
  818. $this: _self,
  819. canvasId: canvasId,
  820. type: 'line',
  821. fontSize: 11,
  822. legend: {
  823. show: true,
  824. position: 'top',
  825. float: 'right',
  826. fontColor: 'silver',
  827. itemGap: '4',
  828. itemWidth: '3'
  829. },
  830. dataLabel: false,
  831. dataPointShape: false,
  832. background: '#FFFFFF',
  833. pixelRatio: _self.pixelRatio,
  834. categories: chartData.categories,
  835. series: chartData.series,
  836. animation: true,
  837. xAxis: {
  838. type: 'grid',
  839. gridColor: 'silver',
  840. fontColor: 'silver',
  841. gridType: 'solid',
  842. gridColor: '#2E2E2E',
  843. axisLineColor: '#2E2E2E',
  844. labelCount: '3'
  845. // itemCount:"3"
  846. },
  847. yAxis: {
  848. data: [{
  849. type: 'value',
  850. fontColor: 'silver',
  851. disabled: false, //y轴轴线
  852. min: 0,
  853. max: 40,
  854. position: 'left',
  855. axisLineColor: '#2E2E2E',
  856. title: ' 风速:(km/h)',
  857. titleFontColor: 'silver'
  858. },
  859. {
  860. fontColor: 'silver',
  861. disabled: false, //y轴轴线
  862. min: 0,
  863. max: 40,
  864. position: 'right',
  865. axisLineColor: '#2E2E2E',
  866. title: '功率:(kwh)',
  867. titleFontColor: 'silver'
  868. }
  869. ],
  870. gridColor: '#2E2E2E',
  871. splitNumber: 4,
  872. gridType: 'solid',
  873. dashLength: 8,
  874. showTitle: 'true',
  875. format: val => {
  876. return val.toFixed(0) + '元';
  877. }
  878. },
  879. width: _self.cWidth * _self.pixelRatio,
  880. height: _self.cHeight * _self.pixelRatio,
  881. extra: {
  882. line: {
  883. type: 'line',
  884. width: '1'
  885. }
  886. }
  887. });
  888. },
  889. AffectedPower() {
  890. this.toBeInvolved = true,
  891. this.performance = false;
  892. this.powerLimitation = false;
  893. this.overhaul = false;
  894. this.dayHair = false;
  895. this.fault = false;
  896. this.clickFlag = "group";
  897. this.getColumnData();
  898. },
  899. performancePower() {
  900. this.performance = true;
  901. this.powerLimitation = false;
  902. this.toBeInvolved = false,
  903. this.overhaul = false;
  904. this.dayHair = false;
  905. this.fault = false;
  906. this.clickFlag = "group";
  907. this.getColumnData();
  908. },
  909. limitedPower() {
  910. this.toBeInvolved = false,
  911. this.powerLimitation = true;
  912. this.performance = false;
  913. this.overhaul = false;
  914. this.dayHair = false;
  915. this.fault = false;
  916. this.clickFlag = "group";
  917. this.getColumnData();
  918. },
  919. maintenancePower() {
  920. this.toBeInvolved = false,
  921. this.overhaul = true;
  922. this.performance = false;
  923. this.dayHair = false;
  924. this.fault = false;
  925. this.powerLimitation = false;
  926. this.clickFlag = "group";
  927. this.getColumnData();
  928. },
  929. directGeneration() {
  930. this.toBeInvolved = false,
  931. this.dayHair = false;
  932. this.performance = false;
  933. this.fault = false;
  934. this.overhaul = false;
  935. this.powerLimitation = false;
  936. this.clickFlag = "stack";
  937. this.getColumnData();
  938. },
  939. powerGeneration() {
  940. this.toBeInvolved = false,
  941. this.dayHair = true;
  942. this.performance = false;
  943. this.fault = false;
  944. this.overhaul = false;
  945. this.powerLimitation = false;
  946. this.clickFlag = "group";
  947. this.getColumnData();
  948. },
  949. faultPower() {
  950. this.toBeInvolved = false,
  951. this.fault = true;
  952. this.performance = false;
  953. this.dayHair = false;
  954. this.overhaul = false;
  955. this.powerLimitation = false;
  956. this.clickFlag = "group";
  957. this.getColumnData();
  958. },
  959. getColumnData() {
  960. let ColumnStack = {
  961. "categories": ["04/12", "04/13", "04/14", "04/15", "04/16", "04/17", "04/18"],
  962. "series": [{
  963. "name": "应发电量(万kwh)",
  964. "data": [0, 0, 0, 0, 0, 0, 0],
  965. color: '#007BF9',
  966. }, {
  967. "name": "日发电量(万kwh)",
  968. "data": [18, 13, 12, 17, 13, 7, 11],
  969. color: '#4EB64E',
  970. }, {
  971. "name": "故障损失电量(万kwh)",
  972. "data": [17, 15, 17, 21, 16, 8, 10],
  973. color: '#F76E6C',
  974. }, {
  975. "name": "检修损失电量(万kwh)",
  976. "data": [14, 17, 19, 20, 6, 14, 12],
  977. color: '#FF8F3E',
  978. },
  979. {
  980. "name": "限电损失电量(万kwh)",
  981. "data": [14, 17, 19, 20, 6, 14, 12],
  982. color: '#DC62D2',
  983. },
  984. {
  985. "name": "性能损失电量(万kwh)",
  986. "data": [15, 17, 19, 20, 6, 4, 12],
  987. color: '#9DA3F6',
  988. },
  989. {
  990. "name": "受累损失电量(万kwh)",
  991. "data": [14, 17, 19, 20, 6, 4, 12],
  992. color: '#9E9E9E',
  993. },
  994. ],
  995. };
  996. if (this.dayHair) {
  997. ColumnStack = {
  998. "categories": ["04/12", "04/13", "04/14", "04/15", "04/16", "04/17", "04/18", "04/19", "04/20"],
  999. "series": [{
  1000. "name": "日发电量(万kwh)",
  1001. "data": [18, 13, 12, 17, 13, 7, 11, 15, 13],
  1002. color: '#4EB64E',
  1003. }
  1004. ],
  1005. };
  1006. ColumnStack.categories = [];
  1007. ColumnStack.series[0].data = [];
  1008. for (let i = 0; i < this.rifa.length; i++) {
  1009. ColumnStack.categories.push(this.Xzuobiao[i]);
  1010. // console.log(ColumnStack.categories)
  1011. ColumnStack.series[0].data.push(this.rifa[i]);
  1012. // console.log(ColumnStack.series[1].data)
  1013. }
  1014. }
  1015. if (this.fault) {
  1016. ColumnStack = {
  1017. "categories": ["04/12", "04/13", "04/14", "04/15", "04/16", "04/17", "04/18", "04/19", "04/20"],
  1018. "series": [{
  1019. "name": "故障损失电量(万kwh)",
  1020. "data": [17, 15, 17, 21, 16, 8, 10, 17, 11],
  1021. color: '#F76E6C',
  1022. }, ],
  1023. };
  1024. ColumnStack.categories = [];
  1025. ColumnStack.series[0].data = [];
  1026. for (let i = 0; i < this.guzhang.length; i++) {
  1027. ColumnStack.categories.push(this.Xzuobiao[i]);
  1028. // console.log(ColumnStack.categories)
  1029. ColumnStack.series[0].data.push(this.guzhang[i]);
  1030. // console.log(ColumnStack.series[1].data)
  1031. }
  1032. }
  1033. if (this.overhaul) {
  1034. ColumnStack = {
  1035. "categories": ["04/12", "04/13", "04/14", "04/15", "04/16", "04/17", "04/18", "04/19", "04/20"],
  1036. "series": [{
  1037. "name": "检修损失电量(万kwh)",
  1038. "data": [14, 17, 19, 20, 6, 14, 12, 14, 10],
  1039. color: '#FF8F3E',
  1040. }
  1041. ],
  1042. };
  1043. ColumnStack.categories = [];
  1044. ColumnStack.series[0].data = [];
  1045. for (let i = 0; i < this.jianxiu.length; i++) {
  1046. ColumnStack.categories.push(this.Xzuobiao[i]);
  1047. // console.log(ColumnStack.categories)
  1048. ColumnStack.series[0].data.push(this.jianxiu[i]);
  1049. // console.log(ColumnStack.series[1].data)
  1050. }
  1051. }
  1052. if (this.powerLimitation) {
  1053. ColumnStack = {
  1054. "categories": ["04/12", "04/13", "04/14", "04/15", "04/16", "04/17", "04/18", "04/19", "04/20"],
  1055. "series": [{
  1056. "name": "限电损失电量(万kwh)",
  1057. "data": [14, 17, 19, 20, 6, 14, 12, 14, 10],
  1058. color: '#DC62D2',
  1059. }
  1060. ],
  1061. };
  1062. ColumnStack.categories = [];
  1063. ColumnStack.series[0].data = [];
  1064. for (let i = 0; i < this.xiandian.length; i++) {
  1065. ColumnStack.categories.push(this.Xzuobiao[i]);
  1066. // console.log(ColumnStack.categories)
  1067. ColumnStack.series[0].data.push(this.xiandian[i]);
  1068. // console.log(ColumnStack.series[1].data)
  1069. }
  1070. }
  1071. if (this.performance) {
  1072. ColumnStack = {
  1073. "categories": ["04/12", "04/13", "04/14", "04/15", "04/16", "04/17", "04/18", "04/19", "04/20"],
  1074. "series": [{
  1075. "name": "性能损失电量(万kwh)",
  1076. "data": [14, 17, 19, 20, 6, 14, 12, 14, 10],
  1077. color: '#9DA3F6',
  1078. }
  1079. ],
  1080. };
  1081. ColumnStack.categories = [];
  1082. ColumnStack.series[0].data = [];
  1083. for (let i = 0; i < this.xingneng.length; i++) {
  1084. ColumnStack.categories.push(this.Xzuobiao[i]);
  1085. // console.log(ColumnStack.categories)
  1086. ColumnStack.series[0].data.push(this.xingneng[i]);
  1087. // console.log(ColumnStack.series[1].data)
  1088. }
  1089. }
  1090. if (this.toBeInvolved) {
  1091. ColumnStack = {
  1092. "categories": ["04/12", "04/13", "04/14", "04/15", "04/16", "04/17", "04/18", "04/19", "04/20"],
  1093. "series": [{
  1094. "name": "受累损失电量(万kwh)",
  1095. "data": [14, 17, 19, 20, 6, 14, 12, 14, 10],
  1096. color: '#9E9E9E',
  1097. }
  1098. ],
  1099. };
  1100. ColumnStack.categories = [];
  1101. ColumnStack.series[0].data = [];
  1102. for (let i = 0; i < this.shoulei.length; i++) {
  1103. ColumnStack.categories.push(this.Xzuobiao[i]);
  1104. // console.log(ColumnStack.categories)
  1105. ColumnStack.series[0].data.push(this.shoulei[i]);
  1106. // console.log(ColumnStack.series[1].data)
  1107. }
  1108. }
  1109. this.showColumnStack("canvasColumnStack", ColumnStack);
  1110. },
  1111. showColumnStack(canvasId, chartData) {
  1112. var _self = this;
  1113. canvaColumn = new uCharts({
  1114. $this: _self,
  1115. canvasId: canvasId,
  1116. type: 'column',
  1117. legend: {
  1118. show: false
  1119. },
  1120. fontSize: 11,
  1121. background: '#FFFFFF',
  1122. pixelRatio: _self.pixelRatio,
  1123. animation: true,
  1124. categories: chartData.categories,
  1125. series: chartData.series,
  1126. xAxis: {
  1127. disableGrid: true,
  1128. gridColor: 'silver',
  1129. fontColor: 'silver',
  1130. },
  1131. yAxis: {
  1132. data: [{
  1133. type: "value",
  1134. fontColor: 'silver',
  1135. disabled: false, //y轴轴线
  1136. min: 0,
  1137. max: 60,
  1138. axisLineColor: "#2E2E2E",
  1139. title: " 电量:(kwh)",
  1140. titleFontColor: "silver"
  1141. }],
  1142. gridColor: "#2E2E2E",
  1143. splitNumber: 4,
  1144. gridType: 'solid',
  1145. dashLength: 8,
  1146. showTitle: false,
  1147. //disabled:true
  1148. },
  1149. dataLabel: false,
  1150. width: _self.cWidth * _self.pixelRatio,
  1151. height: _self.cHeight * _self.pixelRatio,
  1152. extra: {
  1153. column: {
  1154. type: _self.clickFlag,
  1155. width: '13'
  1156. }
  1157. }
  1158. });
  1159. },
  1160. touchColumn(e) {
  1161. let _this = this;
  1162. canvaColumn.showToolTip(e, {
  1163. format: function(item, category) {
  1164. if (item.name == "应发电量(万kwh)") {
  1165. return category + ' ' + item.name + ':' + 50;
  1166. } else {
  1167. return category + ' ' + item.name + ':' + item.data
  1168. }
  1169. }
  1170. });
  1171. },
  1172. touchLineA(e) {
  1173. canvaLineA.showToolTip(e, {
  1174. format: function(item, category) {
  1175. return category + ' ' + item.name + ':' + item.data;
  1176. }
  1177. });
  1178. },
  1179. moveLineA(e) {
  1180. canvaLineA.scroll(e);
  1181. },
  1182. getWindStationCardData: function() {
  1183. let LineA1 = {
  1184. categories: [
  1185. ' 17:26',
  1186. '18:56',
  1187. '19:56',
  1188. '20:56',
  1189. '21:56',
  1190. '22:56',
  1191. '23:56',
  1192. '00:56',
  1193. '01:56',
  1194. '02:56',
  1195. '03:56',
  1196. '04:56',
  1197. '05:56',
  1198. '06:56',
  1199. '07:56',
  1200. '08:56',
  1201. '09:56',
  1202. '10:56',
  1203. '11:56',
  1204. '12:56',
  1205. '13:56',
  1206. '14:56',
  1207. '15:56',
  1208. '16:56',
  1209. '17:56 '
  1210. ],
  1211. series: [{
  1212. name: '功率',
  1213. 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,
  1214. 13, 12.8
  1215. ],
  1216. color: '#4BB94B',
  1217. textColor: '#FFFFFF',
  1218. textSize: this.seriesTextSize,
  1219. format: val => {
  1220. return val + 'kwh';
  1221. },
  1222. index: 0,
  1223. legendShape: 'circle'
  1224. },
  1225. {
  1226. name: '风速',
  1227. 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,
  1228. 23, 22.8
  1229. ],
  1230. color: '#E82E2F',
  1231. textColor: '#FFFFFF',
  1232. textSize: this.seriesTextSize,
  1233. format: val => {
  1234. return val + 'km/h';
  1235. },
  1236. index: 1,
  1237. legendShape: 'circle'
  1238. },
  1239. {
  1240. name: '理论功率',
  1241. 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,
  1242. 33, 32.8
  1243. ],
  1244. color: '#F5A83C',
  1245. textColor: '#FFFFFF',
  1246. textSize: this.seriesTextSize,
  1247. format: val => {
  1248. return val + 'kwh';
  1249. },
  1250. index: 0,
  1251. legendShape: 'circle'
  1252. },
  1253. {
  1254. name: '预测功率',
  1255. 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],
  1256. color: '#4A80B1',
  1257. textColor: '#FFFFFF',
  1258. textSize: this.seriesTextSize,
  1259. format: val => {
  1260. return val + 'kwh';
  1261. },
  1262. index: 1,
  1263. legendShape: 'circle'
  1264. }
  1265. ]
  1266. };
  1267. let LineB = {
  1268. categories: [
  1269. ' 17:26',
  1270. '18:56',
  1271. '19:56',
  1272. '20:56',
  1273. '21:56',
  1274. '22:56',
  1275. '23:56',
  1276. '00:56',
  1277. '01:56',
  1278. '02:56',
  1279. '03:56',
  1280. '04:56',
  1281. '05:56',
  1282. '06:56',
  1283. '07:56',
  1284. '08:56',
  1285. '09:56',
  1286. '10:56',
  1287. '11:56',
  1288. '12:56',
  1289. '13:56',
  1290. '14:56',
  1291. '15:56',
  1292. '16:56',
  1293. '17:56 '
  1294. ],
  1295. series: [{
  1296. name: '功率',
  1297. 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,
  1298. 13, 12.8
  1299. ],
  1300. color: '#4BB94B',
  1301. textColor: '#FFFFFF',
  1302. textSize: this.seriesTextSize,
  1303. format: val => {
  1304. return val + 'kwh';
  1305. },
  1306. index: 0,
  1307. legendShape: 'circle'
  1308. },
  1309. {
  1310. name: '风速',
  1311. 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,
  1312. 23, 22.8
  1313. ],
  1314. color: '#E82E2F',
  1315. textColor: '#FFFFFF',
  1316. textSize: this.seriesTextSize,
  1317. format: val => {
  1318. return val + 'km/h';
  1319. },
  1320. index: 1,
  1321. legendShape: 'circle'
  1322. },
  1323. {
  1324. name: '理论功率',
  1325. 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,
  1326. 33, 32.8
  1327. ],
  1328. color: '#F5A83C',
  1329. textColor: '#FFFFFF',
  1330. textSize: this.seriesTextSize,
  1331. format: val => {
  1332. return val + 'kwh';
  1333. },
  1334. index: 0,
  1335. legendShape: 'circle'
  1336. },
  1337. {
  1338. name: '预测功率',
  1339. 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],
  1340. color: '#4A80B1',
  1341. textColor: '#FFFFFF',
  1342. textSize: this.seriesTextSize,
  1343. format: val => {
  1344. return val + 'kwh';
  1345. },
  1346. index: 1,
  1347. legendShape: 'circle'
  1348. }
  1349. ]
  1350. };
  1351. let LineC = {
  1352. categories: [
  1353. ' 17:26',
  1354. '18:56',
  1355. '19:56',
  1356. '20:56',
  1357. '21:56',
  1358. '22:56',
  1359. '23:56',
  1360. '00:56',
  1361. '01:56',
  1362. '02:56',
  1363. '03:56',
  1364. '04:56',
  1365. '05:56',
  1366. '06:56',
  1367. '07:56',
  1368. '08:56',
  1369. '09:56',
  1370. '10:56',
  1371. '11:56',
  1372. '12:56',
  1373. '13:56',
  1374. '14:56',
  1375. '15:56',
  1376. '16:56',
  1377. '17:56 '
  1378. ],
  1379. series: [{
  1380. name: '功率',
  1381. 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,
  1382. 13, 12.8
  1383. ],
  1384. color: '#4BB94B',
  1385. textColor: '#FFFFFF',
  1386. textSize: this.seriesTextSize,
  1387. format: val => {
  1388. return val + 'kwh';
  1389. },
  1390. index: 0,
  1391. legendShape: 'circle'
  1392. },
  1393. {
  1394. name: '风速',
  1395. 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,
  1396. 23, 22.8
  1397. ],
  1398. color: '#E82E2F',
  1399. textColor: '#FFFFFF',
  1400. textSize: this.seriesTextSize,
  1401. format: val => {
  1402. return val + 'km/h';
  1403. },
  1404. index: 1,
  1405. legendShape: 'circle'
  1406. },
  1407. {
  1408. name: '理论功率',
  1409. 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,
  1410. 33, 32.8
  1411. ],
  1412. color: '#F5A83C',
  1413. textColor: '#FFFFFF',
  1414. textSize: this.seriesTextSize,
  1415. format: val => {
  1416. return val + 'kwh';
  1417. },
  1418. index: 0,
  1419. legendShape: 'circle'
  1420. },
  1421. {
  1422. name: '预测功率',
  1423. 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],
  1424. color: '#4A80B1',
  1425. textColor: '#FFFFFF',
  1426. textSize: this.seriesTextSize,
  1427. format: val => {
  1428. return val + 'kwh';
  1429. },
  1430. index: 1,
  1431. legendShape: 'circle'
  1432. }
  1433. ]
  1434. };
  1435. let LineD = {
  1436. categories: [
  1437. ' 17:26',
  1438. '18:56',
  1439. '19:56',
  1440. '20:56',
  1441. '21:56',
  1442. '22:56',
  1443. '23:56',
  1444. '00:56',
  1445. '01:56',
  1446. '02:56',
  1447. '03:56',
  1448. '04:56',
  1449. '05:56',
  1450. '06:56',
  1451. '07:56',
  1452. '08:56',
  1453. '09:56',
  1454. '10:56',
  1455. '11:56',
  1456. '12:56',
  1457. '13:56',
  1458. '14:56',
  1459. '15:56',
  1460. '16:56',
  1461. '17:56 '
  1462. ],
  1463. series: [{
  1464. name: '功率',
  1465. 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,
  1466. 13, 12.8
  1467. ],
  1468. color: '#4BB94B',
  1469. textColor: '#FFFFFF',
  1470. textSize: this.seriesTextSize,
  1471. format: val => {
  1472. return val + 'kwh';
  1473. },
  1474. index: 0,
  1475. legendShape: 'circle'
  1476. },
  1477. {
  1478. name: '风速',
  1479. 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,
  1480. 23, 22.8
  1481. ],
  1482. color: '#E82E2F',
  1483. textColor: '#FFFFFF',
  1484. textSize: this.seriesTextSize,
  1485. format: val => {
  1486. return val + 'km/h';
  1487. },
  1488. index: 1,
  1489. legendShape: 'circle'
  1490. },
  1491. {
  1492. name: '理论功率',
  1493. 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,
  1494. 33, 32.8
  1495. ],
  1496. color: '#F5A83C',
  1497. textColor: '#FFFFFF',
  1498. textSize: this.seriesTextSize,
  1499. format: val => {
  1500. return val + 'kwh';
  1501. },
  1502. index: 0,
  1503. legendShape: 'circle'
  1504. },
  1505. {
  1506. name: '预测功率',
  1507. 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],
  1508. color: '#4A80B1',
  1509. textColor: '#FFFFFF',
  1510. textSize: this.seriesTextSize,
  1511. format: val => {
  1512. return val + 'kwh';
  1513. },
  1514. index: 1,
  1515. legendShape: 'circle'
  1516. }
  1517. ]
  1518. };
  1519. let LineE = {
  1520. categories: [
  1521. ' 17:26',
  1522. '18:56',
  1523. '19:56',
  1524. '20:56',
  1525. '21:56',
  1526. '22:56',
  1527. '23:56',
  1528. '00:56',
  1529. '01:56',
  1530. '02:56',
  1531. '03:56',
  1532. '04:56',
  1533. '05:56',
  1534. '06:56',
  1535. '07:56',
  1536. '08:56',
  1537. '09:56',
  1538. '10:56',
  1539. '11:56',
  1540. '12:56',
  1541. '13:56',
  1542. '14:56',
  1543. '15:56',
  1544. '16:56',
  1545. '17:56 '
  1546. ],
  1547. series: [{
  1548. name: '功率',
  1549. 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,
  1550. 13, 12.8
  1551. ],
  1552. color: '#4BB94B',
  1553. textColor: '#FFFFFF',
  1554. textSize: this.seriesTextSize,
  1555. format: val => {
  1556. return val + 'kwh';
  1557. },
  1558. index: 0,
  1559. legendShape: 'circle'
  1560. },
  1561. {
  1562. name: '风速',
  1563. 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,
  1564. 23, 22.8
  1565. ],
  1566. color: '#E82E2F',
  1567. textColor: '#FFFFFF',
  1568. textSize: this.seriesTextSize,
  1569. format: val => {
  1570. return val + 'km/h';
  1571. },
  1572. index: 1,
  1573. legendShape: 'circle'
  1574. },
  1575. {
  1576. name: '理论功率',
  1577. 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,
  1578. 33, 32.8
  1579. ],
  1580. color: '#F5A83C',
  1581. textColor: '#FFFFFF',
  1582. textSize: this.seriesTextSize,
  1583. format: val => {
  1584. return val + 'kwh';
  1585. },
  1586. index: 0,
  1587. legendShape: 'circle'
  1588. },
  1589. {
  1590. name: '预测功率',
  1591. 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],
  1592. color: '#4A80B1',
  1593. textColor: '#FFFFFF',
  1594. textSize: this.seriesTextSize,
  1595. format: val => {
  1596. return val + 'kwh';
  1597. },
  1598. index: 1,
  1599. legendShape: 'circle'
  1600. }
  1601. ]
  1602. };
  1603. this.showWindStationCardLineA('windStationCanvasLineA', LineA1);
  1604. this.showWindStationCardLineA('windStationCanvasLineB', LineB);
  1605. this.showWindStationCardLineA('windStationCanvasLineC', LineC);
  1606. this.showWindStationCardLineA('windStationCanvasLineD', LineD);
  1607. this.showWindStationCardLineA('windStationCanvasLineE', LineE);
  1608. },
  1609. showWindStationCardLineA(canvasId, chartData) {
  1610. var _self = this;
  1611. canvaLineB = new uCharts({
  1612. $this: _self,
  1613. canvasId: canvasId,
  1614. type: 'line',
  1615. fontSize: 11,
  1616. legend: {
  1617. show: true,
  1618. position: 'top',
  1619. float: 'right',
  1620. fontColor: 'silver',
  1621. itemGap: '4',
  1622. itemWidth: '3'
  1623. },
  1624. dataLabel: false,
  1625. dataPointShape: false,
  1626. background: '#FFFFFF',
  1627. pixelRatio: _self.windStationCardPixelRatio,
  1628. categories: chartData.categories,
  1629. series: chartData.series,
  1630. animation: true,
  1631. xAxis: {
  1632. type: 'grid',
  1633. gridColor: 'silver',
  1634. fontColor: 'silver',
  1635. gridType: 'solid',
  1636. gridColor: '#2E2E2E',
  1637. axisLineColor: '#2E2E2E',
  1638. labelCount: '3'
  1639. // itemCount:"3"
  1640. },
  1641. yAxis: {
  1642. data: [{
  1643. type: 'value',
  1644. fontColor: 'silver',
  1645. disabled: false, //y轴轴线
  1646. min: 0,
  1647. max: 40,
  1648. position: 'left',
  1649. axisLineColor: '#2E2E2E',
  1650. title: ' 风速:(km/h)',
  1651. titleFontColor: 'silver'
  1652. },
  1653. {
  1654. fontColor: 'silver',
  1655. disabled: false, //y轴轴线
  1656. min: 0,
  1657. max: 40,
  1658. position: 'right',
  1659. axisLineColor: '#2E2E2E',
  1660. title: '功率:(kwh)',
  1661. titleFontColor: 'silver'
  1662. }
  1663. ],
  1664. gridColor: '#2E2E2E',
  1665. splitNumber: 4,
  1666. gridType: 'solid',
  1667. dashLength: 8,
  1668. showTitle: 'true',
  1669. format: val => {
  1670. return val.toFixed(0) + '元';
  1671. }
  1672. },
  1673. width: _self.windStationCardCWidth * _self.windStationCardPixelRatio,
  1674. height: _self.windStationCardCHeight * _self.windStationCardPixelRatio,
  1675. extra: {
  1676. line: {
  1677. type: 'line',
  1678. width: '1'
  1679. }
  1680. }
  1681. });
  1682. },
  1683. }
  1684. };
  1685. </script>
  1686. <style>
  1687. .speedPowerDiagram {
  1688. width: 100px;
  1689. height: 30px;
  1690. user-select: text;
  1691. -webkit-user-select: text;
  1692. -moz-user-select: text;
  1693. -ms-user-select: text;
  1694. color: silver;
  1695. float: left;
  1696. margin-top: 18px;
  1697. margin-left: 9px;
  1698. font-size: 11px;
  1699. }
  1700. .monthlyUtilizationHours {
  1701. width: 160px;
  1702. height: 30px;
  1703. margin-top: 20px;
  1704. /* background-color: #161616; */
  1705. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(193, 94, 21, 0.2) 100%);
  1706. color: silver;
  1707. margin-left: 20px;
  1708. text-align: center;
  1709. padding-top: 5px;
  1710. }
  1711. .yearlyUtilizationHours {
  1712. width: 160px;
  1713. height: 30px;
  1714. margin-top: 10px;
  1715. /* background-color: #161616; */
  1716. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(193, 94, 21, 0.2) 100%);
  1717. color: silver;
  1718. margin-left: 20px;
  1719. text-align: center;
  1720. padding-top: 5px;
  1721. }
  1722. .comprehensiveServicePowerConsumptionRate {
  1723. width: 160px;
  1724. height: 30px;
  1725. /* margin-top: 10px; */
  1726. /* background-color: #161616; */
  1727. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(193, 94, 21, 0.2) 100%);
  1728. color: silver;
  1729. margin-left: 200px;
  1730. margin-top: -70px;
  1731. text-align: center;
  1732. padding-top: 5px;
  1733. float: left;
  1734. }
  1735. .equipmentAvailability {
  1736. width: 160px;
  1737. height: 30px;
  1738. /* margin-top: 10px; */
  1739. /* background-color: #161616; */
  1740. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(193, 94, 21, 0.2) 100%);
  1741. color: silver;
  1742. margin-left: 200px;
  1743. margin-top: -30px;
  1744. text-align: center;
  1745. padding-top: 5px;
  1746. float: left;
  1747. }
  1748. .sulfurDioxideEmissionReduction {
  1749. width: 160px;
  1750. height: 30px;
  1751. /* margin-top: 10px; */
  1752. /* background-color: #161616; */
  1753. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(193, 94, 21, 0.2) 100%);
  1754. color: silver;
  1755. margin-left: 380px;
  1756. margin-top: -70px;
  1757. text-align: center;
  1758. padding-top: 5px;
  1759. float: left;
  1760. }
  1761. .carbonDioxideReduction {
  1762. width: 160px;
  1763. height: 30px;
  1764. /* margin-top: 10px; */
  1765. /* background-color: #161616; */
  1766. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(193, 94, 21, 0.2) 100%);
  1767. color: silver;
  1768. margin-left: 380px;
  1769. margin-top: -30px;
  1770. text-align: center;
  1771. padding-top: 5px;
  1772. float: left;
  1773. }
  1774. .waterSaving {
  1775. width: 160px;
  1776. height: 30px;
  1777. /* margin-top: 10px; */
  1778. /* background-color: #161616; */
  1779. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(193, 94, 21, 0.2) 100%);
  1780. color: silver;
  1781. margin-left: 560px;
  1782. margin-top: -70px;
  1783. text-align: center;
  1784. padding-top: 5px;
  1785. float: left;
  1786. }
  1787. .saveStandardCoal {
  1788. width: 160px;
  1789. height: 30px;
  1790. /* margin-top: 10px; */
  1791. /* background-color: #161616; */
  1792. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(193, 94, 21, 0.2) 100%);
  1793. color: silver;
  1794. margin-left: 560px;
  1795. margin-top: -30px;
  1796. text-align: center;
  1797. padding-top: 5px;
  1798. float: left;
  1799. }
  1800. .mttr {
  1801. width: 160px;
  1802. height: 30px;
  1803. /* margin-top: 10px; */
  1804. /* background-color: #161616; */
  1805. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(193, 94, 21, 0.2) 100%);
  1806. color: silver;
  1807. margin-left: 740px;
  1808. margin-top: -70px;
  1809. text-align: center;
  1810. padding-top: 5px;
  1811. float: left;
  1812. }
  1813. .mtbf {
  1814. width: 160px;
  1815. height: 30px;
  1816. /* margin-top: 10px; */
  1817. /* background-color: #161616; */
  1818. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(193, 94, 21, 0.2) 100%);
  1819. color: silver;
  1820. margin-left: 740px;
  1821. margin-top: -30px;
  1822. text-align: center;
  1823. padding-top: 5px;
  1824. float: left;
  1825. }
  1826. .horizontalSlider {
  1827. white-space: nowrap;
  1828. width: 100%;
  1829. height: 100px;
  1830. background-color: #242424;
  1831. clear: both;
  1832. /* margin-top: 540px; */
  1833. }
  1834. .slide {
  1835. width: 920px;
  1836. height: 100px;
  1837. background-color: #242424;
  1838. }
  1839. .qiun-charts {
  1840. width: 750upx;
  1841. height: 400upx;
  1842. }
  1843. .charts {
  1844. width: 750upx;
  1845. height: 400upx;
  1846. }
  1847. .uchartTitle {
  1848. position: absolute;
  1849. left: 9px;
  1850. top: 605px;
  1851. user-select: text;
  1852. -webkit-user-select: text;
  1853. -moz-user-select: text;
  1854. -ms-user-select: text;
  1855. color: silver;
  1856. font-size: 12px;
  1857. }
  1858. .Histogram {
  1859. width: 100%;
  1860. height: 250px;
  1861. background-color: #242424;
  1862. margin-top: 10px;
  1863. float: left;
  1864. }
  1865. .lineChart {
  1866. width: 100%;
  1867. height: 200px;
  1868. background-color: #242424;
  1869. margin-top: 10px;
  1870. float: left;
  1871. }
  1872. body {
  1873. font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Helvetica Neue', STHeiti, 'Microsoft Yahei', Tahoma, Simsun, sans-serif;
  1874. font-size: 20px;
  1875. color: silver;
  1876. background: #000;
  1877. }
  1878. page {
  1879. background-color: #1f1f1f;
  1880. overflow-x: hidden;
  1881. }
  1882. .top {
  1883. width: 100%;
  1884. height: 95upx;
  1885. padding-top: 5upx;
  1886. background-color: #1f1f1f;
  1887. position: fixed;
  1888. top: 0px;
  1889. left: 0px;
  1890. z-index: 100;
  1891. }
  1892. .threeLine {
  1893. width: 50px;
  1894. height: 45px;
  1895. float: left;
  1896. }
  1897. .text {
  1898. width: calc(100% - 100px);
  1899. height: 45px;
  1900. float: left;
  1901. user-select: text;
  1902. -webkit-user-select: text;
  1903. -moz-user-select: text;
  1904. -ms-user-select: text;
  1905. color: silver;
  1906. line-height: 45px;
  1907. text-align: center;
  1908. font-size: 18px;
  1909. }
  1910. .notice {
  1911. width: 50px;
  1912. height: 45px;
  1913. float: left;
  1914. }
  1915. .plus {
  1916. width: 50px;
  1917. height: 45px;
  1918. float: right;
  1919. color: white;
  1920. font-size: 35px;
  1921. line-height: 45px;
  1922. text-align: center;
  1923. }
  1924. .time {
  1925. clear: both;
  1926. background-color: #242424;
  1927. margin-top: 50px;
  1928. width: 100%;
  1929. height: 30px;
  1930. /* float: left; */
  1931. }
  1932. .timeimageshizhong {
  1933. width: 30px;
  1934. height: 20px;
  1935. margin-top: 5px;
  1936. float: left;
  1937. }
  1938. .timeText {
  1939. width: 62%;
  1940. height: 30px;
  1941. float: left;
  1942. line-height: 30px;
  1943. font-size: 15px;
  1944. margin-left: 15px;
  1945. user-select: text;
  1946. -webkit-user-select: text;
  1947. -moz-user-select: text;
  1948. -ms-user-select: text;
  1949. color: silver;
  1950. }
  1951. .timeIcon {
  1952. width: 21%;
  1953. height: 30px;
  1954. float: left;
  1955. margin-left: 5px;
  1956. }
  1957. .timeIconImage {
  1958. width: 100%;
  1959. height: 25px;
  1960. margin-top: 1px;
  1961. }
  1962. .timeIconText {
  1963. width: 100%;
  1964. height: 25px;
  1965. text-align: center;
  1966. font-size: 12px;
  1967. }
  1968. .cardinstallgreenSecurity {
  1969. margin-left: 9px;
  1970. margin-top: 9px;
  1971. margin-bottom: 9px;
  1972. width: 30%;
  1973. height: 78px;
  1974. background: -webkit-linear-gradient(top, rgba(133, 145, 132, 0.1) 0%, rgba(66, 130, 61, 0.2) 100%);
  1975. border-radius: 5px;
  1976. float: left;
  1977. /* font-family: "STKaiti"; */
  1978. }
  1979. .cardinstalltitle {
  1980. width: 100%;
  1981. height: 40px;
  1982. text-align: center;
  1983. user-select: text;
  1984. -webkit-user-select: text;
  1985. -moz-user-select: text;
  1986. -ms-user-select: text;
  1987. font-size: 14px;
  1988. color: silver;
  1989. line-height: 40px;
  1990. float: left;
  1991. }
  1992. .cardinstallnumber {
  1993. /* font-weight: bold; */
  1994. width: 100%;
  1995. height: 40px;
  1996. text-align: center;
  1997. user-select: text;
  1998. -webkit-user-select: text;
  1999. -moz-user-select: text;
  2000. -ms-user-select: text;
  2001. color: silver;
  2002. font-size: 16px;
  2003. /* color: #449618; */
  2004. line-height: 40px;
  2005. }
  2006. .cardinstallgreenEquipment {
  2007. margin-right: 11px;
  2008. margin-top: 10px;
  2009. width: 30%;
  2010. height: 78px;
  2011. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(193, 94, 21, 0.2) 100%);
  2012. border-radius: 5px;
  2013. float: right;
  2014. /* font-family: "STKaiti"; */
  2015. }
  2016. .cardinstallgreen {
  2017. margin-left: 9px;
  2018. width: 30%;
  2019. height: 78px;
  2020. background: -webkit-linear-gradient(top, rgba(133, 145, 132, 0.1) 0%, rgba(66, 130, 61, 0.2) 100%);
  2021. border-radius: 5px;
  2022. float: left;
  2023. }
  2024. .cardinstallblue {
  2025. margin-top: 9px;
  2026. margin-left: 9px;
  2027. width: 30%;
  2028. height: 78px;
  2029. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(10, 82, 156, 0.2) 100%);
  2030. border-radius: 5px;
  2031. float: left;
  2032. }
  2033. .cardinstallblueright {
  2034. margin-right: 11px;
  2035. margin-top: 10px;
  2036. width: 30%;
  2037. height: 78px;
  2038. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(10, 82, 156, 0.2) 100%);
  2039. border-radius: 5px;
  2040. float: right;
  2041. }
  2042. .cardinstalltitlegreen {
  2043. width: 100%;
  2044. height: 25px;
  2045. margin-left: 37px;
  2046. user-select: text;
  2047. -webkit-user-select: text;
  2048. -moz-user-select: text;
  2049. -ms-user-select: text;
  2050. font-size: 14px;
  2051. color: silver;
  2052. line-height: 25px;
  2053. float: left;
  2054. }
  2055. .cardinstallnumbergreen {
  2056. width: 100%;
  2057. height: 25px;
  2058. text-align: center;
  2059. user-select: text;
  2060. -webkit-user-select: text;
  2061. -moz-user-select: text;
  2062. -ms-user-select: text;
  2063. font-size: 20px;
  2064. color: silver;
  2065. /* color: #449618; */
  2066. line-height: 25px;
  2067. float: left;
  2068. }
  2069. .cardinstallnumbergreenmin {
  2070. margin-left: 2px;
  2071. width: 45%;
  2072. height: 20px;
  2073. user-select: text;
  2074. -webkit-user-select: text;
  2075. -moz-user-select: text;
  2076. -ms-user-select: text;
  2077. font-size: 12px;
  2078. color: silver;
  2079. /* color: #449618; */
  2080. float: left;
  2081. }
  2082. .cardinstallnumbergreenmax {
  2083. /* font-weight: bold; */
  2084. margin-right: 2px;
  2085. width: 45%;
  2086. height: 20px;
  2087. user-select: text;
  2088. -webkit-user-select: text;
  2089. -moz-user-select: text;
  2090. -ms-user-select: text;
  2091. font-size: 12px;
  2092. color: silver;
  2093. /* color: #449618; */
  2094. float: right;
  2095. }
  2096. .greenMinText {
  2097. line-height: 20px;
  2098. float: right;
  2099. }
  2100. .greenMaxText {
  2101. line-height: 20px;
  2102. float: left;
  2103. }
  2104. .cardinstallnumberred {
  2105. width: 100%;
  2106. height: 25px;
  2107. text-align: center;
  2108. user-select: text;
  2109. -webkit-user-select: text;
  2110. -moz-user-select: text;
  2111. -ms-user-select: text;
  2112. font-size: 20px;
  2113. color: silver;
  2114. /* color: #E93131; */
  2115. line-height: 25px;
  2116. float: left;
  2117. }
  2118. .cardinstallnumberredmin {
  2119. margin-left: 2px;
  2120. width: 45%;
  2121. height: 20px;
  2122. user-select: text;
  2123. -webkit-user-select: text;
  2124. -moz-user-select: text;
  2125. -ms-user-select: text;
  2126. font-size: 12px;
  2127. color: silver;
  2128. /* color: #E93131; */
  2129. float: left;
  2130. }
  2131. .cardinstallnumberredmax {
  2132. margin-right: 2px;
  2133. width: 45%;
  2134. height: 20px;
  2135. user-select: text;
  2136. -webkit-user-select: text;
  2137. -moz-user-select: text;
  2138. -ms-user-select: text;
  2139. font-size: 12px;
  2140. color: silver;
  2141. /* color: #E93131; */
  2142. float: right;
  2143. }
  2144. .redMinText {
  2145. line-height: 20px;
  2146. float: right;
  2147. }
  2148. .redMaxText {
  2149. line-height: 20px;
  2150. float: left;
  2151. }
  2152. .electricityCard {
  2153. width: 100%;
  2154. height: 100px;
  2155. background-color: #242424;
  2156. /* height: 185px; */
  2157. float: left;
  2158. margin-top: 20rpx;
  2159. }
  2160. .speedPower {
  2161. width: 100%;
  2162. height: 180px;
  2163. background-color: #242424;
  2164. float: left;
  2165. margin-top: 20rpx;
  2166. }
  2167. .cardinstallgreenSpeed {
  2168. margin-top: 9px;
  2169. margin-left: 9px;
  2170. width: 46%;
  2171. height: 78px;
  2172. background: -webkit-linear-gradient(top, rgba(133, 145, 132, 0.1) 0%, rgba(66, 130, 61, 0.2) 100%);
  2173. border-radius: 5px;
  2174. float: left;
  2175. }
  2176. .cardinstallredSpeed {
  2177. margin-top: 8px;
  2178. margin-left: 9px;
  2179. width: 46%;
  2180. height: 78px;
  2181. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(193, 94, 21, 0.2) 100%);
  2182. border-radius: 5px;
  2183. float: left;
  2184. }
  2185. .cardinstalltitleRed {
  2186. width: 100%;
  2187. height: 25px;
  2188. margin-left: 45px;
  2189. user-select: text;
  2190. -webkit-user-select: text;
  2191. -moz-user-select: text;
  2192. -ms-user-select: text;
  2193. font-size: 14px;
  2194. color: silver;
  2195. line-height: 25px;
  2196. float: left;
  2197. }
  2198. .textWhitekuangSpeed {
  2199. color: white;
  2200. float: right;
  2201. margin-right: 70px;
  2202. }
  2203. .textWhitekuang {
  2204. color: white;
  2205. float: right;
  2206. margin-right: 85px;
  2207. }
  2208. .textWhite {
  2209. color: white;
  2210. float: left;
  2211. }
  2212. .textSilver {
  2213. user-select: text;
  2214. -webkit-user-select: text;
  2215. -moz-user-select: text;
  2216. -ms-user-select: text;
  2217. color: silver;
  2218. float: left;
  2219. }
  2220. .InformationCard {
  2221. margin-top: 10px;
  2222. width: 100%;
  2223. height: 70px;
  2224. background-color: #242424;
  2225. float: left;
  2226. }
  2227. .informationCardAll {
  2228. width: 100%;
  2229. margin-top: 10px;
  2230. height: 60px;
  2231. float: left;
  2232. }
  2233. .informationCardTextOne {
  2234. width: 100%;
  2235. height: 35px;
  2236. float: left;
  2237. }
  2238. .informationCardText {
  2239. margin-left: 15px;
  2240. width: 110px;
  2241. height: 35px;
  2242. line-height: 35px;
  2243. user-select: text;
  2244. -webkit-user-select: text;
  2245. -moz-user-select: text;
  2246. -ms-user-select: text;
  2247. color: silver;
  2248. font-size: 12px;
  2249. float: left;
  2250. }
  2251. .informationCardTextzj {
  2252. margin-left: 141px;
  2253. width: 100px;
  2254. height: 35px;
  2255. line-height: 35px;
  2256. user-select: text;
  2257. -webkit-user-select: text;
  2258. -moz-user-select: text;
  2259. -ms-user-select: text;
  2260. color: silver;
  2261. font-size: 12px;
  2262. float: left;
  2263. }
  2264. .informationCardTextTwo {
  2265. width: 100%;
  2266. height: 35px;
  2267. float: left;
  2268. user-select: text;
  2269. -webkit-user-select: text;
  2270. -moz-user-select: text;
  2271. -ms-user-select: text;
  2272. color: silver;
  2273. }
  2274. .informationCardText2 {
  2275. margin-left: 15px;
  2276. width: 110px;
  2277. height: 35px;
  2278. font-size: 12px;
  2279. line-height: 35px;
  2280. float: left;
  2281. }
  2282. .AccessCardNumber {
  2283. width: 30%;
  2284. height: 35px;
  2285. float: left;
  2286. line-height: 35px;
  2287. text-align: center;
  2288. font-size: 12px;
  2289. user-select: text;
  2290. -webkit-user-select: text;
  2291. -moz-user-select: text;
  2292. -ms-user-select: text;
  2293. color: silver;
  2294. }
  2295. .AccessCardText {
  2296. width: 30%;
  2297. height: 35px;
  2298. float: left;
  2299. line-height: 35px;
  2300. text-align: center;
  2301. font-size: 12px;
  2302. user-select: text;
  2303. -webkit-user-select: text;
  2304. -moz-user-select: text;
  2305. -ms-user-select: text;
  2306. color: silver;
  2307. }
  2308. .AccessCardimage {
  2309. margin-left: 5px;
  2310. width: 30%;
  2311. height: 35px;
  2312. float: left;
  2313. }
  2314. .interfaceCard {
  2315. margin-top: 10px;
  2316. width: 100%;
  2317. height: 85px;
  2318. background-color: #242424;
  2319. float: left;
  2320. }
  2321. .interfaceCardSmallTop {
  2322. margin-top: 5px;
  2323. width: 100%;
  2324. height: 35px;
  2325. float: left;
  2326. }
  2327. .interfaceCardSmall {
  2328. margin-left: 8px;
  2329. width: 30%;
  2330. height: 35px;
  2331. float: left;
  2332. }
  2333. .progressBarLeftText {
  2334. user-select: text;
  2335. -webkit-user-select: text;
  2336. -moz-user-select: text;
  2337. -ms-user-select: text;
  2338. color: silver;
  2339. font-size: 12px;
  2340. float: left;
  2341. margin-left: 5px;
  2342. }
  2343. .progressBarRightText {
  2344. user-select: text;
  2345. -webkit-user-select: text;
  2346. -moz-user-select: text;
  2347. -ms-user-select: text;
  2348. color: silver;
  2349. font-size: 12px;
  2350. float: right;
  2351. margin-right: 5px;
  2352. }
  2353. .progressBar {
  2354. margin-top: 10px;
  2355. width: 100%;
  2356. height: 115px;
  2357. background-color: #242424;
  2358. float: left;
  2359. }
  2360. .progressBarAll {
  2361. margin-left: 9px;
  2362. width: 355px;
  2363. height: 60px;
  2364. float: left;
  2365. }
  2366. .progressBarText {
  2367. text-align: center;
  2368. width: 50%;
  2369. height: 30px;
  2370. line-height: 30px;
  2371. user-select: text;
  2372. -webkit-user-select: text;
  2373. -moz-user-select: text;
  2374. -ms-user-select: text;
  2375. color: silver;
  2376. font-size: 12px;
  2377. float: left;
  2378. }
  2379. .progressBarOne {
  2380. width: 100%;
  2381. height: 30px;
  2382. float: left;
  2383. }
  2384. .progressBarLeft {
  2385. width: 25%;
  2386. height: 30px;
  2387. line-height: 30px;
  2388. user-select: text;
  2389. -webkit-user-select: text;
  2390. -moz-user-select: text;
  2391. -ms-user-select: text;
  2392. color: silver;
  2393. font-size: 12px;
  2394. float: left;
  2395. }
  2396. .progressBarRight {
  2397. width: 25%;
  2398. height: 30px;
  2399. user-select: text;
  2400. -webkit-user-select: text;
  2401. -moz-user-select: text;
  2402. -ms-user-select: text;
  2403. color: silver;
  2404. font-size: 12px;
  2405. line-height: 30px;
  2406. float: right;
  2407. }
  2408. /* 风电场卡片css */
  2409. .windStation {
  2410. clear: both;
  2411. width: calc(100% - 18px);
  2412. margin-left: 9px;
  2413. height: 300px;
  2414. color: silver;
  2415. /* background-color: #242424; */
  2416. }
  2417. .scrollWindStationCard {
  2418. white-space: nowrap;
  2419. }
  2420. .windStationCardContainer {
  2421. width: 1295px;
  2422. height: 350px;
  2423. }
  2424. .windStationCard {
  2425. width: 250px;
  2426. height: 100%;
  2427. margin-right: 9px;
  2428. float: left;
  2429. background-color: #242424;
  2430. }
  2431. .windStationTitle {
  2432. width: 90%;
  2433. height: 30px;
  2434. line-height: 30px;
  2435. font-size: 12px;
  2436. margin-left: 5px;
  2437. }
  2438. .powerAndSpeedContainer {
  2439. width: 100%;
  2440. height: 90px;
  2441. }
  2442. .powerAndSpeedRed {
  2443. margin-top: 8px;
  2444. margin-left: 2%;
  2445. margin-right: 2%;
  2446. width: 46%;
  2447. height: 37px;
  2448. line-height: 37px;
  2449. text-align: center;
  2450. font-size: 12px;
  2451. background: -webkit-linear-gradient(top, rgba(159, 131, 111, 0.1) 0%, rgba(193, 94, 21, 0.2) 100%);
  2452. border-radius: 5px;
  2453. float: left;
  2454. }
  2455. .powerAndSpeedRed span {
  2456. color: white;
  2457. }
  2458. .HQChart {
  2459. width: 100%;
  2460. height: 100px;
  2461. margin-top: 8px;
  2462. }
  2463. .UChartContainer {
  2464. width: 250px;
  2465. height: 150px;
  2466. margin-top: 8px;
  2467. }
  2468. .windStationUChart {
  2469. width: 250px;
  2470. height: 150px;
  2471. position: absolute;
  2472. }
  2473. .windStationQiun-charts {
  2474. width: 250px;
  2475. height: 150px;
  2476. background-color: #242424;
  2477. }
  2478. .windStationCharts {
  2479. width: 250px;
  2480. height: 150px;
  2481. background-color: #242424;
  2482. }
  2483. .UChartTitle {
  2484. position: relative;
  2485. top: -2px;
  2486. left: 2px;
  2487. font-size: 12px;
  2488. width: 100px;
  2489. }
  2490. .xTime {
  2491. position: relative;
  2492. top: 90px;
  2493. left: 222px;
  2494. font-size: 8px;
  2495. width: 30px;
  2496. }
  2497. .fanStatusContainer {
  2498. width: 100%;
  2499. height: 70px;
  2500. }
  2501. .fanStatus {
  2502. width: 32%;
  2503. height: 30px;
  2504. margin-top: 5px;
  2505. margin-right: 0.5%;
  2506. margin-left: 0.5%;
  2507. float: left;
  2508. }
  2509. .statusIcon {
  2510. width: 22px;
  2511. height: 30px;
  2512. margin-left: 3px;
  2513. float: left;
  2514. }
  2515. .fanStatus {
  2516. height: 30px;
  2517. line-height: 30px;
  2518. font-size: 12px;
  2519. }
  2520. .AffectedPowerText{
  2521. width: 55px;
  2522. height: 25px;
  2523. float: left;
  2524. margin-left: 2px;
  2525. line-height: 25px;
  2526. }
  2527. .AffectedPower{
  2528. margin-left: 11px;
  2529. width: 20%;
  2530. height: 25px;
  2531. float: left;
  2532. }
  2533. .performancePowerText{
  2534. width: 55px;
  2535. height: 25px;
  2536. float: left;
  2537. margin-left: 2px;
  2538. line-height: 25px;
  2539. }
  2540. .performancePower{
  2541. margin-left: 11px;
  2542. width: 20%;
  2543. height: 25px;
  2544. float: left;
  2545. }
  2546. .limitedPowerText{
  2547. width: 55px;
  2548. height: 25px;
  2549. float: left;
  2550. margin-left: 2px;
  2551. line-height: 25px;
  2552. }
  2553. .limitedPower{
  2554. margin-left: 9px;
  2555. width: 20%;
  2556. height: 25px;
  2557. float: left;
  2558. }
  2559. .maintenancePowerText{
  2560. width: 55px;
  2561. height: 25px;
  2562. float: left;
  2563. margin-left: 2px;
  2564. line-height: 25px;
  2565. }
  2566. .maintenancePower{
  2567. margin-left: 30px;
  2568. width: 20%;
  2569. height: 25px;
  2570. float: left;
  2571. }
  2572. .faultPowerText{
  2573. width: 55px;
  2574. height: 25px;
  2575. float: left;
  2576. margin-left: 2px;
  2577. line-height: 25px;
  2578. }
  2579. .faultPower{
  2580. margin-left: 30px;
  2581. width: 20%;
  2582. height: 25px;
  2583. float: left;
  2584. }
  2585. .powerGenerationText {
  2586. width: 30px;
  2587. height: 25px;
  2588. float: left;
  2589. margin-left: 2px;
  2590. line-height: 25px;
  2591. }
  2592. .powerGeneration {
  2593. margin-left: 30px;
  2594. width: 15%;
  2595. height: 25px;
  2596. float: left;
  2597. }
  2598. .directGenerationText {
  2599. width: 30px;
  2600. height: 25px;
  2601. float: left;
  2602. margin-left: 2px;
  2603. line-height: 25px;
  2604. }
  2605. .directGeneration {
  2606. width: 15%;
  2607. height: 25px;
  2608. float: left;
  2609. margin-left: 9px;
  2610. }
  2611. .choice {
  2612. width: 100%;
  2613. height: 80px;
  2614. float: left;
  2615. user-select: text;
  2616. -webkit-user-select: text;
  2617. -moz-user-select: text;
  2618. -ms-user-select: text;
  2619. color: silver;
  2620. font-size: 12px;
  2621. }
  2622. .speedPowerDiagram {
  2623. width: 100px;
  2624. height: 30px;
  2625. user-select: text;
  2626. -webkit-user-select: text;
  2627. -moz-user-select: text;
  2628. -ms-user-select: text;
  2629. color: silver;
  2630. float: left;
  2631. margin-top: 18px;
  2632. margin-left: 9px;
  2633. font-size: 11px;
  2634. }
  2635. .qiun-chart {
  2636. margin-top: 50px;
  2637. width: 750upx;
  2638. height: 400upx;
  2639. }
  2640. .chart {
  2641. width: 750upx;
  2642. height: 400upx;
  2643. }
  2644. </style>