index.vue 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055
  1. <template>
  2. <view>
  3. <view class="navbar-tit">{{title}}</view>
  4. <view class="statisticsChart" style="margin-top: 120rpx;margin-bottom: 0px">
  5. <view class="statisticsChart-head">
  6. <h4>充电统计</h4>
  7. <view class="navbar-screen ">
  8. <u-button text="月落" size="mini" class="headbotton1" style="border-radius: 10px 0 0 10px;"
  9. :type="current==1?'primary':'info'" @click="changesub(1)">按天</u-button>
  10. <u-button text="月落" size="mini" class="headbotton2" style="border-radius: 0 10px 10px 0;"
  11. :type="current==2?'primary':'info'" @click="changesub(2)">按月</u-button>
  12. </view>
  13. </view>
  14. </view>
  15. <view class="statisticsData">
  16. <view class="detailstableHead" style="
  17. padding-top: 1px;
  18. ">
  19. <view id="pieEcharts" style="min-height:240px;margin-top: 20px">
  20. </view>
  21. </view>
  22. <view class="detailstableHead" v-if="indexData&&false">
  23. <view class="detailsline">
  24. <view class="details-row details-row-head-1 ">
  25. <view class="span1">今日收入</view>
  26. <view class="span2">{{indexData.todayAmount?indexData.todayAmount.toFixed(2):0}}<span>元</span>
  27. </view>
  28. </view>
  29. <view class="details-row details-row-head-2">
  30. <view class="span1">今日利润</view>
  31. <view class="span2">{{indexData.todayProfit?indexData.todayProfit.toFixed(2):0}}<span>元</span>
  32. </view>
  33. </view>
  34. <view class="details-row details-row-head-3">
  35. <view class="span1">今日笔数</view>
  36. <view class="span2">{{indexData.todayEQNum?indexData.todayEQNum:0}}<span>笔</span></view>
  37. </view>
  38. </view>
  39. <view class="detailsline">
  40. <view class="details-row details-row-head-1 ">
  41. <view class="span1">昨日收入</view>
  42. <view class="span2">
  43. {{indexData.yesterdayAmount?indexData.yesterdayAmount.toFixed(2):0}}<span>元</span>
  44. </view>
  45. </view>
  46. <view class="details-row details-row-head-2">
  47. <view class="span1">昨日利润</view>
  48. <view class="span2">
  49. {{indexData.yesterdayProfit?indexData.yesterdayProfit.toFixed(2):0}}<span>元</span>
  50. </view>
  51. </view>
  52. <view class="details-row details-row-head-3">
  53. <view class="span1">昨日笔数</view>
  54. <view class="span2">{{indexData.yesterdayEQNum?indexData.yesterdayEQNum:0}}<span>笔</span></view>
  55. </view>
  56. </view>
  57. <view class="detailsline—bottom">
  58. <view class="details-row details-row-head-1">
  59. <view class="span1">本月收入</view>
  60. <view class="span2">
  61. {{indexData.thisMonthAmount?indexData.thisMonthAmount.toFixed(2):0}}<span>元</span>
  62. </view>
  63. </view>
  64. <view class="details-row details-row-head-2">
  65. <view class="span1">本月利润</view>
  66. <view class="span2">
  67. {{indexData.thisMonthProfit?indexData.thisMonthProfit.toFixed(2):0}}<span>元</span>
  68. </view>
  69. </view>
  70. <view class="details-row details-row-head-3">
  71. <view class="span1">本月笔数</view>
  72. <view class="span2">{{indexData.thisMonthEQNum?indexData.thisMonthEQNum:0}}<span>笔</span></view>
  73. </view>
  74. </view>
  75. </view>
  76. </view>
  77. <u-picker mode="time" v-model="popupShow" @confirm="changedate" :default-time="queryTime" :params="params">
  78. </u-picker>
  79. <u-picker mode="time" v-model="popupShow2" @confirm="changedate2" :default-time="queryTime2+'-01'"
  80. :params="params"></u-picker>
  81. <u-picker mode="selector" v-model="popupShow3" @confirm="changedate3" :range="stationList" range-key="name"
  82. :default-selector="[selectstationIndex]"></u-picker>
  83. <view class="statisticsChart chargingpile" v-if="indexData4">
  84. <view class="statisticsChart-head" style="margin-top: 40rpx;">
  85. <h4>充电枪运行情况</h4>
  86. </view>
  87. <view class="details detailstablepile" style="padding: 12px 0 12px 12px ;">
  88. <p>
  89. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="20" height="20" style=" vertical-align: bottom;border-color: rgba(0,0,0,0);border-width: bpx;border-style: undefined" filter="none">
  90. <g>
  91. <path fill="rgba(23.97,90.015,197.88,1)" d="M4 25.333v-20c0-0.736 0.597-1.333 1.333-1.333v0h12c0.736 0 1.333 0.597 1.333 1.333v0 10.667h2.667c1.473 0 2.667 1.194 2.667 2.667v0 5.333c0 0.736 0.597 1.333 1.333 1.333s1.333-0.597 1.333-1.333v0-9.333h-2.667c-0.736 0-1.333-0.597-1.333-1.333v0-4.781l-2.209-2.209 1.885-1.885 6.6 6.6c0.241 0.241 0.391 0.574 0.391 0.941 0 0 0 0.001 0 0.001v-0 12c0 2.209-1.791 4-4 4s-4-1.791-4-4v0-5.333h-2.667v6.667h1.333v2.667h-17.333v-2.667h1.333zM12 14.667v-5.333l-5.333 8h4v5.333l5.333-8h-4z" ></path>
  92. </g>
  93. </svg>
  94. <!-- <img style=" vertical-align: bottom;" src="@/assets/img/riFill-charging-pile-fill.svg"></img>
  95. --> 快(超)充枪<span>共</span>
  96. <span
  97. style="color:#000">{{indexData4.fastGunFaultNum+indexData4.fastGunFreeNum+indexData4.fastGunWorkNum}}</span>
  98. <span>支</span>
  99. </p>
  100. <view class="detailsline">
  101. <view class="details-row details-row-1" @click="indexDate4Ck(1,1)">
  102. <view class="span1"><span class="bot bot1"></span>在用<span
  103. class="bot1span">{{indexData4.fastGunWorkNum}}</span>支
  104. <u-icon name="arrow-right-s-line" custom-prefix="custom-icon" color="#b0b8c8" size="28" />
  105. </view>
  106. </view>
  107. <view class="details-row details-row-1" @click="indexDate4Ck(1,0)">
  108. <view class="span1"><span class="bot bot2"></span>空闲<span
  109. class="bot2span">{{indexData4.fastGunFreeNum}}</span>支
  110. <u-icon name="arrow-right-s-line" custom-prefix="custom-icon" color="#b0b8c8" size="28" />
  111. </view>
  112. </view>
  113. <view class="details-row details-row-1" @click="indexDate4Ck(1,99)">
  114. <view class="span1"><span class="bot bot3"></span>故障<span
  115. class="bot3span">{{indexData4.fastGunFaultNum}}</span>支
  116. <u-icon name="arrow-right-s-line" custom-prefix="custom-icon" color="#b0b8c8" size="28" />
  117. </view>
  118. </view>
  119. </view>
  120. <p style="margin-top: 16rpx;color:#00B962">
  121. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="20" height="20" style=" vertical-align: bottom;border-color: rgba(0,0,0,0);border-width: bpx;border-style: undefined" filter="none">
  122. <g>
  123. <path fill="#00B962" d="M4 25.333v-20c0-0.736 0.597-1.333 1.333-1.333v0h12c0.736 0 1.333 0.597 1.333 1.333v0 10.667h2.667c1.473 0 2.667 1.194 2.667 2.667v0 5.333c0 0.736 0.597 1.333 1.333 1.333s1.333-0.597 1.333-1.333v0-9.333h-2.667c-0.736 0-1.333-0.597-1.333-1.333v0-4.781l-2.209-2.209 1.885-1.885 6.6 6.6c0.241 0.241 0.391 0.574 0.391 0.941 0 0 0 0.001 0 0.001v-0 12c0 2.209-1.791 4-4 4s-4-1.791-4-4v0-5.333h-2.667v6.667h1.333v2.667h-17.333v-2.667h1.333zM12 14.667v-5.333l-5.333 8h4v5.333l5.333-8h-4z" ></path>
  124. </g>
  125. </svg>
  126. 慢充枪<span>共</span>
  127. <span
  128. style="color:#000">{{indexData4.slowGunFaultNum+indexData4.slowGunFreeNum+indexData4.slowGunWorkNum}}</span>
  129. <span>支</span>
  130. </p>
  131. <view class="detailsline—bottom">
  132. <view class="details-row details-row-1" @click="indexDate4Ck(2,1)">
  133. <view class="span1"><span class="bot bot1"></span>在用<span
  134. class="bot1span">{{indexData4.slowGunWorkNum}}</span>支
  135. <u-icon name="arrow-right-s-line" custom-prefix="custom-icon" color="#b0b8c8" size="28" />
  136. </view>
  137. </view>
  138. <view class="details-row details-row-1" @click="indexDate4Ck(2,0)">
  139. <view class="span1"><span class="bot bot2"></span>空闲<span
  140. class="bot2span">{{indexData4.slowGunFreeNum}}</span>支
  141. <u-icon name="arrow-right-s-line" custom-prefix="custom-icon" color="#b0b8c8" size="28" />
  142. </view>
  143. </view>
  144. <view class="details-row details-row-1" @click="indexDate4Ck(2,99)">
  145. <view class="span1"><span class="bot bot3"></span>故障<span
  146. class="bot3span">{{indexData4.slowGunFaultNum}}</span>支
  147. <u-icon name="arrow-right-s-line" custom-prefix="custom-icon" color="#b0b8c8" size="28" />
  148. </view>
  149. </view>
  150. </view>
  151. </view>
  152. </view>
  153. <view class="statisticsChart chargingpile" v-if="indexData4">
  154. <view class="statisticsChart-head" style="margin-top: 20rpx;">
  155. <h4>电单车充电桩运行情况</h4>
  156. </view>
  157. <view class="details detailstablepile" style="padding: 12px 0 12px 12px ;">
  158. <p style="color:#1677FF">
  159. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="20" height="20" style=" vertical-align: bottom;border-color: rgba(0,0,0,0);border-width: bpx;border-style: undefined" filter="none">
  160. <g>
  161. <path fill="#1677FF" d="M4 25.333v-20c0-0.736 0.597-1.333 1.333-1.333v0h12c0.736 0 1.333 0.597 1.333 1.333v0 10.667h2.667c1.473 0 2.667 1.194 2.667 2.667v0 5.333c0 0.736 0.597 1.333 1.333 1.333s1.333-0.597 1.333-1.333v0-9.333h-2.667c-0.736 0-1.333-0.597-1.333-1.333v0-4.781l-2.209-2.209 1.885-1.885 6.6 6.6c0.241 0.241 0.391 0.574 0.391 0.941 0 0 0 0.001 0 0.001v-0 12c0 2.209-1.791 4-4 4s-4-1.791-4-4v0-5.333h-2.667v6.667h1.333v2.667h-17.333v-2.667h1.333zM12 14.667v-5.333l-5.333 8h4v5.333l5.333-8h-4z" ></path>
  162. </g>
  163. </svg>
  164. 电单车充电桩<span>共</span>
  165. <span
  166. style="color:#000">{{indexData4.singleCarOnlineNum+indexData4.singleCarNotOnlineNum}}</span>
  167. <span>台</span>
  168. </p>
  169. <view class="detailsline">
  170. <view class="details-row details-row-1" @click="indexDate5Ck(1,1)">
  171. <view class="span1"><span class="bot bot1"></span>正常<span
  172. class="bot1span">{{indexData4.singleCarOnlineNum}}</span>台
  173. <u-icon name="arrow-right-s-line" custom-prefix="custom-icon" color="#b0b8c8" size="28" />
  174. </view>
  175. </view>
  176. <view class="details-row details-row-1" @click="indexDate5Ck(0,99)">
  177. <view class="span1"><span class="bot bot3"></span>故障<span
  178. class="bot3span">{{indexData4.singleCarNotOnlineNum}}</span>台
  179. <u-icon name="arrow-right-s-line" custom-prefix="custom-icon" color="#b0b8c8" size="28" />
  180. </view>
  181. </view>
  182. </view>
  183. </view>
  184. </view>
  185. <u-popup v-model="popupShow6" mode="bottom" border-radius="30" >
  186. <view class="indexData5content">
  187. <view class="contentTitle">
  188. 电单车充电桩{{indexData5Obj.type?'正常':'故障'}}明细
  189. </view>
  190. <scroll-view scroll-y="true" style="height: 520rpx;">
  191. <u-collapse style="padding-bottom: 30rpx;" >
  192. <u-collapse-item v-for="(item,index) in indexData5List" class="contentItem" v-show="item.deviceNum" :key="index" >
  193. <svg slot="title" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="20" height="20" style=" vertical-align: bottom;border-color: rgba(0,0,0,0);border-width: bpx;border-style: undefined" filter="none">
  194. <g>
  195. <path fill="#1677FF" d="M4 25.333v-20c0-0.736 0.597-1.333 1.333-1.333v0h12c0.736 0 1.333 0.597 1.333 1.333v0 10.667h2.667c1.473 0 2.667 1.194 2.667 2.667v0 5.333c0 0.736 0.597 1.333 1.333 1.333s1.333-0.597 1.333-1.333v0-9.333h-2.667c-0.736 0-1.333-0.597-1.333-1.333v0-4.781l-2.209-2.209 1.885-1.885 6.6 6.6c0.241 0.241 0.391 0.574 0.391 0.941 0 0 0 0.001 0 0.001v-0 12c0 2.209-1.791 4-4 4s-4-1.791-4-4v0-5.333h-2.667v6.667h1.333v2.667h-17.333v-2.667h1.333zM12 14.667v-5.333l-5.333 8h4v5.333l5.333-8h-4z" ></path>
  196. </g>
  197. </svg>
  198. <view slot="title" class="span1" >
  199. {{item.stationName}}
  200. </view>
  201. <view slot="title" >
  202. <span class="span2 color777">
  203. 共<span class="color333" >{{item.deviceNum}}</span>台
  204. </span>
  205. <span class="span3 color777">
  206. 通道数<span class="color333" >{{item.channelNum}}</span>
  207. </span>
  208. </view>
  209. <view style="padding-bottom: 30rpx;">
  210. <view class="contentBody" v-for="(gun,i) in item.device" :key="i">
  211. <view class="body1">{{gun.deviceName}}</view>
  212. <view class="body2" v-if="indexData5Obj.type">
  213. <view class="body2-0">在用<span class="body2-1">{{gun.useNum}}</span> </view>
  214. <view class="body2-2">| 空闲 {{gun.freeNum}}</view>
  215. </view>
  216. <view class="body3" v-else >故障</view>
  217. </view>
  218. </view>
  219. </u-collapse-item>
  220. </u-collapse>
  221. </scroll-view>
  222. <view class="confrim-btn">
  223. <u-button shape="square" type="primary"
  224. @click="popupShow6 = false;">关闭</u-button>
  225. </view>
  226. </view>
  227. </u-popup>
  228. <u-popup v-model="popupShow5" mode="bottom" border-radius="30" >
  229. <view class="indexData4content">
  230. <view class="contentTitle">
  231. {{indexData4Obj.typeName}}枪{{indexData4Obj.text}}明细
  232. </view>
  233. <scroll-view scroll-y="true" style="height: 520rpx;">
  234. <view style="padding-bottom: 30rpx;">
  235. <view class="contentItem" v-for="(item,index) in indexData4List" v-show="item.queryNum" :key="index" >
  236. <span class="span1">
  237. <img v-show="indexData4Obj.type==1&&item.category!='超充'"
  238. src="@/assets/img/riFill-charging-pile-fill.svg">
  239. <img v-show="indexData4Obj.type==1&&item.category=='超充'"
  240. src="@/assets/img/riFill-charging-pile-fill3.svg">
  241. <img v-show="indexData4Obj.type==2"
  242. src="@/assets/img/riFill-charging-pile-fill2.svg">
  243. </img>
  244. {{item.stationName}}</span>
  245. <span class="span2 color777">
  246. 共<span class="color333" >{{item.gunNum}}</span>支
  247. </span>
  248. <span class="span3 color333">
  249. {{indexData4Obj.text}}<span class="color777" :class="indexData4Obj.value" >{{item.queryNum}}</span>支
  250. </span>
  251. </view>
  252. </view>
  253. </scroll-view>
  254. <view class="confrim-btn">
  255. <u-button shape="square" type="primary"
  256. @click="popupShow5 = false;">关闭</u-button>
  257. </view>
  258. </view>
  259. </u-popup>
  260. <view class="statisticsChart">
  261. <view class="statisticsChart-head" style="margin-top: 40rpx;">
  262. <h4>流水统计</h4>
  263. <!-- <view class="navbar-screen" >
  264. {{startTime}}至{{endTime}}
  265. </view> -->
  266. <view class="navbar-screen" @click="popupShow = true" v-if="false">
  267. <span>{{showTime(queryTime)}}</span>
  268. <u-icon name="arrow-down" color="#b0b8c8" size="32" v-show="!popupShow"></u-icon>
  269. <u-icon name="arrow-up" color="#b0b8c8" size="32" v-show="popupShow"></u-icon>
  270. </view>
  271. </view>
  272. <u-calendar v-model="popupShow4" mode="range" @change="changedate4"></u-calendar>
  273. <view class="details detailstable">
  274. <p style="text-align: center; margin-bottom: 5px;" @click="popupShow4 = true">
  275. <img src="@/assets/img/riLine-calendar-todo-line.svg" align="absmiddle"
  276. style="height:40rpx;width: 40rpx ;">
  277. {{startTime}}至{{endTime}}
  278. <u-icon name="arrow-down" color="#b0b8c8" size="32" v-show="!popupShow4"></u-icon>
  279. <u-icon name="arrow-up" color="#b0b8c8" size="32" v-show="popupShow4"></u-icon>
  280. </p>
  281. <view class="detailsline detailslineHead" v-if="stationFlowList.length>1">
  282. <view class="details-row ">
  283. <view class="span1">总收入</view>
  284. <view class="span2">{{(allMoneySum).toFixed(2)}}<span>元</span></view>
  285. </view>
  286. <view class="details-row">
  287. <view class="span1">总利润<span>(服务费+月卡)</span></view>
  288. <view class="span2">{{(serviceMoneySum).toFixed(2)}}<span>元</span></view>
  289. </view>
  290. </view>
  291. <view v-if="stationFlowList.length==0"
  292. style="color: rgba(153, 153, 153, 1);font-size: 28rpx;text-align: center;margin-top: 16rpx;">
  293. 站点列表为空
  294. </view>
  295. <view v-if="stationFlowList.length&&stationFlowList.length>3"
  296. @click="gotoUrl('pagesFinance/statistics/list')"
  297. style="color: rgba(153, 153, 153, 1);font-size: 28rpx;text-align: center;margin-top: 16rpx;">
  298. 查看站点流水统计 <u-icon name="arrow-right-s-line" custom-prefix="custom-icon" color="#b0b8c8" size="28">
  299. </u-icon>
  300. </view>
  301. <u-collapse :headStyle="{
  302. color:'#101010',
  303. fontWeight: 'bold',
  304. padding:'24rpx 0',
  305. borderBottom: '1px solid #ededed'
  306. }" v-if="stationFlowList.length&&stationFlowList.length<=3">
  307. <u-collapse-item @change="changeitem" v-for="(item, index) in stationFlowList" :index="index"
  308. :key="index">
  309. <view slot="title" class="u-collapse-title u-line-1" style="width: 100%;">
  310. {{item.stationName}} <span style="float:right;"><span
  311. style="font-size: 24rpx;margin-right: 8rpx;font-weight: normal;">总收入</span>{{item.actualMoney.toFixed(2)}}元</span>
  312. </view>
  313. <!-- -->
  314. <view class="detailsline">
  315. <view class="details-row details-row-1">
  316. <view class="span1">电费</view>
  317. <view class="span2">{{item.elecMoney.toFixed(2)}}<span>元</span></view>
  318. </view>
  319. <view class="details-row">
  320. <view class="span1">服务费</view>
  321. <view class="span2">{{item.serviceMoney.toFixed(2)}}<span>元</span></view>
  322. </view>
  323. </view>
  324. <view class="detailsline">
  325. <view class="details-row details-row-1">
  326. <view class="span1">总用电量</view>
  327. <view class="span2">{{(item.eq/10000).toFixed(1)}}<span>度</span></view>
  328. </view>
  329. <view class="details-row">
  330. <view class="span1">充电枪数量</view>
  331. <view class="span2">快充{{item.fastNum}}/慢充{{item.slowNum}}</view>
  332. </view>
  333. </view>
  334. <view class="detailsline" v-if="item.fastNum&&item.slowNum">
  335. <view class="details-row details-row-1">
  336. <view class="span1">快充枪平均充电量</view>
  337. <view class="span2" v-if="item.fastNum">
  338. {{(item.averageFast/10000).toFixed(1)}}<span>度/枪/天</span>
  339. </view>
  340. <view class="span2" v-else>0<span>度/枪/天</span></view>
  341. </view>
  342. <view class="details-row">
  343. <view class="span1">慢充枪平均充电量</view>
  344. <view class="span2" v-if="item.slowNum">
  345. {{(item.averageSlow/10000).toFixed(1)}}<span>度/枪/天</span>
  346. </view>
  347. <view class="span2" v-else>0<span>度/枪/天</span></view>
  348. </view>
  349. </view>
  350. <view class="detailsline" v-if="item.fastNum&&item.slowNum">
  351. <view class="details-row details-row-1">
  352. <view class="span1">月卡收益</view>
  353. <view class="span2">{{(item.cardMoney).toFixed(2)}}<span>元</span></view>
  354. </view>
  355. <view class="details-row">
  356. </view>
  357. </view>
  358. <view v-if="item.fastNum&&item.slowNum"
  359. :style="item.slowDayNum==nowTime?'color: #ffffff;':'border-bottom: 1px solid #ededed;'">
  360. 查询范围内实际订单天数{{item.slowDayNum}}</view>
  361. </u-collapse-item>
  362. </u-collapse>
  363. </view>
  364. <view class="statisticsChart-head" style="margin-top: 40rpx;">
  365. <h4>站主/桩主收益统计</h4>
  366. <!-- <view class="navbar-screen" >
  367. {{startTime}}至{{endTime}}
  368. </view> -->
  369. <!-- <view class="navbar-screen" @click="popupShow2 = true"><span>筛选</span>
  370. <u-icon name="filter-2-fill" custom-prefix="custom-icon" color="#b0b8c8" size="32"></u-icon>
  371. </view> -->
  372. </view>
  373. <view class="details" v-if="indexData2&&indexData2.incomeMap">
  374. <view class="details-row2">
  375. <p @click="popupShow3 = true">{{selectstationName}}
  376. <u-icon name="arrow-down" color="#b0b8c8" size="32" v-show="!popupShow3"></u-icon>
  377. <u-icon name="arrow-up" color="#b0b8c8" size="32" v-show="popupShow3"></u-icon>
  378. </p>
  379. <p @click="popupShow2 = true">
  380. {{showTime(queryTime2)}}
  381. <u-icon name="arrow-down" color="#b0b8c8" size="32" v-show="!popupShow2"></u-icon>
  382. <u-icon name="arrow-up" color="#b0b8c8" size="32" v-show="popupShow2"></u-icon>
  383. </p>
  384. </view>
  385. <view class="details-row">
  386. <p>充电总收入</p>
  387. <span>{{(indexData2.incomeMap.chargingAmount).toFixed(2)}}元</span>
  388. </view>
  389. <view class="details-row">
  390. <p>站主/桩主收入</p>
  391. <span>{{indexData2.incomeMap.incomeAmount.toFixed(2)}}元</span>
  392. </view>
  393. <view class="details-row">
  394. <p>预估用电度数</p>
  395. <span>{{(indexData2.incomeMap.electricQuantity/10000).toFixed(1)}}度</span>
  396. </view>
  397. <view class="details-row">
  398. <p>预估电费</p>
  399. <span>{{indexData2.incomeMap.costAmount.toFixed(2)}}元</span>
  400. </view>
  401. <view class="details-row">
  402. <p>服务费预估收益</p>
  403. <span>{{indexData2.incomeMap.serviceAmount.toFixed(2)}}元</span>
  404. </view>
  405. <view class="details-row">
  406. <p>月卡收益</p>
  407. <span>{{indexData2.incomeMap.cardIncomeAmount.toFixed(2)}}元</span>
  408. </view>
  409. <view class="details-row">
  410. <p>预估总利润</p>
  411. <span>{{(indexData2.incomeMap.serviceAmount+indexData2.incomeMap.cardIncomeAmount).toFixed(2)}}元</span>
  412. </view>
  413. </view>
  414. </view>
  415. <Tabbar :current="0" ref="tabbarMain"></Tabbar>
  416. <!-- <u-tabbar v-model="current" :list="tabbarList" active-color="#185ac6"></u-tabbar>
  417. -->
  418. </view>
  419. </template>
  420. <script>
  421. import Tabbar from '@/components/TabbarFinance.vue'
  422. import * as API from '@/apis/finance.js'
  423. import * as echarts from "echarts";
  424. //require("@/apis/echarts-5-3.min.js")
  425. //import * as echarts from "@/apis/echarts-5-3.min.js";
  426. import {
  427. daysDistance,
  428. beforeTimeStamp,
  429. currentTimeStamp,
  430. parseUnixTime,
  431. newDate
  432. } from '@/utils'
  433. export default {
  434. data() {
  435. return {
  436. popupShow3: false,
  437. params: {
  438. year: true,
  439. month: true,
  440. day: false,
  441. hour: false,
  442. minute: false,
  443. second: false
  444. },
  445. indexData4List:[],
  446. indexData4Obj:{},
  447. indexData5List:[],
  448. indexData5Obj:{},
  449. headitemby: "",
  450. isinit: true,
  451. form: {},
  452. form2: {},
  453. selecttype: "",
  454. selectstationId: "",
  455. selectdeviceNo: "",
  456. popupShow2: false,
  457. popupShow: false,
  458. popupShow4: false,
  459. popupShow5: false,
  460. popupShow6: false,
  461. nowTime: 0,
  462. selectstationId2: "",
  463. selectstationIndex: 0,
  464. selectstationName: "",
  465. info: {},
  466. title: "",
  467. showdate: false,
  468. showdate2: false,
  469. queryTime: "",
  470. queryTime2: "",
  471. indexData: {},
  472. indexData3: null,
  473. indexData2: null,
  474. indexData4: null,
  475. type_head: '1',
  476. startDate_head: '',
  477. changeitemBl: false,
  478. myChart: null,
  479. myChartReady: false,
  480. myChartTime: false,
  481. subsection: [{
  482. name: '金额'
  483. },
  484. {
  485. name: '笔数'
  486. }
  487. ],
  488. stationFlowList: [],
  489. serviceMoneySum: 0,
  490. allMoneySum: 0,
  491. stationList: [],
  492. stationListSon: [],
  493. tabbarList: [{
  494. iconPath: "bar-chart-box-fill",
  495. selectedIconPath: "bar-chart-box-fill",
  496. text: '统计',
  497. count: 0,
  498. isDot: true,
  499. customIcon: true,
  500. },
  501. {
  502. iconPath: "article-fill",
  503. selectedIconPath: "article-fill",
  504. text: '明细',
  505. midButton: true,
  506. customIcon: true,
  507. },
  508. {
  509. iconPath: "account-pin-box-fill",
  510. selectedIconPath: "account-pin-box-fill",
  511. text: '我的',
  512. count: 0,
  513. isDot: false,
  514. customIcon: true,
  515. },
  516. ],
  517. endTime: '',
  518. endTime2: '',
  519. current: 1,
  520. background: {
  521. background: 'none'
  522. },
  523. value: '',
  524. type: 'select',
  525. show: false,
  526. border: true,
  527. step: 0,
  528. stepname: '',
  529. startTime: '',
  530. stepid: 0,
  531. }
  532. },
  533. onShow() {
  534. if (this.$refs.tabbarMain) {
  535. this.$refs.tabbarMain.setcount(0);
  536. }
  537. API.homeChargingGunStatus().then((res) => {
  538. this.indexData4 = res.data;
  539. }).catch(error => {
  540. uni.showToast({
  541. title: error
  542. })
  543. })
  544. },
  545. onLoad() {
  546. this.info = this.carhelp.getPersonInfo()
  547. this.title = this.info.merchantAccountName
  548. },
  549. components: {
  550. Tabbar
  551. },
  552. onReady() {
  553. var date = new Date();
  554. this.nowTime = 7
  555. this.queryTime = parseUnixTime(currentTimeStamp(), '{y}-{m}');
  556. this.queryTime2 = parseUnixTime(currentTimeStamp(), '{y}-{m}'),
  557. this.startDate_head = parseUnixTime(beforeTimeStamp(30), '{y}-{m}-{d}')
  558. this.startTime = parseUnixTime(beforeTimeStamp(6), '{y}-{m}-{d}')
  559. this.endTime = parseUnixTime(beforeTimeStamp(0), '{y}-{m}-{d}')
  560. //this.startTime2 = parseUnixTime(beforeTimeStamp(6), '{y}-{m}-{d}')
  561. this.endTime2 = parseUnixTime(currentTimeStamp(), '{y}-{m}-{d}')
  562. this.getStation()
  563. },
  564. computed: {
  565. // startTime(){
  566. // return this.queryTime+'-1'
  567. // },
  568. startTime2() {
  569. return this.queryTime2 + '-01'
  570. },
  571. },
  572. methods: {
  573. indexDate5Ck(t,status) {
  574. //单车充电
  575. API.homeChargingGunStatus().then((res) => {
  576. this.indexData4 = res.data;
  577. }).catch(error => {
  578. uni.showToast({
  579. title: error
  580. })
  581. })
  582. this.indexData5Obj.type=t
  583. API.homeChargingSingleCarStatusDetail({
  584. status:status
  585. }).then((res) => {
  586. this.popupShow6=true;
  587. this.indexData5List = res.data.stationList;
  588. for(var i in this.indexData5List){
  589. var item=this.indexData5List[i];
  590. if(item.deviceNum){
  591. this.popupShow6 = true
  592. break
  593. }
  594. this.popupShow6 = false;
  595. }
  596. if(!this.popupShow6 ){
  597. uni.showToast({
  598. title:"电单车充电桩"+(t?"正常":"故障")+"0支"
  599. })
  600. }
  601. }).catch(error => {
  602. uni.showToast({
  603. title: error
  604. })
  605. })
  606. },
  607. indexDate4Ck(c, t) {
  608. //汽车充电
  609. API.homeChargingGunStatus().then((res) => {
  610. this.indexData4 = res.data;
  611. }).catch(error => {
  612. uni.showToast({
  613. title: error
  614. })
  615. })
  616. this.indexData4Obj.type=c
  617. if(c==1){
  618. this.indexData4Obj.typeName="快(超)充"
  619. }
  620. if(c==2){
  621. this.indexData4Obj.typeName="慢充"
  622. }
  623. if(t==1){
  624. this.indexData4Obj.text="在用"
  625. this.indexData4Obj.value="bot1span"
  626. }
  627. if(t==0){
  628. this.indexData4Obj.text="空闲"
  629. this.indexData4Obj.value="bot2span"
  630. }
  631. if(t==99){
  632. this.indexData4Obj.text="故障"
  633. this.indexData4Obj.value="bot3span"
  634. }
  635. API.homeChargingGunStatusDetail({
  636. type:c,
  637. status:t
  638. }).then((res) => {
  639. this.indexData4List = res.data.stationList;
  640. for(var i in this.indexData4List){
  641. var item=this.indexData4List[i];
  642. if(item.queryNum){
  643. this.popupShow5 = true
  644. break
  645. }
  646. this.popupShow5 = false;
  647. }
  648. if(!this.popupShow5 ){
  649. uni.showToast({
  650. title:this.indexData4Obj.typeName+"枪"+ this.indexData4Obj.text+"0支"
  651. })
  652. }
  653. }).catch(error => {
  654. uni.showToast({
  655. title: error
  656. })
  657. })
  658. },
  659. changeitem(e) {
  660. if (this.stationFlowList.length > 1 && e.index == this.stationFlowList.length - 1 && e.show) {
  661. this.changeitemBl = true;
  662. } else {
  663. this.changeitemBl = false;
  664. }
  665. },
  666. showTime(name) {
  667. if (!name) {
  668. return ''
  669. }
  670. return name.replace('-', '年') + '月';
  671. },
  672. getStation(bl) {
  673. API.stationList().then((res) => {
  674. this.stationList = res.data.stationList
  675. this.stationList.unshift({
  676. id: '',
  677. name: "全部站点"
  678. })
  679. this.selectstationName = "全部站点"
  680. this.stationListSon = res.data.deviceList
  681. this.getDataHome2()
  682. this.getData()
  683. this.getData2()
  684. }).catch(error => {
  685. uni.showToast({
  686. title: error
  687. })
  688. })
  689. },
  690. resetBtn() {
  691. this.nowTime = 7
  692. this.startTime = parseUnixTime(beforeTimeStamp(6), '{y}-{m}-{d}')
  693. this.endTime = parseUnixTime(currentTimeStamp(), '{y}-{m}-{d}')
  694. this.selecttype = ""
  695. this.selectstationId = ""
  696. this.selectdeviceNo = ""
  697. this.form = {
  698. type: this.selecttype,
  699. stationId: this.selectstationId,
  700. deviceNo: this.selectdeviceNo,
  701. };
  702. this.popupShow = false;
  703. this.list = [];
  704. this.getData()
  705. },
  706. okbtn() {
  707. this.popupShow = false;
  708. this.form = {
  709. type: this.selecttype,
  710. stationId: this.selectstationId,
  711. deviceNo: this.selectdeviceNo,
  712. };
  713. this.list = [];
  714. this.getData()
  715. },
  716. resetBtn2() {
  717. this.startTime2 = parseUnixTime(beforeTimeStamp(6), '{y}-{m}-{d}')
  718. this.endTime2 = parseUnixTime(currentTimeStamp(), '{y}-{m}-{d}')
  719. this.selectstationId2 = ""
  720. this.form2 = {
  721. stationId: this.selectstationId2,
  722. };
  723. this.popupShow2 = false;
  724. this.getData2()
  725. },
  726. okbtn2() {
  727. this.popupShow2 = false;
  728. this.form2 = {
  729. stationId: this.selectstationId2,
  730. };
  731. this.getData2()
  732. },
  733. getDataHome2() {
  734. var endtime = parseUnixTime(currentTimeStamp(), '{y}-{m}-{d}')
  735. API.homeHeadChargingStatistics({
  736. type: this.type_head,
  737. startDate: this.startDate_head,
  738. endDate: endtime
  739. }).then((res) => {
  740. this.indexData3 = res.data;
  741. uni.hideLoading()
  742. // if( this.info.accountType==3){
  743. // //getPie2
  744. // this.getPie2()
  745. // }else{
  746. // //getPie
  747. // this.getPie()
  748. // }
  749. this.getPie(this.info.accountType)
  750. }).catch(error => {
  751. uni.showToast({
  752. title: error
  753. })
  754. })
  755. },
  756. // getDataHome() {
  757. // API.homeHeadStatistics().then((res) => {
  758. // this.indexData = res.data;
  759. // }).catch(error => {
  760. // uni.showToast({
  761. // title: error
  762. // })
  763. // })
  764. // },
  765. getData() {
  766. this.form.startDate = this.startTime,
  767. this.form.endDate = this.endTime
  768. API.homeFlowStatistics(this.form).then((res) => {
  769. this.stationFlowList = res.data.stationFlowList;
  770. this.nowTime = daysDistance(this.startTime, this.endTime) + 1;
  771. this.serviceMoneySum = 0;
  772. this.allMoneySum = 0;
  773. for (var i in this.stationFlowList) {
  774. var item = this.stationFlowList[i];
  775. this.allMoneySum += item.actualMoney
  776. this.serviceMoneySum += item.serviceMoney
  777. this.serviceMoneySum += item.cardMoney
  778. }
  779. }).catch(error => {
  780. uni.showToast({
  781. title: error
  782. })
  783. })
  784. },
  785. getData2() {
  786. uni.showLoading({
  787. title: "加载中",
  788. mask: true,
  789. })
  790. this.form2.startDate = this.startTime2,
  791. this.form2.endDate = this.endTime2
  792. API.homeIncomeStatistics(this.form2).then((res) => {
  793. this.indexData2 = res.data
  794. uni.hideLoading()
  795. }).catch(error => {
  796. uni.showToast({
  797. title: error
  798. })
  799. })
  800. },
  801. changesub(e) {
  802. this.current = e
  803. this.type_head = e;
  804. uni.showLoading({
  805. title: "加载中",
  806. mask: true,
  807. })
  808. if (e == 1) {
  809. this.startDate_head = parseUnixTime(beforeTimeStamp(30), '{y}-{m}-{d}')
  810. } else {
  811. this.startDate_head = parseUnixTime(beforeTimeStamp(365), '{y}-{m}-01')
  812. }
  813. // this.getPie()
  814. this.getDataHome2()
  815. },
  816. changedate4(e) {
  817. this.startTime = e.startDate
  818. this.endTime = e.endDate
  819. this.okbtn()
  820. },
  821. changedate3(e) {
  822. var index = e[0];
  823. var obj = this.stationList[index];
  824. this.selectstationId2 = obj.id;
  825. this.selectstationIndex = index;
  826. this.selectstationName = obj.name;
  827. this.okbtn2()
  828. },
  829. changedate(e) {
  830. this.queryTime = e.year + '-' + e.month;
  831. this.startTime = e.year + '-' + e.month + '-01';
  832. if (e.month == '12') {
  833. this.endTime = (e.year) + "-12-31"
  834. } else {
  835. var b = e.year + '/' + (parseInt(e.month) + 1) + '/1';
  836. var a = beforeTimeStamp(1, b);
  837. this.endTime = parseUnixTime(a, '{y}-{m}-{d}')
  838. }
  839. this.okbtn()
  840. },
  841. changedate2(e) {
  842. this.queryTime2 = e.year + '-' + e.month;
  843. if (e.month == '12') {
  844. this.endTime2 = (e.year) + "-12-31"
  845. } else {
  846. var b = e.year + '/' + (parseInt(e.month) + 1) + '/1';
  847. var a = beforeTimeStamp(1, b);
  848. this.endTime2 = parseUnixTime(a, '{y}-{m}-{d}')
  849. }
  850. this.okbtn2()
  851. },
  852. getPie(type) {
  853. //true 正常版本 false 个人版本
  854. var typebl = !(this.info.accountType == 3);
  855. var dataInterval = null;
  856. if (typebl) {
  857. if (this.type_head == 1) {
  858. dataInterval = [0, 25, 50, 75, 100,
  859. 125, 150, 200, 250, 300, 400, 500,
  860. 600, 800, 1000, 1200, 1400, 1600, 1800,
  861. 2000, 2300, 2600, 2800,
  862. 3000, 3400, 3800, 4200,
  863. 4800, 5200, 5600, 6000, 6500, 7000, 7500, 8000, 9000, 10000, 12000, 14000, 16000, 20000,
  864. 30000, 999999
  865. ];
  866. } else {
  867. dataInterval = [0, 500, 1000, 2000, 5000, 10000, 20000, 30000, 40000, 50000, 60000, 70000, 80000,
  868. 90000, 100000, 120000, 140000, 160000, 180000, 200000, 250000, 300000, 400000, 500000,
  869. 999999
  870. ];
  871. }
  872. }
  873. this.headitemby = "";
  874. var showkey = "";
  875. var getData = this.indexData3.graphMap;
  876. for (var i in getData) {
  877. var item = getData[i]
  878. item.todayEQAmount2 = (item.todayEQAmount / 10000)
  879. }
  880. this.indexData3.graphMap = getData
  881. //var unit = this.current ? '笔' : '元'
  882. var colorName = "#333"
  883. // this.showlist1 = ['收入', '利润', '次数','新电途'];
  884. var showlistColor = ['#5872c0', '#de6e6a', '#f3c96b', '#69be8d', '#c661b4'];
  885. // this.showlist1 = ['收入', '利润', '电量', '新电途'];
  886. // var sz2 = ['todayAmount', 'todayProfit', 'todayEQAmount2', 'todayXDTAmount'];
  887. this.showlist1 = ['收入', '利润', '电量', '新电途', '快电'];
  888. var sz2 = ['todayAmount', 'todayProfit', 'todayEQAmount2', 'todayXDTAmount','todayKDAmount'];
  889. var zLevel = [20, 40, 10, 30,9];
  890. //var sz2 = ['todayAmount', 'todayProfit', 'todayEQNum','todayXDTAmount'];
  891. if (!this.myChart) {
  892. this.myChart = echarts.init(document.getElementById('pieEcharts'));
  893. this.myChart.on("dataZoom", (res) => {
  894. showkey = "";
  895. this.headitemby = "";
  896. });
  897. }
  898. this.myChart.clear();
  899. //
  900. var timelist = []
  901. for (var i in getData) {
  902. if (this.type_head == 1) {
  903. timelist.push(i.substring(5))
  904. } else {
  905. timelist.push(i)
  906. }
  907. }
  908. var list = [];
  909. for (var j in this.showlist1) {
  910. var ap = {
  911. name: this.showlist1[j],
  912. type: 'line',
  913. lineStyle: {
  914. color: showlistColor[j]
  915. },
  916. itemStyle: {
  917. color: showlistColor[j]
  918. },
  919. z: zLevel[j],
  920. // label: {
  921. // show: true,
  922. // position: 'top'
  923. // },
  924. data: []
  925. }
  926. if (this.type_head == 1) {
  927. ap.symbolSize = 3;
  928. }
  929. var bl = true;
  930. for (var i in getData) {
  931. //var time=this.queryDate.replace("-","/").replace("-","/")
  932. //time+' '+i
  933. var obj = getData[i][sz2[j]];
  934. //**********
  935. if (typebl) {
  936. const min_v = Math.max(...dataInterval.filter((v) => v <= obj));
  937. // 2.寻找在数据间隔里大于amount的最小值
  938. const max_v = Math.min(...dataInterval.filter((v) => v > obj));
  939. // 3.寻找 min_v 所在的下标
  940. const index = dataInterval.findIndex((v) => v === min_v);
  941. // 4.计算该amount在y轴上应该展示的位置
  942. const y_value = ((obj - min_v) / (max_v - min_v)) * 10 + index * 10;
  943. obj = y_value;
  944. }
  945. //**********
  946. //'todayAmount', 'todayProfit', 'todayEQNum'
  947. // if (bl&&getData[i].todayAmount == 0 && getData[i].todayProfit == 0 &&getData[i].todayEQNum == 0) {
  948. // //&& &&getData[i].todayEQNum == 0
  949. // continue;
  950. // }
  951. bl = false;
  952. var time = i
  953. if (this.type_head == 1) {
  954. //time = i.substring(5)
  955. } else {
  956. }
  957. ap.data.push([time, obj]);
  958. }
  959. if (bl) {
  960. ap.data = [];
  961. for (var i in getData) {
  962. //var time=this.queryDate.replace("-","/").replace("-","/")
  963. //time+' '+i
  964. var obj = getData[i][sz2[j]];
  965. var time = i
  966. if (this.type_head == 1) {
  967. time = i.substring(5)
  968. } else {
  969. }
  970. // if(j!=2){
  971. // obj=obj.toFixed(2)
  972. // }
  973. ap.data.push([time, obj]);
  974. }
  975. }
  976. list.push(ap)
  977. }
  978. var yshow = 0;
  979. // 指定图表的配置项和数据
  980. var option = {
  981. tooltip: {
  982. formatter: (value) => {
  983. //getPie
  984. var name = value[0].data[0];
  985. var info = getData[name];
  986. var style = "float: right;margin-left: 3px;"
  987. var text1 = ""
  988. for (var i in value) {
  989. var u = "元"
  990. var num = info[sz2[value[i].seriesIndex]];
  991. if(!num){
  992. num=0;
  993. }
  994. if (value[i].seriesName == '电量') {
  995. u = '度'
  996. num = num.toFixed(2)
  997. } else if (value[i].seriesName == '次数') {
  998. u = '次'
  999. } else {
  1000. num = num.toFixed(2)
  1001. }
  1002. text1 += "<p>" + value[i].marker + value[i].seriesName + '<span style="' + style +
  1003. '">' + num + u + '</span></p>';
  1004. if (this.type_head == 2) {
  1005. console.log(i,this.queryTime2)
  1006. if (value[i].seriesName == "收入") {
  1007. if(name!=this.queryTime2){
  1008. if(info.yoyNum!=0){
  1009. text1 += "<p>" + value[i].marker + "收入同比"+(info.yoyNum<0?'减少':'增长') + '<span style="' + style +
  1010. '">' + (info.yoyNum<0?info.yoyNum*-1:info.yoyNum) + '%' + '</span></p>';
  1011. }else{
  1012. text1 += "<p>" + value[i].marker + "收入同比"+ '<span style="' + style +
  1013. '">' +'无数据' + '</span></p>';
  1014. }
  1015. if(info.qoqNum!=0){
  1016. text1 += "<p>" + value[i].marker + "收入环比" +(info.qoqNum<0?'减少':'增长') + '<span style="' + style +
  1017. '">' + (info.qoqNum<0?info.qoqNum*-1:info.qoqNum) + '%' + '</span></p>';
  1018. }else{
  1019. text1 += "<p>" + value[i].marker + "收入环比"+ '<span style="' + style +
  1020. '">' +'无数据' + '</span></p>';
  1021. }
  1022. }
  1023. }
  1024. }
  1025. }
  1026. if (this.type_head == 1) {
  1027. //time = i.substring(5)
  1028. var weeks = new Array("星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六");
  1029. var now = newDate(name);
  1030. var day = now.getDay();
  1031. var week = weeks[day];
  1032. return `<p>${name} ${week}</p>` + text1
  1033. } else {
  1034. return `<p>${name}</p>` + text1
  1035. }
  1036. },
  1037. trigger: 'axis',
  1038. borderColor: "#F0F0F0",
  1039. borderWidth: 1,
  1040. backgroundColor: "#ffffff",
  1041. textStyle: {
  1042. color: "#333"
  1043. }
  1044. },
  1045. legend: {
  1046. itemGap :1,
  1047. data: this.showlist1,
  1048. textStyle: {
  1049. color: "#333"
  1050. }
  1051. },
  1052. grid: {
  1053. top: '16%',
  1054. left: '3%',
  1055. right: '8%',
  1056. bottom: '8%',
  1057. containLabel: true
  1058. },
  1059. xAxis: {
  1060. //type: 'value',
  1061. type: 'category',
  1062. splitNumber: 4,
  1063. boundaryGap: false,
  1064. axisLabel: {
  1065. formatter: (value) => {
  1066. if (this.headitemby == "") {
  1067. this.headitemby = value
  1068. }
  1069. var i = 0
  1070. if (this.type_head == 1) {
  1071. i = 0;
  1072. } else {
  1073. i = 3;
  1074. }
  1075. var showvalue = "";
  1076. var key = value.substring(0, 8 - i);
  1077. if (showkey == "" || value == this.headitemby) {
  1078. showkey = key
  1079. showvalue = value
  1080. showvalue = value.substring(5 - i)
  1081. } else {
  1082. if (key != showkey) {
  1083. showkey = key
  1084. showvalue = value
  1085. showvalue = value.substring(5 - i)
  1086. } else {
  1087. showvalue = value.substring(8 - i)
  1088. }
  1089. }
  1090. return showvalue.replace("-", ".");
  1091. },
  1092. textStyle: {
  1093. color: "#333"
  1094. }
  1095. },
  1096. axisLine: {
  1097. show: true,
  1098. lineStyle: {
  1099. color: "#333"
  1100. }
  1101. },
  1102. },
  1103. yAxis: {
  1104. type: 'value',
  1105. // name: '单位('+this.typeN+')',
  1106. axisLabel: {
  1107. formatter: (v, i) => {
  1108. //console.log(v,i)
  1109. if (dataInterval == null) {
  1110. return v
  1111. }
  1112. if (i == 0) {
  1113. yshow = 0
  1114. return 0
  1115. }
  1116. if (yshow != parseInt(v / 10)) {
  1117. yshow = parseInt(v / 10);
  1118. return dataInterval[parseInt(v / 10)]
  1119. } else {
  1120. return ''
  1121. }
  1122. },
  1123. textStyle: {
  1124. color: "#333"
  1125. }
  1126. },
  1127. axisLine: {
  1128. show: true,
  1129. lineStyle: {
  1130. color: "#333"
  1131. }
  1132. },
  1133. },
  1134. series: list
  1135. };
  1136. // option.dataZoom = [{
  1137. // type: 'inside',
  1138. // start: 0,
  1139. // end: 100
  1140. // },
  1141. // {
  1142. // start: 0,
  1143. // end: 100
  1144. // }
  1145. // ]
  1146. if (this.type_head == 1) {
  1147. } else {
  1148. //timelist.push(i)
  1149. }
  1150. //console.log(option)
  1151. // 使用刚指定的配置项和数据显示图表。
  1152. this.myChart.setOption(option);
  1153. }
  1154. }
  1155. }
  1156. </script>
  1157. <style>
  1158. page {
  1159. background: url(../../assets/img/index_header_bg.png) no-repeat top center #f7f7f7;
  1160. background-size: 100%;
  1161. }
  1162. </style>
  1163. <style lang="scss" scoped>
  1164. .indexData5content {
  1165. padding: 40rpx 20rpx;
  1166. .contentTitle{
  1167. color:#333333;
  1168. font-size: 40rpx;
  1169. text-align: center;
  1170. font-weight: bold;
  1171. margin-bottom: 8px;
  1172. }
  1173. .contentBody{
  1174. color: #777777 ;
  1175. font-size: 28rpx;
  1176. display: flex;
  1177. justify-content: space-between;
  1178. flex-direction: row;
  1179. padding: 0 16rpx;
  1180. margin-bottom: 16rpx;
  1181. .body1{
  1182. color:#333333;
  1183. margin-left: 20rpx;
  1184. }
  1185. .body2{
  1186. display: flex;
  1187. .body2-0{
  1188. width: 110rpx;
  1189. }
  1190. .body2-1{
  1191. padding: 0 8rpx;
  1192. color: #00B962;
  1193. }
  1194. .body2-2{
  1195. width: 120rpx;
  1196. }
  1197. }
  1198. .body3{
  1199. padding: 0 8rpx;
  1200. color:#FF3D00 ;
  1201. }
  1202. }
  1203. .contentItem{
  1204. border-bottom: 1px solid #ededed;
  1205. // margin: 16rpx;
  1206. // padding:12rpx;
  1207. img,svg{
  1208. vertical-align: bottom;
  1209. height: 44rpx;
  1210. //margin-right: 8rpx;
  1211. }
  1212. .span1{
  1213. text-align: left;
  1214. font-weight: bold;
  1215. font-size: 36rpx;
  1216. width: 310rpx;
  1217. overflow: hidden;
  1218. text-overflow: ellipsis;
  1219. white-space: nowrap;
  1220. }
  1221. .color777{
  1222. color: #777777;
  1223. }
  1224. .color333{
  1225. color: #333333;
  1226. }
  1227. .span2{
  1228. border-right: 1px solid #ededed;
  1229. width: 120rpx;
  1230. padding: 0 8rpx;
  1231. span{
  1232. padding: 0 8rpx;
  1233. }
  1234. }
  1235. .span3{
  1236. padding: 0 0 0 12rpx;
  1237. span{
  1238. padding: 0 8rpx;
  1239. }
  1240. width: 154rpx;
  1241. .bot1span {
  1242. color: #00B962;
  1243. }
  1244. .bot2span {
  1245. color: #AAAAAA;
  1246. }
  1247. .bot3span {
  1248. color: #FF3D00;
  1249. }
  1250. }
  1251. }
  1252. }
  1253. .indexData4content {
  1254. padding: 40rpx 20rpx;
  1255. .contentTitle{
  1256. color:#333333;
  1257. font-size: 40rpx;
  1258. text-align: center;
  1259. font-weight: bold;
  1260. margin-bottom: 8px;
  1261. }
  1262. .contentItem{
  1263. border-bottom: 1px solid #ededed;
  1264. display: flex;
  1265. justify-content: space-between;
  1266. flex-direction: row;
  1267. margin: 16rpx;
  1268. padding:12rpx;
  1269. .span1{
  1270. img{
  1271. vertical-align: bottom;
  1272. height: 44rpx;
  1273. margin-right: 8rpx;
  1274. }
  1275. font-weight: bold;
  1276. font-size: 36rpx;
  1277. width: 400rpx;
  1278. overflow: hidden;
  1279. text-overflow: ellipsis;
  1280. white-space: nowrap;
  1281. }
  1282. .color777{
  1283. color: #777777;
  1284. }
  1285. .color333{
  1286. color: #333333;
  1287. }
  1288. .span2{
  1289. border-right: 1px solid #ededed;
  1290. width: 120rpx;
  1291. padding: 0 16rpx;
  1292. span{
  1293. padding: 0 8rpx;
  1294. }
  1295. }
  1296. .span3{
  1297. padding: 0 0 0 16rpx;
  1298. span{
  1299. padding: 0 8rpx;
  1300. }
  1301. width: 154rpx;
  1302. color: #333;
  1303. .bot1span {
  1304. color: #00B962;
  1305. }
  1306. .bot2span {
  1307. color: #AAAAAA;
  1308. }
  1309. .bot3span {
  1310. color: #FF3D00;
  1311. }
  1312. }
  1313. }
  1314. }
  1315. .chargingpile {
  1316. img {
  1317. vertical-align: bottom;
  1318. height: 44rpx;
  1319. margin-right: 8rpx;
  1320. }
  1321. p {
  1322. color: #185AC6;
  1323. font-size: 36rpx;
  1324. font-weight: bold;
  1325. span {
  1326. color: #777777;
  1327. margin-left: 8rpx;
  1328. font-size: 32rpx;
  1329. font-weight: normal;
  1330. }
  1331. }
  1332. .detailstablepile {
  1333. .details-row-main {
  1334. border-bottom: 1px solid #ededed;
  1335. padding: 10px 0;
  1336. }
  1337. span {
  1338. margin: 0 8rpx;
  1339. }
  1340. .bot {
  1341. display: inline-block;
  1342. width: 24rpx;
  1343. height: 24rpx;
  1344. margin-left: 4rpx;
  1345. border-radius: 999px;
  1346. }
  1347. .bot1 {
  1348. background-color: #00B962;
  1349. }
  1350. .bot2 {
  1351. //margin-left: 16rpx;
  1352. background-color: #AAAAAA;
  1353. }
  1354. .bot3 {
  1355. //margin-left: 16rpx;
  1356. background-color: #FF3D00;
  1357. }
  1358. .bot1span {
  1359. color: #00B962;
  1360. }
  1361. .bot2span {
  1362. color: #AAAAAA;
  1363. }
  1364. .bot3span {
  1365. color: #FF3D00;
  1366. }
  1367. .detailsline {
  1368. border-bottom: 1px solid #ededed;
  1369. }
  1370. .detailsline,
  1371. .detailsline—bottom {
  1372. display: flex;
  1373. .details-row {
  1374. width: 33%;
  1375. // display: flex;
  1376. // justify-content: space-between;
  1377. // flex-direction: column;
  1378. padding-left: 16rpx;
  1379. margin-bottom: 16rpx;
  1380. margin-top: 16rpx;
  1381. .span1 {
  1382. color: rgba(136, 136, 136, 100);
  1383. font-size: 28rpx;
  1384. width: 100%;
  1385. color: #333333;
  1386. }
  1387. }
  1388. }
  1389. .details-row-1 {
  1390. width: 47%;
  1391. padding-left: 0px !important;
  1392. //border-right: 1px solid #ededed;
  1393. }
  1394. }
  1395. }
  1396. .viewgun {
  1397. position: relative;
  1398. top: 200px;
  1399. text-align: center;
  1400. .viewspan {
  1401. width: 30%;
  1402. margin-left: 16rpx;
  1403. display: inline;
  1404. }
  1405. }
  1406. .headbotton1:after {
  1407. border-radius: 15px 0 0 15px;
  1408. }
  1409. .headbotton2:after {
  1410. border-radius: 0 15px 15px 0;
  1411. }
  1412. .detailstable {
  1413. padding: 30rpx 30rpx !important;
  1414. }
  1415. .detailstableHead {
  1416. .span1 {
  1417. font-size: 32rpx !important;
  1418. }
  1419. .details-row-head-1 {}
  1420. .details-row-head-2 {}
  1421. .details-row-head-3 {
  1422. width: 30% !important;
  1423. max-width: 150rpx;
  1424. .span {}
  1425. }
  1426. .span2 {
  1427. font-size: 44rpx !important;
  1428. font-weight: bold;
  1429. width: 100%;
  1430. color: #101010;
  1431. span {
  1432. font-size: 24rpx !important;
  1433. }
  1434. }
  1435. }
  1436. .detailslineHead {
  1437. border-top: 1px solid #ededed;
  1438. ;
  1439. .details-row {
  1440. padding-left: 8rpx !important;
  1441. }
  1442. font-size: 30rpx !important;
  1443. .span1 span {
  1444. font-size: 28rpx;
  1445. }
  1446. }
  1447. .detailstable,
  1448. .detailstableHead {
  1449. font-size: 16px;
  1450. p {
  1451. font-size: 14px;
  1452. }
  1453. .details-row-main {
  1454. border-bottom: 1px solid #ededed;
  1455. padding: 10px 0;
  1456. }
  1457. .detailsline {
  1458. border-bottom: 1px solid #ededed;
  1459. }
  1460. .detailsline,
  1461. .detailsline—bottom {
  1462. display: flex;
  1463. .details-row {
  1464. width: 50%;
  1465. display: flex;
  1466. justify-content: space-between;
  1467. flex-direction: column;
  1468. padding-left: 16rpx;
  1469. margin-bottom: 20rpx;
  1470. .span1 {
  1471. color: rgba(136, 136, 136, 100);
  1472. font-size: 28rpx;
  1473. width: 100%;
  1474. }
  1475. .span2 {
  1476. font-size: 36rpx;
  1477. width: 100%;
  1478. color: #101010;
  1479. span {
  1480. font-size: 24rpx;
  1481. }
  1482. }
  1483. }
  1484. }
  1485. .details-row-1 {
  1486. width: 47%;
  1487. padding-left: 0px !important;
  1488. border-right: 1px solid #ededed;
  1489. }
  1490. }
  1491. .details {
  1492. padding: 32rpx;
  1493. background-color: #fff;
  1494. border-radius: 8px;
  1495. }
  1496. .details-title {
  1497. margin-bottom: 16px;
  1498. h4 {
  1499. font-weight: normal;
  1500. font-size: 16px;
  1501. position: relative;
  1502. padding-left: 10px;
  1503. &::after {
  1504. content: '';
  1505. position: absolute;
  1506. height: 12px;
  1507. width: 4px;
  1508. background-color: #27B148;
  1509. left: 0;
  1510. top: 5px;
  1511. }
  1512. }
  1513. }
  1514. .details-row {
  1515. display: flex;
  1516. justify-content: space-between;
  1517. align-items: center;
  1518. margin-top: 30rpx;
  1519. p {
  1520. color: #37393c;
  1521. font-weight: bold;
  1522. }
  1523. }
  1524. .details-row2 {
  1525. display: flex;
  1526. justify-content: space-between;
  1527. align-items: center;
  1528. // margin-top: 15px;
  1529. p {
  1530. // color: #37393c;
  1531. // font-weight: bold;
  1532. }
  1533. }
  1534. .popup-screen {
  1535. padding: 20px;
  1536. position: relative;
  1537. .screen {
  1538. padding-bottom: 30px;
  1539. }
  1540. .screen-item {
  1541. margin-bottom: 20px;
  1542. .screen-head {
  1543. margin-bottom: 8px;
  1544. font-size: 16px;
  1545. }
  1546. .screen-main {
  1547. display: flex;
  1548. // display: -webkit-box;
  1549. flex-wrap: wrap;
  1550. }
  1551. .screen-entry {
  1552. width: 29%;
  1553. padding: 6px 0;
  1554. display: flex;
  1555. align-items: center;
  1556. justify-content: center;
  1557. background-color: #F2F5FA;
  1558. text-align: center;
  1559. margin-bottom: 10px;
  1560. border-radius: 3px;
  1561. margin-right: 6px;
  1562. }
  1563. .screen-entry.active {
  1564. background-color: #185AC6;
  1565. color: #fff;
  1566. }
  1567. }
  1568. .screen-foot {
  1569. position: fixed;
  1570. left: 0;
  1571. right: 0;
  1572. bottom: 0;
  1573. display: flex;
  1574. height: 50px;
  1575. border-top: 1px solid #ededed;
  1576. .screen-btn-l {
  1577. background-color: #fff;
  1578. flex: 0.2;
  1579. text-align: center;
  1580. line-height: 50px;
  1581. }
  1582. .screen-btn-r {
  1583. flex: 0.8;
  1584. text-align: center;
  1585. line-height: 50px;
  1586. background-color: #185AC6;
  1587. color: #fff;
  1588. }
  1589. }
  1590. }
  1591. .navbar-tit {
  1592. color: #fff;
  1593. font-size: 24px;
  1594. padding-left: 15px;
  1595. padding-top: 10px;
  1596. }
  1597. .statisticsData {
  1598. background-color: #fff;
  1599. margin: 0px 24rpx 24rpx;
  1600. //padding:0px 24rpx 24rpx;
  1601. border-radius: 8px;
  1602. }
  1603. .statisticsDataMain {
  1604. flex-wrap: wrap;
  1605. display: flex;
  1606. }
  1607. .statisticsData-item {
  1608. flex: 1;
  1609. width: 40%;
  1610. .statisticsData-head {
  1611. display: flex;
  1612. align-items: center;
  1613. p {
  1614. color: #637AA2;
  1615. font-size: 12px;
  1616. }
  1617. }
  1618. .statisticsData-main {
  1619. margin-top: 4px;
  1620. font-size: 18px;
  1621. }
  1622. .statisticsData-foot {
  1623. display: flex;
  1624. align-items: center;
  1625. margin-top: 16px;
  1626. p {
  1627. color: #637AA2;
  1628. }
  1629. h4 {
  1630. margin-left: 8px;
  1631. }
  1632. }
  1633. }
  1634. .statisticsChart {
  1635. margin: 32rpx;
  1636. .statisticsChart-head {
  1637. margin-bottom: 10rpx;
  1638. display: flex;
  1639. justify-content: space-between;
  1640. align-items: center;
  1641. h4 {
  1642. font-weight: normal;
  1643. font-size: 16px;
  1644. position: relative;
  1645. padding-left: 10px;
  1646. &::after {
  1647. content: '';
  1648. position: absolute;
  1649. height: 12px;
  1650. width: 4px;
  1651. background-color: #4E8DF6;
  1652. left: 0;
  1653. top: 5px;
  1654. }
  1655. }
  1656. .statisticsChart-time {
  1657. display: flex;
  1658. align-items: center;
  1659. p {
  1660. color: #666;
  1661. }
  1662. }
  1663. }
  1664. .statisticsChart-main {
  1665. background-color: #fff;
  1666. padding: 10px 16px 16px 16px;
  1667. border-radius: 8px;
  1668. }
  1669. }
  1670. </style>