1
0

Demo.vue 78 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928
  1. <template>
  2. <h1>组件示例</h1>
  3. <tab :data="tabData" @select="select" />
  4. <!-- 图表 -->
  5. <el-scrollbar v-if="currTab == 1" style="height: 85%">
  6. <h2>图表</h2>
  7. <h2>07-16新增</h2>
  8. <scatter-line-chart
  9. :lineData="scatterLineData.lineData"
  10. :data="scatterLineData.data"
  11. :height="'250px'"
  12. />
  13. <h2>07-12新增</h2>
  14. <h3>折现: zoom-line-chart</h3>
  15. <zoom-line-chart :height="'250px'" :smooth="false" :showLegend="true" />
  16. <h3>组合: area-line-chart</h3>
  17. <area-line-chart @areaClick="areaBarChartClick" :showLegend="true" />
  18. <h2>07-08新增</h2>
  19. <h3>组合: 时间区域 area-bar-chart</h3>
  20. <area-bar-chart @areaClick="areaBarChartClick" :showLegend="true" />
  21. <h3>组合: 柱线图 multiple-bar-line-chart</h3>
  22. <multiple-bar-line-chart :height="'250px'" />
  23. <h3>散点图 normal-scatter-chart</h3>
  24. <normal-scatter-chart :data="scatterData" />
  25. <h2>07-07新增</h2>
  26. <h3>柱状图:multiple-y-line-chart</h3>
  27. <multiple-y-line-chart :height="'300px'" />
  28. <h2>old</h2>
  29. <h3>柱状图:horizontal-bar-chart</h3>
  30. <horizontal-bar-chart :height="'300px'" />
  31. <h3>柱状图:horizontal-bar-chart</h3>
  32. <hover-bar-chart :list="HoverBarChart" :height="'200px'" />
  33. <h3>柱状图:list-bar-chart-2</h3>
  34. <list-bar-chart-2 :list="ListBarChart" :height="'200px'" />
  35. <h3>柱状图:multiple-bar-chart</h3>
  36. <multiple-bar-chart :list="MultipleBarChart" :height="'200px'" />
  37. <h3>柱状图:multiple-hover-bar-chart</h3>
  38. <multiple-hover-bar-chart :height="'200px'" />
  39. <h3>柱状图:percent-bar</h3>
  40. <percent-bar />
  41. <h3>柱状图:single-bar-chart</h3>
  42. <single-bar-chart />
  43. <h3>柱状图:thermometer</h3>
  44. <thermometer />
  45. <h3>组合:bar-line-chart</h3>
  46. <bar-line-chart :height="'300px'" :pageSize="10" />
  47. <h3>vertival-bar-line-chart</h3>
  48. <vertival-bar-line-chart :height="'300px'" />
  49. <h3>折线图:double-line-chart</h3>
  50. <double-line-chart :height="'200px'" />
  51. <h3>折线图:multiple-line-chart</h3>
  52. <multiple-line-chart :height="'200px'" />
  53. <h3>折线图:multi-arrow-line-chart</h3>
  54. <multi-arrow-line-chart :height="'200px'" />
  55. <h3>折线图:normal-line-chart</h3>
  56. <normal-line-chart />
  57. <h3>折线图:simple-line-chart</h3>
  58. <simple-line-chart />
  59. <h3>折线图:table-line-chart</h3>
  60. <table-line-chart />
  61. <h3>饼图:dash-pie-chart</h3>
  62. <div style="width: 350px">
  63. <dash-pie-chart />
  64. </div>
  65. <h3>饼图:dual-pie-chart</h3>
  66. <div style="width: 350px">
  67. <dual-pie-chart />
  68. </div>
  69. <h3>饼图:normal-pie-chart</h3>
  70. <div style="width: 350px">
  71. <normal-pie-chart />
  72. </div>
  73. <h3>饼图:percent-pie-chart</h3>
  74. <div style="width: 350px">
  75. <percent-pie-chart />
  76. </div>
  77. <h3>饼图:direction-radar-chart</h3>
  78. <div style="height: 500px">
  79. <direction-radar-chart :height="'500px'" />
  80. </div>
  81. <h3>饼图:normal-radar-chart</h3>
  82. <div style="height: 500px">
  83. <normal-radar-chart :height="'500px'" />
  84. </div>
  85. <h3>饼图:radar-chart</h3>
  86. <div style="height: 500px">
  87. <radar-chart :height="'500px'" />
  88. </div>
  89. </el-scrollbar>
  90. <!-- 组件 -->
  91. <el-scrollbar v-if="currTab == 2" style="height: 85%">
  92. <h3>panel</h3>
  93. <panel :title="'title 标题'"> 带标题title </panel>
  94. <br />
  95. <panel> 无标题title </panel>
  96. <h3>panel-2</h3>
  97. <panel-2 :title="'panel -2'"> panel 2 </panel-2>
  98. <h3>panel-3</h3>
  99. <panel-3> panel-3 </panel-3>
  100. <h3>toolbar-panel</h3>
  101. <toolbar-panel title="toolbar-panel">
  102. <template v-slot:tools>
  103. <div class="tools">
  104. <div class="tool-block">
  105. <div class="legend bg-green"></div>
  106. <div class="legend-text">实际电量</div>
  107. </div>
  108. <div class="tool-block">
  109. <div class="legend bg-orange"></div>
  110. <div class="legend-text">计划检修损失</div>
  111. </div>
  112. <div class="tool-block">
  113. <div class="legend bg-yellow"></div>
  114. <div class="legend-text">非计划检修损失</div>
  115. </div>
  116. <div class="tool-block">
  117. <div class="legend bg-red"></div>
  118. <div class="legend-text">限电损失</div>
  119. </div>
  120. <div class="tool-block">
  121. <div class="legend bg-purple"></div>
  122. <div class="legend-text">受累损失</div>
  123. </div>
  124. <div class="tool-block">
  125. <div class="legend bg-blue"></div>
  126. <div class="legend-text">性能损失</div>
  127. </div>
  128. </div>
  129. </template>
  130. <bar-line-chart :height="'calc(100vh - 200px)'" :color="barColor" />
  131. </toolbar-panel>
  132. <h3>btn-group-double</h3>
  133. <btn-group-double :btnGroups="btnGroups" @select="btnGroupDoubleSelect" />
  134. <h3>card-1</h3>
  135. <card-1 />
  136. <h3>percent-card</h3>
  137. <percent-card :value="25" :title="'标题'" />
  138. <h3>percent-card-2</h3>
  139. <percent-card-2 />
  140. <h3>collapse-list</h3>
  141. <div style="width: 200px">
  142. <collapse-list />
  143. </div>
  144. <h3>list</h3>
  145. <div style="width: 200px">
  146. <list />
  147. </div>
  148. </el-scrollbar>
  149. <!-- Table 组件 -->
  150. <el-scrollbar v-if="currTab == 3" style="height: 85%">
  151. <h2>07-09更新</h2>
  152. <h3>table-2</h3>
  153. <h3>组件说明:</h3>
  154. <p>与原组件使用方式基本相同 原table组件满足的情况下,不更换新组件也可以</p>
  155. <p>新table支持原table所有特性,优化了props及column, 支持更多功能</p>
  156. <p>现支持 文本省略及鼠标浮动显示</p>
  157. <p>
  158. * 原有template 及第三方标签实现方式更改 删除了column 中的
  159. template、type及props
  160. </p>
  161. <h3>props说明:</h3>
  162. <p>
  163. height : string 高度 指定列表高度 自动判断是否显示滚动条,
  164. 不进行设置则为最大宽度且没有滚动条
  165. </p>
  166. <p>pageSize : number 分页个数 若不传 pagesize 不进行分页处理</p>
  167. <p>@onPagging : method 分页回调</p>
  168. <p>data : Object 数据源 { column: [] , data:[] , total: number }</p>
  169. <h3>column说明:</h3>
  170. <p>
  171. { name: "风机名称", field: "name", width:'', click:function(){ }
  172. ,sortable:fasle, slot:false, fixed:false, align:"center" }
  173. </p>
  174. <p>name : string 列名</p>
  175. <p>field : string 对应数据项 同时使用于具名插槽的name值</p>
  176. <p>
  177. width : 列宽 可自定与每列宽度 如果想设置横向滚动条 需手动设置列宽
  178. 满足各列宽度和大于屏幕宽度
  179. </p>
  180. <p>click : 点击事件 与原有table相同</p>
  181. <p>sortable : 排序</p>
  182. <p>
  183. slot: 开启插槽 为true时, 可在HTML中添加 插槽模板 添加自定义内容 为false时,
  184. 默认对应显示值, 示例参考代码中template
  185. </p>
  186. <p>fixed: 固定列</p>
  187. <p>align: 默认文本居中 left | center| right</p>
  188. <table-2
  189. :data="tableData2"
  190. :height="'200px'"
  191. :pageSize="10"
  192. @onPagging="tableonPagging"
  193. >
  194. <!-- v-slot:[field] 对应列嵌入自定义内容 包括第三方标签 -->
  195. <!-- 同时需要在 colum 中设置 slot:true -->
  196. <!-- 如果只设置 slot:true 不写模板 列不存在内容 -->
  197. <!-- scope 内容 scope.column 传入的 col 值, scope.row 数据值 -->
  198. <template v-slot:lqf="scope">
  199. {{ scope.column.name }}:{{ scope.row.lqf }}
  200. </template>
  201. <template v-slot:action="scope">
  202. <a
  203. style="cursor: pointer; color: green; margin-right: 8px"
  204. @click="tableAction(scope)"
  205. >
  206. 点击查看组件点击事件返回信息
  207. </a>
  208. <a style="cursor: pointer; color: green; margin-right: 8px">
  209. {{ scope.column.name }}2
  210. </a>
  211. <a style="cursor: pointer; color: green; margin-right: 8px">
  212. {{ scope.column.name }}3
  213. </a>
  214. </template>
  215. </table-2>
  216. <h3>table</h3>
  217. <Table
  218. :data="tableData"
  219. :height="'200px'"
  220. :canScroll="true"
  221. :pageSize="40"
  222. :showHover="false"
  223. @onPagging="tableonPagging"
  224. />
  225. <h3>table</h3>
  226. <check-table
  227. :data="tableData"
  228. :height="'200px'"
  229. :canScroll="true"
  230. :pageSize="40"
  231. :showHover="false"
  232. @onPagging="tableonPagging"
  233. @check="CheckTableonCheck"
  234. />
  235. <h3>el-table</h3>
  236. <el-table
  237. class="custom-table"
  238. :data="eltableData"
  239. max-height="200"
  240. stripe
  241. style="width: 100%"
  242. border="false"
  243. >
  244. <el-table-column prop="date" label="日期" width="150"> </el-table-column>
  245. <el-table-column label="配送信息">
  246. <el-table-column prop="name" label="姓名" width="120">
  247. </el-table-column>
  248. <el-table-column label="地址">
  249. <el-table-column prop="province" label="省份" width="120">
  250. </el-table-column>
  251. <el-table-column prop="city" label="市区" width="120">
  252. </el-table-column>
  253. <el-table-column prop="address" label="地址"> </el-table-column>
  254. <el-table-column prop="zip" label="邮编" width="120">
  255. </el-table-column>
  256. </el-table-column>
  257. </el-table-column>
  258. </el-table>
  259. <div>
  260. <el-table
  261. class="custom-table"
  262. :data="treeTableData"
  263. style="width: 100%; margin-bottom: 20px"
  264. row-key="id"
  265. border
  266. default-expand-all
  267. :tree-props="{ children: 'children', hasChildren: 'hasChildren' }"
  268. >
  269. <el-table-column prop="date" label="日期" sortable width="180">
  270. </el-table-column>
  271. <el-table-column prop="name" label="姓名" sortable width="180">
  272. </el-table-column>
  273. <el-table-column prop="address" label="地址"> </el-table-column>
  274. </el-table>
  275. </div>
  276. </el-scrollbar>
  277. <!-- icon -->
  278. <el-scrollbar v-if="currTab == 4" style="height: 85%">
  279. <i class="svg-icon svg-icon-sm mg-r-16">
  280. <svg-icon :svgid="'svg-wind-site'" />
  281. </i>
  282. <i class="svg-icon svg-icon-green mg-r-16">
  283. <svg-icon :svgid="'svg-wind-site'" />
  284. </i>
  285. <i class="svg-icon svg-icon-lg svg-icon-red mg-r-16">
  286. <svg-icon :svgid="'svg-wind-site'" />
  287. </i>
  288. </el-scrollbar>
  289. <!-- el-compoments -->
  290. <el-scrollbar v-if="currTab == 5" style="height: 85%">
  291. <el-button type="text" @click="dialogTableVisible = true"
  292. >打开 Dialog</el-button
  293. >
  294. <el-tree
  295. :data="elTreeData.data"
  296. :props="elTreeData.defaultProps"
  297. @node-click="handleNodeClick"
  298. ></el-tree>
  299. <el-cascader
  300. :options="cascader.options"
  301. :props="cascader.props"
  302. clearable
  303. ></el-cascader>
  304. </el-scrollbar>
  305. <!-- 表格合并 -->
  306. <div v-if="currTab == 6" style="height: 70%">
  307. <el-button
  308. type="text"
  309. @click="
  310. () => {
  311. tableMergeStyleShow = !tableMergeStyleShow;
  312. BASE.showMsg({ type: 'success', msg: '表格样式已切换' });
  313. }
  314. "
  315. >切换表格样式</el-button
  316. >
  317. <el-button
  318. type="text"
  319. @click="
  320. () => {
  321. BASE.showMsg({ type: 'success', msg: '数据已刷新' });
  322. createMergeTable(createSum);
  323. }
  324. "
  325. >刷新表格数据</el-button
  326. >
  327. <el-button
  328. type="text"
  329. @click="
  330. () => {
  331. createSum = !createSum;
  332. BASE.showMsg({
  333. type: createSum ? 'success' : 'warning',
  334. msg: `合计行已${createSum ? '显示' : '隐藏'}`,
  335. });
  336. createMergeTable(createSum);
  337. }
  338. "
  339. >{{ createSum ? "隐藏" : "显示" }}表格合计</el-button
  340. >
  341. <el-table
  342. style="width: 100%"
  343. height="100%"
  344. :class="tableMergeStyleShow ? 'custom-table' : ''"
  345. :data="tableMergeData"
  346. :span-method="tableMergeArraySpanMethod"
  347. :show-summary="createSum"
  348. :summary-method="tableMergeDataSumMethod"
  349. sum-text="总计"
  350. >
  351. <el-table-column prop="fpName" label="名称" width="150" />
  352. <el-table-column prop="sd" label="时段" align="center" />
  353. <el-table-column label="时间">
  354. <el-table-column prop="sj1" label="2020-02-01" align="center" />
  355. <el-table-column prop="sj2" label="2020-02-02" align="center" />
  356. <el-table-column prop="sj3" label="2020-02-03" align="center" />
  357. <el-table-column prop="sj4" label="2020-02-04" align="center" />
  358. <el-table-column prop="sj5" label="2020-02-05" align="center" />
  359. <el-table-column prop="sj6" label="2020-02-06" align="center" />
  360. <el-table-column prop="sj7" label="2020-02-07" align="center" />
  361. <el-table-column prop="sj8" label="2020-02-08" align="center" />
  362. <el-table-column prop="sj9" label="2020-02-09" align="center" />
  363. <el-table-column prop="sj10" label="2020-02-10" align="center" />
  364. </el-table-column>
  365. </el-table>
  366. </div>
  367. <el-dialog custom-class="modal" title="收货地址" v-model="dialogTableVisible">
  368. <el-tree
  369. :data="elTreeData.data"
  370. :props="elTreeData.defaultProps"
  371. @node-click="handleNodeClick"
  372. ></el-tree>
  373. </el-dialog>
  374. </template>
  375. <script>
  376. import horizontalBarChart from "../components/chart/bar/horizontal-bar-chart.vue";
  377. import HoverBarChart from "../components/chart/bar/hover-bar-chart.vue";
  378. import ListBarChart2 from "../components/chart/bar/list-bar-chart2.vue";
  379. import MultipleBarChart from "../components/chart/bar/multiple-bar-chart.vue";
  380. import MultipleHoverBarChart from "../components/chart/bar/multiple-hover-bar-chart.vue";
  381. import PercentBar from "../components/chart/bar/percent-bar.vue";
  382. import SingleBarChart from "../components/chart/bar/single-bar-chart.vue";
  383. import Thermometer from "../components/chart/bar/thermometer.vue";
  384. import AreaBarChart from "../components/chart/combination/area-bar-chart.vue";
  385. import BarLineChart from "../components/chart/combination/bar-line-chart.vue";
  386. import MultipleBarLineChart from "../components/chart/combination/multiple-bar-line-chart.vue";
  387. import VertivalBarLineChart from "../components/chart/combination/vertival-bar-line-chart.vue";
  388. import DoubleLineChart from "../components/chart/line/double-line-chart.vue";
  389. import MultipleLineChart from "../components/chart/line/multiple-line-chart.vue";
  390. import MultipleYLineChart from "../components/chart/line/multiple-y-line-chart.vue";
  391. import NormalLineChart from "../components/chart/line/normal-line-chart.vue";
  392. import SimpleLineChart from "../components/chart/line/simple-line-chart.vue";
  393. import TableLineChart from "../components/chart/line/table-line-chart.vue";
  394. import DashPieChart from "../components/chart/pie/dash-pie-chart.vue";
  395. import DualPieChart from "../components/chart/pie/dual-pie-chart.vue";
  396. import NormalPieChart from "../components/chart/pie/normal-pie-chart.vue";
  397. import PercentPieChart from "../components/chart/pie/percent-pie-chart.vue";
  398. import DirectionRadarChart from "../components/chart/radar/direction-radar-chart.vue";
  399. import NormalRadarChart from "../components/chart/radar/normal-radar-chart.vue";
  400. import RadarChart from "../components/chart/radar/radar-chart.vue";
  401. import NormalScatterChart from "../components/chart/scatter/normal-scatter-chart.vue";
  402. import BtnGroupDouble from "../components/coms/btn/btn-group-double.vue";
  403. import Card1 from "../components/coms/cards/card-1.vue";
  404. import PercentCard2 from "../components/coms/cards/percent-card-2.vue";
  405. import PercentCard from "../components/coms/cards/percent-card.vue";
  406. import CollapseList from "../components/coms/collapse/collapse-list.vue";
  407. import SvgIcon from "../components/coms/icon/svg-icon.vue";
  408. import List from "../components/coms/list/list.vue";
  409. import Panel from "../components/coms/panel/panel.vue";
  410. import Panel2 from "../components/coms/panel/panel2.vue";
  411. import Panel3 from "../components/coms/panel/panel3.vue";
  412. import ToolbarPanel from "../components/coms/panel/toolbar-panel.vue";
  413. import CheckTable from "../components/coms/table/check-table.vue";
  414. import Table from "../components/coms/table/table.vue";
  415. import Table2 from "../components/coms/table/table2.vue";
  416. import Tab from "../components/coms/tabs/tab.vue";
  417. import multiArrowLineChart from "../components/chart/line/multi-arrow-line-chart.vue";
  418. import ZoomLineChart from "../components/chart/line/zoom-line-chart.vue";
  419. import AreaLineChart from "../components/chart/combination/area-line-chart.vue";
  420. import ScatterLineChart from "../components/chart/combination/scatter-line-chart.vue";
  421. export default {
  422. components: {
  423. horizontalBarChart,
  424. HoverBarChart,
  425. ListBarChart2,
  426. MultipleBarChart,
  427. MultipleHoverBarChart,
  428. PercentBar,
  429. SingleBarChart,
  430. Thermometer,
  431. BarLineChart,
  432. VertivalBarLineChart,
  433. DoubleLineChart,
  434. MultipleLineChart,
  435. NormalLineChart,
  436. SimpleLineChart,
  437. TableLineChart,
  438. DashPieChart,
  439. DualPieChart,
  440. NormalPieChart,
  441. PercentPieChart,
  442. DirectionRadarChart,
  443. NormalRadarChart,
  444. RadarChart,
  445. Tab,
  446. BtnGroupDouble,
  447. Card1,
  448. PercentCard,
  449. PercentCard2,
  450. CollapseList,
  451. List,
  452. Panel,
  453. Panel2,
  454. Panel3,
  455. ToolbarPanel,
  456. Table,
  457. CheckTable,
  458. SvgIcon,
  459. MultipleYLineChart,
  460. NormalScatterChart,
  461. AreaBarChart,
  462. MultipleBarLineChart,
  463. Table2,
  464. multiArrowLineChart,
  465. ZoomLineChart,
  466. AreaLineChart,
  467. ScatterLineChart,
  468. },
  469. methods: {
  470. select(data) {
  471. this.currTab = parseInt(data.id);
  472. },
  473. btnGroupDoubleSelect(param) {
  474. console.log("btn-group-double");
  475. console.log(param);
  476. },
  477. tableonPagging(param) {
  478. console.log("table pagging event");
  479. console.log(param);
  480. this.tableData.data = [
  481. {
  482. index: 1,
  483. name: "MG01-01",
  484. lqf: "0.1000",
  485. yggl: "0.1000",
  486. yyy: "0.10",
  487. pcspp: "0.1000",
  488. u1: "0.1000",
  489. u2: "0.1000",
  490. v1: "0.1000",
  491. v2: "0.1000",
  492. w1: "0.1000",
  493. w2: "0.1000",
  494. zca: "0.1000",
  495. zcb: "0.1000",
  496. clx: "0.1000",
  497. clx1: "0.1000",
  498. clx2: "0.1000",
  499. jc: "0.1000",
  500. hh: "0.1000",
  501. hj: "0.1000",
  502. is_light: false,
  503. },
  504. ];
  505. let index = 0;
  506. for (let i = param.start; i < param.end; i++) {
  507. this.tableData.data.push(
  508. JSON.parse(JSON.stringify(this.tableData.data[0]))
  509. );
  510. this.tableData.data[index].index = i + 1;
  511. index++;
  512. }
  513. },
  514. CheckTableonCheck(param) {
  515. console.log("table check event");
  516. console.log(param);
  517. },
  518. areaBarChartClick(param) {
  519. console.log(param);
  520. },
  521. tableAction(param) {
  522. console.log(param);
  523. },
  524. createMergeTable(createSum = false) {
  525. let tableMergeData = [];
  526. let tableNum = this.BASE.randomNum(30, 50);
  527. const sd = [{ title: "上午" }, { title: "中午" }, { title: "下午" }];
  528. let hjFlg = false;
  529. let cellSumIdx = 0;
  530. for (let i = 0; i < tableNum; i++) {
  531. const sdNum = this.BASE.randomNum(0, 3);
  532. hjFlg = sdNum > 0 ? true : false;
  533. const fpName = this.BASE.randomNum(0, 1)
  534. ? `风电场 - (${this.BASE.randomNum(1000, 99999)})`
  535. : `光伏电站 - (${this.BASE.randomNum(1000, 99999)})`;
  536. for (let j = 0; j < sdNum; j++) {
  537. tableMergeData.push({
  538. fpName,
  539. sd: sd[j].title,
  540. sj1: this.BASE.randomNum(1, 9999),
  541. sj2: this.BASE.randomNum(1, 9999),
  542. sj3: this.BASE.randomNum(1, 9999),
  543. sj4: this.BASE.randomNum(1, 9999),
  544. sj5: this.BASE.randomNum(1, 9999),
  545. sj6: this.BASE.randomNum(1, 9999),
  546. sj7: this.BASE.randomNum(1, 9999),
  547. sj8: this.BASE.randomNum(1, 9999),
  548. sj9: this.BASE.randomNum(1, 9999),
  549. sj10: this.BASE.randomNum(1, 9999),
  550. cellArray: j ? [j, 0] : [sdNum + (createSum ? 1 : 0), 1],
  551. cellIndex: j,
  552. cellSumIdx,
  553. });
  554. }
  555. if (hjFlg && createSum) {
  556. let sj1 = 0;
  557. let sj2 = 0;
  558. let sj3 = 0;
  559. let sj4 = 0;
  560. let sj5 = 0;
  561. let sj6 = 0;
  562. let sj7 = 0;
  563. let sj8 = 0;
  564. let sj9 = 0;
  565. let sj10 = 0;
  566. tableMergeData.forEach((ele) => {
  567. if (cellSumIdx === ele.cellSumIdx) {
  568. sj1 += ele.sj1;
  569. sj2 += ele.sj2;
  570. sj3 += ele.sj3;
  571. sj4 += ele.sj4;
  572. sj5 += ele.sj5;
  573. sj6 += ele.sj6;
  574. sj7 += ele.sj7;
  575. sj8 += ele.sj8;
  576. sj9 += ele.sj9;
  577. sj10 += ele.sj10;
  578. }
  579. });
  580. tableMergeData.push({
  581. fpName,
  582. sd: "合计",
  583. sj1,
  584. sj2,
  585. sj3,
  586. sj4,
  587. sj5,
  588. sj6,
  589. sj7,
  590. sj8,
  591. sj9,
  592. sj10,
  593. cellArray: [0, 0],
  594. cellIndex: -1,
  595. });
  596. }
  597. cellSumIdx++;
  598. }
  599. this.tableMergeData = tableMergeData;
  600. },
  601. tableMergeArraySpanMethod(row) {
  602. if (!row.columnIndex) {
  603. if (row.row.cellArray[0]) {
  604. return row.row.cellArray;
  605. } else if (
  606. row.row.cellArray[0] &&
  607. row.rowIndex & (row.row.cellArray[0] === row.row.cellIndex)
  608. ) {
  609. return [0, 0];
  610. } else if (row.row.cellIndex === -1) {
  611. return [0, 0];
  612. }
  613. }
  614. },
  615. tableMergeDataSumMethod() {
  616. let sj1 = 0;
  617. let sj2 = 0;
  618. let sj3 = 0;
  619. let sj4 = 0;
  620. let sj5 = 0;
  621. let sj6 = 0;
  622. let sj7 = 0;
  623. let sj8 = 0;
  624. let sj9 = 0;
  625. let sj10 = 0;
  626. this.tableMergeData.forEach((ele) => {
  627. if (ele.cellIndex !== -1) {
  628. sj1 += ele.sj1;
  629. sj2 += ele.sj2;
  630. sj3 += ele.sj3;
  631. sj4 += ele.sj4;
  632. sj5 += ele.sj5;
  633. sj6 += ele.sj6;
  634. sj7 += ele.sj7;
  635. sj8 += ele.sj8;
  636. sj9 += ele.sj9;
  637. sj10 += ele.sj10;
  638. }
  639. });
  640. return ["总计", "", sj1, sj2, sj3, sj4, sj5, sj6, sj7, sj8, sj9, sj10];
  641. },
  642. },
  643. data() {
  644. return {
  645. currTab: 1,
  646. tabData: [
  647. {
  648. id: "1",
  649. text: "图表",
  650. },
  651. {
  652. id: "2",
  653. text: "组件",
  654. },
  655. {
  656. id: "3",
  657. text: "表格",
  658. },
  659. {
  660. id: "4",
  661. text: "图标",
  662. },
  663. {
  664. id: "5",
  665. text: "element 组件",
  666. },
  667. {
  668. id: "6",
  669. text: "表格合并",
  670. },
  671. ],
  672. tableData: {
  673. column: [
  674. {
  675. name: "",
  676. field: "index",
  677. width: "50px",
  678. is_num: false,
  679. is_light: false,
  680. },
  681. {
  682. name: "名称",
  683. field: "name",
  684. is_num: false,
  685. is_light: false,
  686. click: function (event, data) {
  687. console.log(event);
  688. console.log(data);
  689. },
  690. },
  691. {
  692. name: "理论发电量",
  693. field: "lqf",
  694. is_num: false,
  695. is_light: false,
  696. slot: true,
  697. },
  698. {
  699. name: "SCADA发电量",
  700. field: "yggl",
  701. is_num: false,
  702. is_light: false,
  703. },
  704. {
  705. name: "风速",
  706. field: "yyy",
  707. is_num: false,
  708. is_light: false,
  709. },
  710. {
  711. name: "非计划检修",
  712. field: "pcspp",
  713. is_num: false,
  714. is_light: false,
  715. },
  716. {
  717. name: "计划检修",
  718. field: "u1",
  719. is_num: false,
  720. is_light: false,
  721. },
  722. {
  723. name: "受累",
  724. field: "u2",
  725. is_num: false,
  726. is_light: true,
  727. },
  728. {
  729. name: "限电",
  730. field: "v1",
  731. is_num: false,
  732. is_light: false,
  733. },
  734. {
  735. name: "性能",
  736. field: "v2",
  737. is_num: false,
  738. is_light: false,
  739. },
  740. {
  741. name: "风能率用率%",
  742. field: "w1",
  743. is_num: false,
  744. is_light: false,
  745. },
  746. ],
  747. data: [
  748. {
  749. index: 1,
  750. id: "",
  751. name: "MG01-01",
  752. lqf: "0.1000",
  753. yggl: "0.1000",
  754. yyy: "0.10",
  755. pcspp: "0.1000",
  756. u1: "0.1000",
  757. u2: "0.1000",
  758. v1: "0.1000",
  759. v2: "0.1000",
  760. w1: "0.1000",
  761. w2: "0.1000",
  762. zca: "0.1000",
  763. zcb: "0.1000",
  764. clx: "0.1000",
  765. clx1: "0.1000",
  766. clx2: "0.1000",
  767. jc: "0.1000",
  768. hh: "0.1000",
  769. hj: "0.1000",
  770. is_light: false,
  771. },
  772. ],
  773. total: 100,
  774. },
  775. tableData2: {
  776. column: [
  777. {
  778. name: "",
  779. field: "index",
  780. width: 50,
  781. sortable: true,
  782. },
  783. {
  784. name: "名称",
  785. field: "name",
  786. width: 200,
  787. click: function (event, data) {
  788. console.log(event);
  789. console.log(data);
  790. },
  791. align: "left",
  792. resizable: true,
  793. },
  794. {
  795. name: "理论发电量",
  796. width: 200,
  797. field: "lqf",
  798. slot: true,
  799. },
  800. {
  801. width: 200,
  802. name: "SCADA发电量",
  803. field: "yggl",
  804. },
  805. {
  806. name: "风速",
  807. width: 80,
  808. field: "yyy",
  809. sortable: true,
  810. align: "right",
  811. },
  812. {
  813. name: "非计划检修",
  814. field: "pcspp",
  815. width: 200,
  816. },
  817. {
  818. name: "计划检修",
  819. width: 200,
  820. field: "u1",
  821. },
  822. {
  823. name: "受累",
  824. width: 200,
  825. field: "u2",
  826. },
  827. {
  828. name: "限电",
  829. field: "v1",
  830. width: 200,
  831. },
  832. {
  833. name: "性能",
  834. width: 200,
  835. field: "v2",
  836. },
  837. {
  838. name: "风能率用率%",
  839. width: 200,
  840. field: "w1",
  841. },
  842. {
  843. name: "操作",
  844. field: "action",
  845. width: 400,
  846. slot: true,
  847. },
  848. ],
  849. data: [
  850. {
  851. index: 1,
  852. id: "123",
  853. name: "MG01-01",
  854. lqf: "0.1000",
  855. yggl: "0.1000",
  856. yyy: "0.10",
  857. pcspp: "0.1000",
  858. u1: "0.1000",
  859. u2: "0.1000",
  860. v1: "0.1000",
  861. v2: "0.1000",
  862. w1: "0.1000",
  863. w2: "0.1000",
  864. zca: "0.1000",
  865. zcb: "0.1000",
  866. clx: "0.1000",
  867. clx1: "0.1000",
  868. clx2: "0.1000",
  869. jc: "0.1000",
  870. hh: "0.1000",
  871. hj: "0.1000",
  872. is_light: false,
  873. },
  874. ],
  875. total: 100,
  876. },
  877. // 柱状图:horizontal-bar-chart data
  878. HorizontalBarChart: {
  879. area: [
  880. "新荣区",
  881. "平城区",
  882. "云冈区",
  883. "云州区",
  884. "阳高县",
  885. "天镇县",
  886. "广灵县",
  887. "浑源县",
  888. "左云县",
  889. ],
  890. legend: ["因病", "因残", "因学", "因灾", "缺土地", "缺水"],
  891. data: [
  892. [1320, 1302, 901, 634, 1390, 1330, 1320, 1000, 500],
  893. [320, 302, 301, 334, 390, 330, 320, 100, 50],
  894. [320, 302, 301, 334, 390, 330, 320, 100, 50],
  895. [320, 302, 301, 334, 390, 330, 320, 100, 50],
  896. [320, 302, 301, 334, 390, 330, 320, 100, 50],
  897. [320, 302, 301, 334, 390, 330, 320, 100, 50],
  898. ],
  899. },
  900. // 柱状图:horizontal-bar-chart data
  901. HoverBarChart: [
  902. {
  903. text: "1",
  904. value: 1,
  905. },
  906. {
  907. text: "2",
  908. value: 2,
  909. },
  910. {
  911. text: "3",
  912. value: 1,
  913. },
  914. {
  915. text: "4",
  916. value: 3,
  917. },
  918. {
  919. text: "5",
  920. value: 3,
  921. },
  922. {
  923. text: "6",
  924. value: 3,
  925. },
  926. {
  927. text: "7",
  928. value: 3,
  929. },
  930. {
  931. text: "8",
  932. value: 3,
  933. },
  934. {
  935. text: "9",
  936. value: 3,
  937. },
  938. {
  939. text: "10",
  940. value: 3,
  941. },
  942. {
  943. text: "11",
  944. value: 3,
  945. },
  946. {
  947. text: "12",
  948. value: 3,
  949. },
  950. {
  951. text: "13",
  952. value: 3,
  953. },
  954. {
  955. text: "14",
  956. value: 3,
  957. },
  958. {
  959. text: "15",
  960. value: 3,
  961. },
  962. {
  963. text: "16",
  964. value: 3,
  965. },
  966. {
  967. text: "17",
  968. value: 3,
  969. },
  970. {
  971. text: "18",
  972. value: 3,
  973. },
  974. {
  975. text: "19",
  976. value: 3,
  977. },
  978. {
  979. text: "20",
  980. value: 3,
  981. },
  982. {
  983. text: "21",
  984. value: 3,
  985. },
  986. {
  987. text: "22",
  988. value: 3,
  989. },
  990. {
  991. text: "23",
  992. value: 3,
  993. },
  994. {
  995. text: "24",
  996. value: 3,
  997. },
  998. {
  999. text: "25",
  1000. value: 3,
  1001. },
  1002. {
  1003. text: "26",
  1004. value: 3,
  1005. },
  1006. {
  1007. text: "27",
  1008. value: 3,
  1009. },
  1010. {
  1011. text: "28",
  1012. value: 3,
  1013. },
  1014. {
  1015. text: "29",
  1016. value: 3,
  1017. },
  1018. {
  1019. text: "30",
  1020. value: 3,
  1021. },
  1022. {
  1023. text: "31",
  1024. value: 3,
  1025. },
  1026. ],
  1027. // list-bar-chart-2 data
  1028. ListBarChart: [
  1029. {
  1030. name: "当日预测电量",
  1031. value: 103.62,
  1032. total: 150,
  1033. },
  1034. {
  1035. name: "实际发电量",
  1036. value: 98.62,
  1037. total: 100,
  1038. },
  1039. {
  1040. name: "当月预测电量",
  1041. value: 113.27,
  1042. total: 150,
  1043. },
  1044. {
  1045. name: "实际发电量",
  1046. value: 136.72,
  1047. total: 150,
  1048. },
  1049. ],
  1050. // multiple-bar-chart data
  1051. MultipleBarChart: [
  1052. {
  1053. title: "日发电量",
  1054. yAxisIndex: 0,
  1055. value: [
  1056. {
  1057. text: "1日",
  1058. value: 1,
  1059. },
  1060. {
  1061. text: "2日",
  1062. value: 2,
  1063. },
  1064. {
  1065. text: "3日",
  1066. value: 1,
  1067. },
  1068. {
  1069. text: "4日",
  1070. value: 3,
  1071. },
  1072. {
  1073. text: "5日",
  1074. value: 3,
  1075. },
  1076. {
  1077. text: "6日",
  1078. value: 3,
  1079. },
  1080. {
  1081. text: "7日",
  1082. value: 3,
  1083. },
  1084. ],
  1085. },
  1086. {
  1087. title: "上网电量",
  1088. yAxisIndex: 0,
  1089. value: [
  1090. {
  1091. text: "1日",
  1092. value: 1,
  1093. },
  1094. {
  1095. text: "2日",
  1096. value: 2,
  1097. },
  1098. {
  1099. text: "3日",
  1100. value: 1,
  1101. },
  1102. {
  1103. text: "4日",
  1104. value: 3,
  1105. },
  1106. {
  1107. text: "5日",
  1108. value: 3,
  1109. },
  1110. {
  1111. text: "6日",
  1112. value: 3,
  1113. },
  1114. {
  1115. text: "7日",
  1116. value: 3,
  1117. },
  1118. ],
  1119. },
  1120. {
  1121. title: "购网电量",
  1122. yAxisIndex: 0,
  1123. value: [
  1124. {
  1125. text: "1日",
  1126. value: 1,
  1127. },
  1128. {
  1129. text: "2日",
  1130. value: 2,
  1131. },
  1132. {
  1133. text: "3日",
  1134. value: 1,
  1135. },
  1136. {
  1137. text: "4日",
  1138. value: 3,
  1139. },
  1140. {
  1141. text: "5日",
  1142. value: 3,
  1143. },
  1144. {
  1145. text: "6日",
  1146. value: 3,
  1147. },
  1148. {
  1149. text: "7日",
  1150. value: 3,
  1151. },
  1152. ],
  1153. },
  1154. {
  1155. title: "风速",
  1156. yAxisIndex: 1,
  1157. value: [
  1158. {
  1159. text: "1日",
  1160. value: 1,
  1161. },
  1162. {
  1163. text: "2日",
  1164. value: 2,
  1165. },
  1166. {
  1167. text: "3日",
  1168. value: 1,
  1169. },
  1170. {
  1171. text: "4日",
  1172. value: 3,
  1173. },
  1174. {
  1175. text: "5日",
  1176. value: 3,
  1177. },
  1178. {
  1179. text: "6日",
  1180. value: 3,
  1181. },
  1182. {
  1183. text: "7日",
  1184. value: 3,
  1185. },
  1186. ],
  1187. },
  1188. ],
  1189. // btnGroups
  1190. btnGroups: [
  1191. {
  1192. icon: "fa fa-fire",
  1193. btns: [
  1194. {
  1195. text: "某某风场",
  1196. code: "mmfdc1",
  1197. },
  1198. {
  1199. text: "某某风场",
  1200. code: "mhsfc",
  1201. },
  1202. {
  1203. text: "某某风场",
  1204. code: "mmfdc2",
  1205. },
  1206. {
  1207. text: "某某风场",
  1208. code: "mmfdc3",
  1209. },
  1210. {
  1211. text: "某某风场",
  1212. code: "mmfdc4",
  1213. },
  1214. ],
  1215. },
  1216. {
  1217. icon: "fa fa-fire-extinguisher",
  1218. btns: [
  1219. {
  1220. text: "某某风场",
  1221. code: "mmgf1",
  1222. },
  1223. {
  1224. text: "某某风场",
  1225. code: "mmgf2",
  1226. },
  1227. {
  1228. text: "某某风场",
  1229. code: "mmgf3",
  1230. },
  1231. {
  1232. text: "某某风场",
  1233. code: "mmgf4",
  1234. },
  1235. ],
  1236. },
  1237. ],
  1238. eltableData: [
  1239. {
  1240. date: "2016-05-03",
  1241. name: "王小虎",
  1242. province: "上海",
  1243. city: "普陀区",
  1244. address: "上海市普陀区金沙江路 1518 弄",
  1245. zip: 200333,
  1246. },
  1247. {
  1248. date: "2016-05-02",
  1249. name: "王小虎",
  1250. province: "上海",
  1251. city: "普陀区",
  1252. address: "上海市普陀区金沙江路 1518 弄",
  1253. zip: 200333,
  1254. },
  1255. {
  1256. date: "2016-05-04",
  1257. name: "王小虎",
  1258. province: "上海",
  1259. city: "普陀区",
  1260. address: "上海市普陀区金沙江路 1518 弄",
  1261. zip: 200333,
  1262. },
  1263. {
  1264. date: "2016-05-01",
  1265. name: "王小虎",
  1266. province: "上海",
  1267. city: "普陀区",
  1268. address: "上海市普陀区金沙江路 1518 弄",
  1269. zip: 200333,
  1270. },
  1271. {
  1272. date: "2016-05-08",
  1273. name: "王小虎",
  1274. province: "上海",
  1275. city: "普陀区",
  1276. address: "上海市普陀区金沙江路 1518 弄",
  1277. zip: 200333,
  1278. },
  1279. {
  1280. date: "2016-05-06",
  1281. name: "王小虎",
  1282. province: "上海",
  1283. city: "普陀区",
  1284. address: "上海市普陀区金沙江路 1518 弄",
  1285. zip: 200333,
  1286. },
  1287. {
  1288. date: "2016-05-07",
  1289. name: "王小虎",
  1290. province: "上海",
  1291. city: "普陀区",
  1292. address: "上海市普陀区金沙江路 1518 弄",
  1293. zip: 200333,
  1294. },
  1295. {
  1296. date: "2016-05-07",
  1297. name: "王小虎",
  1298. province: "上海",
  1299. city: "普陀区",
  1300. address: "上海市普陀区金沙江路 1518 弄",
  1301. zip: 200333,
  1302. },
  1303. {
  1304. date: "2016-05-07",
  1305. name: "王小虎",
  1306. province: "上海",
  1307. city: "普陀区",
  1308. address: "上海市普陀区金沙江路 1518 弄",
  1309. zip: 200333,
  1310. },
  1311. {
  1312. date: "2016-05-07",
  1313. name: "王小虎",
  1314. province: "上海",
  1315. city: "普陀区",
  1316. address: "上海市普陀区金沙江路 1518 弄",
  1317. zip: 200333,
  1318. },
  1319. {
  1320. date: "2016-05-07",
  1321. name: "王小虎",
  1322. province: "上海",
  1323. city: "普陀区",
  1324. address: "上海市普陀区金沙江路 1518 弄",
  1325. zip: 200333,
  1326. },
  1327. {
  1328. date: "2016-05-07",
  1329. name: "王小虎",
  1330. province: "上海",
  1331. city: "普陀区",
  1332. address: "上海市普陀区金沙江路 1518 弄",
  1333. zip: 200333,
  1334. },
  1335. {
  1336. date: "2016-05-07",
  1337. name: "王小虎",
  1338. province: "上海",
  1339. city: "普陀区",
  1340. address: "上海市普陀区金沙江路 1518 弄",
  1341. zip: 200333,
  1342. },
  1343. {
  1344. date: "2016-05-07",
  1345. name: "王小虎",
  1346. province: "上海",
  1347. city: "普陀区",
  1348. address: "上海市普陀区金沙江路 1518 弄",
  1349. zip: 200333,
  1350. },
  1351. {
  1352. date: "2016-05-07",
  1353. name: "王小虎",
  1354. province: "上海",
  1355. city: "普陀区",
  1356. address: "上海市普陀区金沙江路 1518 弄",
  1357. zip: 200333,
  1358. },
  1359. {
  1360. date: "2016-05-07",
  1361. name: "王小虎",
  1362. province: "上海",
  1363. city: "普陀区",
  1364. address: "上海市普陀区金沙江路 1518 弄",
  1365. zip: 200333,
  1366. },
  1367. {
  1368. date: "2016-05-07",
  1369. name: "王小虎",
  1370. province: "上海",
  1371. city: "普陀区",
  1372. address: "上海市普陀区金沙江路 1518 弄",
  1373. zip: 200333,
  1374. },
  1375. {
  1376. date: "2016-05-07",
  1377. name: "王小虎",
  1378. province: "上海",
  1379. city: "普陀区",
  1380. address: "上海市普陀区金沙江路 1518 弄",
  1381. zip: 200333,
  1382. },
  1383. {
  1384. date: "2016-05-07",
  1385. name: "王小虎",
  1386. province: "上海",
  1387. city: "普陀区",
  1388. address: "上海市普陀区金沙江路 1518 弄",
  1389. zip: 200333,
  1390. },
  1391. {
  1392. date: "2016-05-07",
  1393. name: "王小虎",
  1394. province: "上海",
  1395. city: "普陀区",
  1396. address: "上海市普陀区金沙江路 1518 弄",
  1397. zip: 200333,
  1398. },
  1399. {
  1400. date: "2016-05-07",
  1401. name: "王小虎",
  1402. province: "上海",
  1403. city: "普陀区",
  1404. address: "上海市普陀区金沙江路 1518 弄",
  1405. zip: 200333,
  1406. },
  1407. {
  1408. date: "2016-05-07",
  1409. name: "王小虎",
  1410. province: "上海",
  1411. city: "普陀区",
  1412. address: "上海市普陀区金沙江路 1518 弄",
  1413. zip: 200333,
  1414. },
  1415. {
  1416. date: "2016-05-07",
  1417. name: "王小虎",
  1418. province: "上海",
  1419. city: "普陀区",
  1420. address: "上海市普陀区金沙江路 1518 弄",
  1421. zip: 200333,
  1422. },
  1423. {
  1424. date: "2016-05-07",
  1425. name: "王小虎",
  1426. province: "上海",
  1427. city: "普陀区",
  1428. address: "上海市普陀区金沙江路 1518 弄",
  1429. zip: 200333,
  1430. },
  1431. ],
  1432. elTreeData: {
  1433. data: [
  1434. {
  1435. label: "一级 1",
  1436. children: [
  1437. {
  1438. label: "二级 1-1",
  1439. children: [
  1440. {
  1441. label: "三级 1-1-1",
  1442. },
  1443. ],
  1444. },
  1445. ],
  1446. },
  1447. {
  1448. label: "一级 2",
  1449. children: [
  1450. {
  1451. label: "二级 2-1",
  1452. children: [
  1453. {
  1454. label: "三级 2-1-1",
  1455. },
  1456. ],
  1457. },
  1458. {
  1459. label: "二级 2-2",
  1460. children: [
  1461. {
  1462. label: "三级 2-2-1",
  1463. },
  1464. ],
  1465. },
  1466. ],
  1467. },
  1468. {
  1469. label: "一级 3",
  1470. children: [
  1471. {
  1472. label: "二级 3-1",
  1473. children: [
  1474. {
  1475. label: "三级 3-1-1",
  1476. },
  1477. ],
  1478. },
  1479. {
  1480. label: "二级 3-2",
  1481. children: [
  1482. {
  1483. label: "三级 3-2-1",
  1484. },
  1485. ],
  1486. },
  1487. ],
  1488. },
  1489. ],
  1490. defaultProps: {
  1491. children: "children",
  1492. label: "label",
  1493. },
  1494. },
  1495. scatterLineData: {
  1496. data: [
  1497. {
  1498. title: "男",
  1499. value: [
  1500. [14.49, 1537.0],
  1501. [5.78, 368.0],
  1502. [5.08, 247.0],
  1503. [4.79, 171.0],
  1504. [4.05, 120.0],
  1505. [3.17, 49.0],
  1506. [2.45, 5.0],
  1507. [2.93, 28.0],
  1508. [2.55, 6.0],
  1509. [2.39, -6.0],
  1510. [1.51, 0.0],
  1511. [1.21, 0.0],
  1512. [9.85, 1233.0],
  1513. [11.21, 1540.0],
  1514. [11.15, 1554.0],
  1515. [11.64, 1534.0],
  1516. [11.44, 1531.0],
  1517. [10.96, 1522.0],
  1518. [10.23, 1540.0],
  1519. [11.26, 816.0],
  1520. [12.43, 673.0],
  1521. [10.37, 693.0],
  1522. [10.83, 715.0],
  1523. [12.66, 718.0],
  1524. [13.49, 739.0],
  1525. [14.78, 732.0],
  1526. [13.16, 1414.0],
  1527. [14.48, 1532.0],
  1528. [12.24, 1539.0],
  1529. [11.48, 1535.0],
  1530. [12.82, 1538.0],
  1531. [11.93, 1547.0],
  1532. [10.42, 1410.0],
  1533. [10.05, 1532.0],
  1534. [10.05, 1497.0],
  1535. [10.07, 1486.0],
  1536. [9.67, 1454.0],
  1537. [11.3, 1419.0],
  1538. [11.14, 1510.0],
  1539. [10.77, 1538.0],
  1540. [10.55, 1542.0],
  1541. [10.43, 1517.0],
  1542. [12.58, 1541.0],
  1543. [11.05, 1551.0],
  1544. [10.85, 1535.0],
  1545. [11.87, 1540.0],
  1546. [13.79, 1530.0],
  1547. [13.63, 1537.0],
  1548. [12.01, 1535.0],
  1549. [12.12, 1532.0],
  1550. [11.53, 1524.0],
  1551. [10.62, 1541.0],
  1552. [10.23, 1409.0],
  1553. [10.89, 1541.0],
  1554. [10.45, 1541.0],
  1555. [11.59, 1536.0],
  1556. [12.1, 1544.0],
  1557. [11.83, 1534.0],
  1558. [12.57, 1544.0],
  1559. [10.88, 1538.0],
  1560. [11.15, 1539.0],
  1561. [11.37, 1536.0],
  1562. [11.62, 1546.0],
  1563. [11.98, 1537.0],
  1564. [11.72, 1533.0],
  1565. [10.92, 1530.0],
  1566. [11.77, 1547.0],
  1567. [10.46, 1414.0],
  1568. [10.08, 1308.0],
  1569. [10.82, 1487.0],
  1570. [9.68, 1485.0],
  1571. [10.13, 1279.0],
  1572. ],
  1573. },
  1574. ],
  1575. lineData: {
  1576. xTitle: "风速",
  1577. yTitle: "功率",
  1578. legends: [],
  1579. data: [
  1580. [
  1581. 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
  1582. 19, 20, 21, 22, 23, 24, 25,
  1583. ],
  1584. [
  1585. 0, 0, 0, 93.67, 98.38, 165, 295.84, 471.84, 648.28, 871.72,
  1586. 1124.84, 1296.42, 1448.63, 1548, 1548, 1548, 1548, 1548, 1548,
  1587. 1548, 1548, 1548, 1548, 1548, 1548, 1548,
  1588. ],
  1589. ],
  1590. },
  1591. },
  1592. scatterData: [
  1593. {
  1594. title: "风资源分析",
  1595. value: [
  1596. {
  1597. title: "风资源分析",
  1598. value: [
  1599. [0.0, 0.0],
  1600. [0.0, 0.0],
  1601. [0.0, 0.0],
  1602. [0.0, 0.0],
  1603. [0.0, 0.0],
  1604. [0.0, 0.0],
  1605. [0.0, 0.0],
  1606. [0.0, 0.0],
  1607. [0.0, 0.0],
  1608. [0.0, 0.0],
  1609. [0.0, 0.0],
  1610. [0.0, 0.0],
  1611. [0.0, 0.0],
  1612. [0.0, 0.0],
  1613. [0.0, 0.0],
  1614. [0.0, 0.0],
  1615. [0.0, 0.0],
  1616. [0.0, 0.0],
  1617. [0.0, 0.0],
  1618. [0.0, 0.0],
  1619. [0.0, 0.0],
  1620. [0.0, 0.0],
  1621. [0.0, 0.0],
  1622. [0.0, 0.0],
  1623. [0.0, 0.0],
  1624. [0.0, 0.0],
  1625. [0.0, 0.0],
  1626. [0.0, 0.0],
  1627. [0.0, 0.0],
  1628. [0.0, 0.0],
  1629. [0.0, 0.0],
  1630. [0.0, 0.0],
  1631. [0.0, 0.0],
  1632. [0.0, 0.0],
  1633. [0.0, 0.0],
  1634. [0.0, 0.0],
  1635. [0.0, 0.0],
  1636. [0.0, 0.0],
  1637. [0.0, 0.0],
  1638. [0.0, 0.0],
  1639. [0.0, 0.0],
  1640. [0.0, 0.0],
  1641. [0.0, 0.0],
  1642. [0.0, 0.0],
  1643. [0.0, 0.0],
  1644. [0.0, 0.0],
  1645. [0.0, 0.0],
  1646. [0.0, 0.0],
  1647. [0.0, 0.0],
  1648. [0.0, 0.0],
  1649. [0.0, 0.0],
  1650. [0.0, 0.0],
  1651. [0.0, 0.0],
  1652. [0.0, 0.0],
  1653. [0.0, 0.0],
  1654. [0.0, 0.0],
  1655. [0.0, 0.0],
  1656. [0.0, 0.0],
  1657. [0.0, 0.0],
  1658. [0.0, 0.0],
  1659. [0.0, 0.0],
  1660. [0.0, 0.0],
  1661. [0.0, 0.0],
  1662. [0.0, 0.0],
  1663. [0.0, 0.0],
  1664. [0.0, 0.0],
  1665. [0.0, 0.0],
  1666. [0.0, 0.0],
  1667. [0.0, 0.0],
  1668. [0.0, 0.0],
  1669. [0.0, 0.0],
  1670. [0.0, 0.0],
  1671. [0.0, 0.0],
  1672. [0.0, 0.0],
  1673. [0.0, 0.0],
  1674. [0.0, 0.0],
  1675. [0.0, 0.0],
  1676. [0.0, 0.0],
  1677. [0.0, 0.0],
  1678. [0.0, 0.0],
  1679. [0.0, 0.0],
  1680. [0.0, 0.0],
  1681. [0.0, 0.0],
  1682. [0.0, 0.0],
  1683. [0.0, 0.0],
  1684. [0.0, 0.0],
  1685. [0.0, 0.0],
  1686. [0.0, 0.0],
  1687. [0.0, 0.0],
  1688. [0.0, 0.0],
  1689. [0.0, 0.0],
  1690. [0.0, 0.0],
  1691. [0.0, 0.0],
  1692. [0.0, 0.0],
  1693. [0.0, 0.0],
  1694. [0.0, 0.0],
  1695. [0.0, 0.0],
  1696. [0.0, 0.0],
  1697. [0.0, 0.0],
  1698. [0.0, 0.0],
  1699. [0.0, 0.0],
  1700. [0.0, 0.0],
  1701. [0.0, 0.0],
  1702. [0.0, 0.0],
  1703. [0.0, 0.0],
  1704. [0.0, 0.0],
  1705. [0.0, 0.0],
  1706. [0.0, 0.0],
  1707. [0.0, 0.0],
  1708. [0.0, 0.0],
  1709. [0.0, 0.0],
  1710. [0.0, 0.0],
  1711. [0.0, 0.0],
  1712. [0.0, 0.0],
  1713. [0.0, 0.0],
  1714. [0.0, 0.0],
  1715. [0.0, 0.0],
  1716. [0.0, 0.0],
  1717. [0.0, 0.0],
  1718. [0.0, 0.0],
  1719. [0.0, 0.0],
  1720. [0.0, 0.0],
  1721. [0.0, 0.0],
  1722. [0.0, 0.0],
  1723. [0.0, 0.0],
  1724. [0.0, 0.0],
  1725. [0.0, 0.0],
  1726. [0.0, 0.0],
  1727. [0.0, 0.0],
  1728. [0.0, 0.0],
  1729. [0.0, 0.0],
  1730. [0.0, 0.0],
  1731. [0.0, 0.0],
  1732. [0.0, 0.0],
  1733. [0.0, 0.0],
  1734. [0.0, 0.0],
  1735. [0.0, 0.0],
  1736. [0.0, 0.0],
  1737. [0.0, 0.0],
  1738. [0.0, 0.0],
  1739. [0.0, 0.0],
  1740. [0.0, 0.0],
  1741. [0.0, 0.0],
  1742. [0.0, 0.0],
  1743. [0.0, 0.0],
  1744. [0.0, 0.0],
  1745. [0.0, 0.0],
  1746. [0.0, 0.0],
  1747. [0.0, 0.0],
  1748. [0.0, 0.0],
  1749. [0.0, 0.0],
  1750. [0.0, 0.0],
  1751. [0.0, 0.0],
  1752. [0.0, 0.0],
  1753. [0.0, 0.0],
  1754. [0.0, 0.0],
  1755. [0.0, 0.0],
  1756. [0.0, 0.0],
  1757. [0.0, 0.0],
  1758. [0.0, 0.0],
  1759. [0.0, 0.0],
  1760. [0.0, 0.0],
  1761. [0.0, 0.0],
  1762. [0.0, 0.0],
  1763. [0.0, 0.0],
  1764. [0.0, 0.0],
  1765. [0.0, 0.0],
  1766. [0.0, 0.0],
  1767. [0.0, 0.0],
  1768. [0.0, 0.0],
  1769. [0.0, 0.0],
  1770. [0.0, 0.0],
  1771. [0.0, 0.0],
  1772. [0.0, 0.0],
  1773. [0.0, 0.0],
  1774. [0.0, 0.0],
  1775. [0.0, 0.0],
  1776. [0.0, 0.0],
  1777. [0.0, 0.0],
  1778. [0.0, 0.0],
  1779. [0.0, 0.0],
  1780. [0.0, 0.0],
  1781. [0.0, 0.0],
  1782. [0.0, 0.0],
  1783. [0.0, 0.0],
  1784. [0.0, 0.0],
  1785. [0.0, 0.0],
  1786. [0.0, 0.0],
  1787. [0.0, 0.0],
  1788. [0.0, 0.0],
  1789. [0.0, 0.0],
  1790. [0.0, 0.0],
  1791. [0.0, 0.0],
  1792. [0.0, 0.0],
  1793. [0.0, 0.0],
  1794. [0.0, 0.0],
  1795. [0.0, 0.0],
  1796. [0.0, 0.0],
  1797. [0.0, 0.0],
  1798. [0.0, 0.0],
  1799. [0.0, 0.0],
  1800. [0.0, 0.0],
  1801. [0.0, 0.0],
  1802. [0.0, 0.0],
  1803. [0.0, 0.0],
  1804. [0.0, 0.0],
  1805. [0.0, 0.0],
  1806. [0.0, 0.0],
  1807. [0.0, 0.0],
  1808. [0.0, 0.0],
  1809. [0.0, 0.0],
  1810. [0.0, 0.0],
  1811. [0.0, 0.0],
  1812. [0.0, 0.0],
  1813. [0.0, 0.0],
  1814. [0.0, 0.0],
  1815. [0.0, 0.0],
  1816. [0.0, 0.0],
  1817. [0.0, 0.0],
  1818. [0.0, 0.0],
  1819. [0.0, 0.0],
  1820. [0.0, 0.0],
  1821. [0.0, 0.0],
  1822. [0.0, 0.0],
  1823. [0.0, 0.0],
  1824. [0.0, 0.0],
  1825. [0.0, 0.0],
  1826. [0.0, 0.0],
  1827. [0.0, 0.0],
  1828. [0.0, 0.0],
  1829. [0.0, 0.0],
  1830. [0.0, 0.0],
  1831. [0.0, 0.0],
  1832. [0.0, 0.0],
  1833. [0.0, 0.0],
  1834. [0.0, 0.0],
  1835. [0.0, 0.0],
  1836. [0.0, 0.0],
  1837. [0.0, 0.0],
  1838. [0.0, 0.0],
  1839. [0.0, 0.0],
  1840. [0.0, 0.0],
  1841. [0.0, 0.0],
  1842. [0.0, 0.0],
  1843. [0.0, 0.0],
  1844. [0.0, 0.0],
  1845. [0.0, 0.0],
  1846. [0.0, 0.0],
  1847. [0.0, 0.0],
  1848. [0.0, 0.0],
  1849. [0.0, 0.0],
  1850. [0.0, 0.0],
  1851. [0.0, 0.0],
  1852. [0.0, 0.0],
  1853. [0.0, 0.0],
  1854. [0.0, 0.0],
  1855. [0.0, 0.0],
  1856. [0.0, 0.0],
  1857. [0.0, 0.0],
  1858. [0.0, 0.0],
  1859. [0.0, 0.0],
  1860. [0.0, 0.0],
  1861. [0.0, 0.0],
  1862. [0.0, 0.0],
  1863. [0.0, 0.0],
  1864. [0.0, 0.0],
  1865. [0.0, 0.0],
  1866. [0.0, 0.0],
  1867. [0.0, 0.0],
  1868. [0.0, 0.0],
  1869. [0.0, 0.0],
  1870. [0.0, 0.0],
  1871. [0.0, 0.0],
  1872. [0.0, 0.0],
  1873. [0.0, 0.0],
  1874. [0.0, 0.0],
  1875. [0.0, 0.0],
  1876. [0.0, 0.0],
  1877. [0.0, 0.0],
  1878. [0.0, 0.0],
  1879. [0.0, 0.0],
  1880. [0.0, 0.0],
  1881. [0.0, 0.0],
  1882. [0.0, 0.0],
  1883. [0.0, 0.0],
  1884. [0.0, 0.0],
  1885. [0.0, 0.0],
  1886. [0.0, 0.0],
  1887. [0.0, 0.0],
  1888. [0.0, 0.0],
  1889. [0.0, 0.0],
  1890. [0.0, 0.0],
  1891. [0.0, 0.0],
  1892. [0.0, 0.0],
  1893. [0.0, 0.0],
  1894. [0.0, 0.0],
  1895. [0.0, 0.0],
  1896. [0.0, 0.0],
  1897. [0.0, 0.0],
  1898. [0.0, 0.0],
  1899. [0.0, 0.0],
  1900. [0.0, 0.0],
  1901. [0.0, 0.0],
  1902. [0.0, 0.0],
  1903. [0.0, 0.0],
  1904. [0.0, 0.0],
  1905. [0.0, 0.0],
  1906. [0.0, 0.0],
  1907. [0.0, 0.0],
  1908. [0.0, 0.0],
  1909. [0.0, 0.0],
  1910. [0.0, 0.0],
  1911. [0.0, 0.0],
  1912. [0.0, 0.0],
  1913. [0.0, 0.0],
  1914. [0.0, 0.0],
  1915. [0.0, 0.0],
  1916. [0.0, 0.0],
  1917. [0.0, 0.0],
  1918. [0.0, 0.0],
  1919. [0.0, 0.0],
  1920. [0.0, 0.0],
  1921. [0.0, 0.0],
  1922. [0.0, 0.0],
  1923. [0.0, 0.0],
  1924. [0.0, 0.0],
  1925. [0.0, 0.0],
  1926. [0.0, 0.0],
  1927. [0.0, 0.0],
  1928. [0.0, 0.0],
  1929. [0.0, 0.0],
  1930. [0.0, 0.0],
  1931. [0.0, 0.0],
  1932. [0.0, 0.0],
  1933. [0.0, 0.0],
  1934. [0.0, 0.0],
  1935. [0.0, 0.0],
  1936. [0.0, 0.0],
  1937. [0.0, 0.0],
  1938. [0.0, 0.0],
  1939. [0.0, 0.0],
  1940. [0.0, 0.0],
  1941. [0.0, 0.0],
  1942. [0.0, 0.0],
  1943. [0.0, 0.0],
  1944. [0.0, 0.0],
  1945. [0.0, 0.0],
  1946. [0.0, 0.0],
  1947. [0.0, 0.0],
  1948. [0.0, 0.0],
  1949. [0.0, 0.0],
  1950. [0.0, 0.0],
  1951. [0.0, 0.0],
  1952. [0.0, 0.0],
  1953. [0.0, 0.0],
  1954. [0.0, 0.0],
  1955. [0.0, 0.0],
  1956. [0.0, 0.0],
  1957. [0.0, 0.0],
  1958. [0.0, 0.0],
  1959. [0.0, 0.0],
  1960. [0.0, 0.0],
  1961. [0.0, 0.0],
  1962. [0.0, 0.0],
  1963. [0.0, 0.0],
  1964. [0.0, 0.0],
  1965. [0.0, 0.0],
  1966. [0.0, 0.0],
  1967. [0.0, 0.0],
  1968. [0.0, 0.0],
  1969. [0.0, 0.0],
  1970. [0.0, 0.0],
  1971. [0.0, 0.0],
  1972. [0.0, 0.0],
  1973. [0.0, 0.0],
  1974. [0.0, 0.0],
  1975. [0.0, 0.0],
  1976. [0.0, 0.0],
  1977. [0.0, 0.0],
  1978. [0.0, 0.0],
  1979. [0.0, 0.0],
  1980. [0.0, 0.0],
  1981. [0.0, 0.0],
  1982. [0.0, 0.0],
  1983. [0.0, 0.0],
  1984. [0.0, 0.0],
  1985. [0.0, 0.0],
  1986. [0.0, 0.0],
  1987. [0.0, 0.0],
  1988. [0.0, 0.0],
  1989. [0.0, 0.0],
  1990. [0.0, 0.0],
  1991. [0.0, 0.0],
  1992. [0.0, 0.0],
  1993. [0.0, 0.0],
  1994. [0.0, 0.0],
  1995. [0.0, 0.0],
  1996. [0.0, 0.0],
  1997. [0.0, 0.0],
  1998. [0.0, 0.0],
  1999. [0.0, 0.0],
  2000. [0.0, 0.0],
  2001. [0.0, 0.0],
  2002. [0.0, 0.0],
  2003. [0.0, 0.0],
  2004. [0.0, 0.0],
  2005. [0.0, 0.0],
  2006. [0.0, 0.0],
  2007. [0.0, 0.0],
  2008. [0.0, 0.0],
  2009. [0.0, 0.0],
  2010. [0.0, 0.0],
  2011. [0.0, 0.0],
  2012. [0.0, 0.0],
  2013. [0.0, 0.0],
  2014. [0.0, 0.0],
  2015. [0.0, 0.0],
  2016. [0.0, 0.0],
  2017. [0.0, 0.0],
  2018. [0.0, 0.0],
  2019. [0.0, 0.0],
  2020. [0.0, 0.0],
  2021. [0.0, 0.0],
  2022. [0.0, 0.0],
  2023. [0.0, 0.0],
  2024. [0.0, 0.0],
  2025. [0.0, 0.0],
  2026. [0.0, 0.0],
  2027. [0.0, 0.0],
  2028. [0.0, 0.0],
  2029. [0.0, 0.0],
  2030. [0.0, 0.0],
  2031. [0.0, 0.0],
  2032. [0.0, 0.0],
  2033. [0.0, 0.0],
  2034. [0.0, 0.0],
  2035. [0.0, 0.0],
  2036. [0.0, 0.0],
  2037. [0.0, 0.0],
  2038. [0.0, 0.0],
  2039. [0.0, 0.0],
  2040. [0.0, 0.0],
  2041. [0.0, 0.0],
  2042. [0.0, 0.0],
  2043. [0.0, 0.0],
  2044. [0.0, 0.0],
  2045. [0.0, 0.0],
  2046. [0.0, 0.0],
  2047. [0.0, 0.0],
  2048. [0.0, 0.0],
  2049. [0.0, 0.0],
  2050. [0.0, 0.0],
  2051. [0.0, 0.0],
  2052. [0.0, 0.0],
  2053. [0.0, 0.0],
  2054. [0.0, 0.0],
  2055. [0.0, 0.0],
  2056. [0.0, 0.0],
  2057. [0.0, 0.0],
  2058. [0.0, 0.0],
  2059. [0.0, 0.0],
  2060. [0.0, 0.0],
  2061. [0.0, 0.0],
  2062. [0.0, 0.0],
  2063. [0.0, 0.0],
  2064. [0.0, 0.0],
  2065. [0.0, 0.0],
  2066. [0.0, 0.0],
  2067. [0.0, 0.0],
  2068. [0.0, 0.0],
  2069. [0.0, 0.0],
  2070. [0.0, 0.0],
  2071. [0.0, 0.0],
  2072. [0.0, 0.0],
  2073. [0.0, 0.0],
  2074. [0.0, 0.0],
  2075. [0.0, 0.0],
  2076. [0.0, 0.0],
  2077. [0.0, 0.0],
  2078. [0.0, 0.0],
  2079. [0.0, 0.0],
  2080. [0.0, 0.0],
  2081. [0.0, 0.0],
  2082. [0.0, 0.0],
  2083. [0.0, 0.0],
  2084. [0.0, 0.0],
  2085. [0.0, 0.0],
  2086. [0.0, 0.0],
  2087. [0.0, 0.0],
  2088. [0.0, 0.0],
  2089. [0.0, 0.0],
  2090. [0.0, 0.0],
  2091. [0.0, 0.0],
  2092. [0.0, 0.0],
  2093. [0.0, 0.0],
  2094. [0.0, 0.0],
  2095. [0.0, 0.0],
  2096. [0.0, 0.0],
  2097. [0.0, 0.0],
  2098. [0.0, 0.0],
  2099. [0.0, 0.0],
  2100. [0.0, 0.0],
  2101. [0.0, 0.0],
  2102. [0.0, 0.0],
  2103. [0.0, 0.0],
  2104. [0.0, 0.0],
  2105. [0.0, 0.0],
  2106. [0.0, 0.0],
  2107. [0.0, 0.0],
  2108. [0.0, 0.0],
  2109. [0.0, 0.0],
  2110. [0.0, 0.0],
  2111. [0.0, 0.0],
  2112. [0.0, 0.0],
  2113. [0.0, 0.0],
  2114. [0.0, 0.0],
  2115. [0.0, 0.0],
  2116. [0.0, 0.0],
  2117. [0.0, 0.0],
  2118. [0.0, 0.0],
  2119. [0.0, 0.0],
  2120. [0.0, 0.0],
  2121. [0.0, 0.0],
  2122. [0.0, 0.0],
  2123. [0.0, 0.0],
  2124. [0.0, 0.0],
  2125. [0.0, 0.0],
  2126. [0.0, 0.0],
  2127. [0.0, 0.0],
  2128. [0.0, 0.0],
  2129. [0.0, 0.0],
  2130. [0.0, 0.0],
  2131. [0.0, 0.0],
  2132. [0.0, 0.0],
  2133. [0.0, 0.0],
  2134. [0.0, 0.0],
  2135. [0.0, 0.0],
  2136. [0.0, 0.0],
  2137. [0.0, 0.0],
  2138. [0.0, 0.0],
  2139. [0.0, 0.0],
  2140. [0.0, 0.0],
  2141. [0.0, 0.0],
  2142. [0.0, 0.0],
  2143. [0.0, 0.0],
  2144. [0.0, 0.0],
  2145. [0.0, 0.0],
  2146. [0.0, 0.0],
  2147. [0.0, 0.0],
  2148. [0.0, 0.0],
  2149. [0.0, 0.0],
  2150. [0.0, 0.0],
  2151. [0.0, 0.0],
  2152. [0.0, 0.0],
  2153. [0.0, 0.0],
  2154. [0.0, 0.0],
  2155. [0.0, 0.0],
  2156. [0.0, 0.0],
  2157. [0.0, 0.0],
  2158. [0.0, 0.0],
  2159. [0.0, 0.0],
  2160. [0.0, 0.0],
  2161. [0.0, 0.0],
  2162. [0.0, 0.0],
  2163. [0.0, 0.0],
  2164. [0.0, 0.0],
  2165. [0.0, 0.0],
  2166. [0.0, 0.0],
  2167. [0.0, 0.0],
  2168. [0.0, 0.0],
  2169. [0.0, 0.0],
  2170. [0.0, 0.0],
  2171. [0.0, 0.0],
  2172. [0.0, 0.0],
  2173. [0.0, 0.0],
  2174. [0.0, 0.0],
  2175. [0.0, 0.0],
  2176. [0.0, 0.0],
  2177. [0.0, 0.0],
  2178. [0.0, 0.0],
  2179. [0.0, 0.0],
  2180. [0.0, 0.0],
  2181. [0.0, 0.0],
  2182. [0.0, 0.0],
  2183. [0.0, 0.0],
  2184. [0.0, 0.0],
  2185. [0.0, 0.0],
  2186. [0.0, 0.0],
  2187. [0.0, 0.0],
  2188. [0.0, 0.0],
  2189. [0.0, 0.0],
  2190. [0.0, 0.0],
  2191. [0.0, 0.0],
  2192. [0.0, 0.0],
  2193. [0.0, 0.0],
  2194. [0.0, 0.0],
  2195. [0.0, 0.0],
  2196. [0.0, 0.0],
  2197. [0.0, 0.0],
  2198. [0.0, 0.0],
  2199. [0.0, 0.0],
  2200. [0.0, 0.0],
  2201. [0.0, 0.0],
  2202. [0.0, 0.0],
  2203. [0.0, 0.0],
  2204. [0.0, 0.0],
  2205. [0.0, 0.0],
  2206. [0.0, 0.0],
  2207. [0.0, 0.0],
  2208. [0.0, 0.0],
  2209. [0.0, 0.0],
  2210. [0.0, 0.0],
  2211. [0.0, 0.0],
  2212. [0.0, 0.0],
  2213. [0.0, 0.0],
  2214. [0.0, 0.0],
  2215. [0.0, 0.0],
  2216. [0.0, 0.0],
  2217. [0.0, 0.0],
  2218. [0.0, 0.0],
  2219. [0.0, 0.0],
  2220. [0.0, 0.0],
  2221. [0.0, 0.0],
  2222. [0.0, 0.0],
  2223. [0.0, 0.0],
  2224. [0.0, 0.0],
  2225. [0.0, 0.0],
  2226. [0.0, 0.0],
  2227. [0.0, 0.0],
  2228. [0.0, 0.0],
  2229. [0.0, 0.0],
  2230. [0.0, 0.0],
  2231. [0.0, 0.0],
  2232. [0.0, 0.0],
  2233. [0.0, 0.0],
  2234. [0.0, 0.0],
  2235. [0.0, 0.0],
  2236. [0.0, 0.0],
  2237. [0.0, 0.0],
  2238. [0.0, 0.0],
  2239. [0.0, 0.0],
  2240. [0.0, 0.0],
  2241. [0.0, 0.0],
  2242. [0.0, 0.0],
  2243. [0.0, 0.0],
  2244. [0.0, 0.0],
  2245. [0.0, 0.0],
  2246. [0.0, 0.0],
  2247. [0.0, 0.0],
  2248. [0.0, 0.0],
  2249. [0.0, 0.0],
  2250. [0.0, 0.0],
  2251. [0.0, 0.0],
  2252. [0.0, 0.0],
  2253. [0.0, 0.0],
  2254. [0.0, 0.0],
  2255. [0.0, 0.0],
  2256. [0.0, 0.0],
  2257. [0.0, 0.0],
  2258. [0.0, 0.0],
  2259. [0.0, 0.0],
  2260. [0.0, 0.0],
  2261. [0.0, 0.0],
  2262. [0.0, 0.0],
  2263. [0.0, 0.0],
  2264. [0.0, 0.0],
  2265. [0.0, 0.0],
  2266. [0.0, 0.0],
  2267. [0.0, 0.0],
  2268. [0.0, 0.0],
  2269. [0.0, 0.0],
  2270. [0.0, 0.0],
  2271. [0.0, 0.0],
  2272. [0.0, 0.0],
  2273. [0.0, 0.0],
  2274. [0.0, 0.0],
  2275. [0.0, 0.0],
  2276. [0.0, 0.0],
  2277. [0.0, 0.0],
  2278. [0.0, 0.0],
  2279. [0.0, 0.0],
  2280. [0.0, 0.0],
  2281. [0.0, 0.0],
  2282. [0.0, 0.0],
  2283. [0.0, 0.0],
  2284. [0.0, 0.0],
  2285. [0.0, 0.0],
  2286. [0.0, 0.0],
  2287. [0.0, 0.0],
  2288. [0.0, 0.0],
  2289. [0.0, 0.0],
  2290. [0.0, 0.0],
  2291. [0.0, 0.0],
  2292. [0.0, 0.0],
  2293. [0.0, 0.0],
  2294. [0.0, 0.0],
  2295. [0.0, 0.0],
  2296. [0.0, 0.0],
  2297. [0.0, 0.0],
  2298. [0.0, 0.0],
  2299. [0.0, 0.0],
  2300. [0.0, 0.0],
  2301. [0.0, 0.0],
  2302. [0.0, 0.0],
  2303. [0.0, 0.0],
  2304. [0.0, 0.0],
  2305. [0.0, 0.0],
  2306. [0.0, 0.0],
  2307. [0.0, 0.0],
  2308. [0.0, 0.0],
  2309. [0.0, 0.0],
  2310. [0.0, 0.0],
  2311. [0.0, 0.0],
  2312. [0.0, 0.0],
  2313. [0.0, 0.0],
  2314. [0.0, 0.0],
  2315. [0.0, 0.0],
  2316. [0.0, 0.0],
  2317. [0.0, 0.0],
  2318. [0.0, 0.0],
  2319. [0.0, 0.0],
  2320. [0.0, 0.0],
  2321. [0.0, 0.0],
  2322. [0.0, 0.0],
  2323. [0.0, 0.0],
  2324. [0.0, 0.0],
  2325. [0.0, 0.0],
  2326. [0.0, 0.0],
  2327. [0.0, 0.0],
  2328. [0.0, 0.0],
  2329. [0.0, 0.0],
  2330. [0.0, 0.0],
  2331. [0.0, 0.0],
  2332. [0.0, 0.0],
  2333. [0.0, 0.0],
  2334. [0.0, 0.0],
  2335. [0.0, 0.0],
  2336. [0.0, 0.0],
  2337. [0.0, 0.0],
  2338. [0.0, 0.0],
  2339. [0.0, 0.0],
  2340. [0.0, 0.0],
  2341. [0.0, 0.0],
  2342. [0.0, 0.0],
  2343. [0.0, 0.0],
  2344. [0.0, 0.0],
  2345. [0.0, 0.0],
  2346. [0.0, 0.0],
  2347. [0.0, 0.0],
  2348. [0.0, 0.0],
  2349. [0.0, 0.0],
  2350. [0.0, 0.0],
  2351. [0.0, 0.0],
  2352. [0.0, 0.0],
  2353. [0.0, 0.0],
  2354. [0.0, 0.0],
  2355. [0.0, 0.0],
  2356. [0.0, 0.0],
  2357. [0.0, 0.0],
  2358. [0.0, 0.0],
  2359. [0.0, 0.0],
  2360. [0.0, 0.0],
  2361. [0.0, 0.0],
  2362. [0.0, 0.0],
  2363. [0.0, 0.0],
  2364. [0.0, 0.0],
  2365. [0.0, 0.0],
  2366. [0.0, 0.0],
  2367. [0.0, 0.0],
  2368. [0.0, 0.0],
  2369. [0.0, 0.0],
  2370. [0.0, 0.0],
  2371. [0.0, 0.0],
  2372. [0.0, 0.0],
  2373. [0.0, 0.0],
  2374. [0.0, 0.0],
  2375. [0.0, 0.0],
  2376. [0.0, 0.0],
  2377. [0.0, 0.0],
  2378. [0.0, 0.0],
  2379. [0.0, 0.0],
  2380. [0.0, 0.0],
  2381. [0.0, 0.0],
  2382. [0.0, 0.0],
  2383. [0.0, 0.0],
  2384. [0.0, 0.0],
  2385. [0.0, 0.0],
  2386. [0.0, 0.0],
  2387. [0.0, 0.0],
  2388. [0.0, 0.0],
  2389. [0.0, 0.0],
  2390. [0.0, 0.0],
  2391. [0.0, 0.0],
  2392. [0.0, 0.0],
  2393. [0.0, 0.0],
  2394. [0.0, 0.0],
  2395. [0.0, 0.0],
  2396. [0.0, 0.0],
  2397. [0.0, 0.0],
  2398. [0.0, 0.0],
  2399. [0.0, 0.0],
  2400. [0.0, 0.0],
  2401. [0.0, 0.0],
  2402. [0.0, 0.0],
  2403. [0.0, 0.0],
  2404. [0.0, 0.0],
  2405. [0.0, 0.0],
  2406. [0.0, 0.0],
  2407. [0.0, 0.0],
  2408. [0.0, 0.0],
  2409. [0.0, 0.0],
  2410. [0.0, 0.0],
  2411. [0.0, 0.0],
  2412. [0.0, 0.0],
  2413. [0.0, 0.0],
  2414. [0.0, 0.0],
  2415. [0.0, 0.0],
  2416. [0.0, 0.0],
  2417. [0.0, 0.0],
  2418. [0.0, 0.0],
  2419. [0.0, 0.0],
  2420. [0.0, 0.0],
  2421. [0.0, 0.0],
  2422. [0.0, 0.0],
  2423. [0.0, 0.0],
  2424. [0.0, 0.0],
  2425. [0.0, 0.0],
  2426. [0.0, 0.0],
  2427. [0.0, 0.0],
  2428. [0.0, 0.0],
  2429. [0.0, 0.0],
  2430. [0.0, 0.0],
  2431. [0.0, 0.0],
  2432. [0.0, 0.0],
  2433. [0.0, 0.0],
  2434. [0.0, 0.0],
  2435. [0.0, 0.0],
  2436. [0.0, 0.0],
  2437. [0.0, 0.0],
  2438. [0.0, 0.0],
  2439. [0.0, 0.0],
  2440. [0.0, 0.0],
  2441. [0.0, 0.0],
  2442. [0.0, 0.0],
  2443. [0.0, 0.0],
  2444. [0.0, 0.0],
  2445. [0.0, 0.0],
  2446. [0.0, 0.0],
  2447. [0.0, 0.0],
  2448. [0.0, 0.0],
  2449. [0.0, 0.0],
  2450. [0.0, 0.0],
  2451. [0.0, 0.0],
  2452. [0.0, 0.0],
  2453. [0.0, 0.0],
  2454. [0.0, 0.0],
  2455. [0.0, 0.0],
  2456. [0.0, 0.0],
  2457. [0.0, 0.0],
  2458. [0.0, 0.0],
  2459. [0.0, 0.0],
  2460. [0.0, 0.0],
  2461. [0.0, 0.0],
  2462. [0.0, 0.0],
  2463. [0.0, 0.0],
  2464. [0.0, 0.0],
  2465. [0.0, 0.0],
  2466. [0.0, 0.0],
  2467. [0.0, 0.0],
  2468. [0.0, 0.0],
  2469. [0.0, 0.0],
  2470. [0.0, 0.0],
  2471. [0.0, 0.0],
  2472. [0.0, 0.0],
  2473. [0.0, 0.0],
  2474. [0.0, 0.0],
  2475. [0.0, 0.0],
  2476. [0.0, 0.0],
  2477. [0.0, 0.0],
  2478. [0.0, 0.0],
  2479. [0.0, 0.0],
  2480. [0.0, 0.0],
  2481. [0.0, 0.0],
  2482. [0.0, 0.0],
  2483. [0.0, 0.0],
  2484. [0.0, 0.0],
  2485. [0.0, 0.0],
  2486. [0.0, 0.0],
  2487. [0.0, 0.0],
  2488. [0.0, 0.0],
  2489. [0.0, 0.0],
  2490. [0.0, 0.0],
  2491. [0.0, 0.0],
  2492. [0.0, 0.0],
  2493. [0.0, 0.0],
  2494. [0.0, 0.0],
  2495. [0.0, 0.0],
  2496. [0.0, 0.0],
  2497. [0.0, 0.0],
  2498. [0.0, 0.0],
  2499. [0.0, 0.0],
  2500. [0.0, 0.0],
  2501. [0.0, 0.0],
  2502. [0.0, 0.0],
  2503. [0.0, 0.0],
  2504. [0.0, 0.0],
  2505. [0.0, 0.0],
  2506. [0.0, 0.0],
  2507. [0.0, 0.0],
  2508. [0.0, 0.0],
  2509. [0.0, 0.0],
  2510. [0.0, 0.0],
  2511. [0.0, 0.0],
  2512. [0.0, 0.0],
  2513. [0.0, 0.0],
  2514. [0.0, 0.0],
  2515. [0.0, 0.0],
  2516. [0.0, 0.0],
  2517. [0.0, 0.0],
  2518. [0.0, 0.0],
  2519. [0.0, 0.0],
  2520. [0.0, 0.0],
  2521. [0.0, 0.0],
  2522. [0.0, 0.0],
  2523. [0.0, 0.0],
  2524. [0.0, 0.0],
  2525. [0.0, 0.0],
  2526. [0.0, 0.0],
  2527. [0.0, 0.0],
  2528. [0.0, 0.0],
  2529. [0.0, 0.0],
  2530. [0.0, 0.0],
  2531. [0.0, 0.0],
  2532. [0.0, 0.0],
  2533. [0.0, 0.0],
  2534. [0.0, 0.0],
  2535. [0.0, 0.0],
  2536. [0.0, 0.0],
  2537. [0.0, 0.0],
  2538. [0.0, 0.0],
  2539. [0.0, 0.0],
  2540. [3.23, 0.11],
  2541. [4.24, 2.28],
  2542. [5.28, 5.47],
  2543. [0.0, 4.62],
  2544. [4.27, 2.54],
  2545. [0.0, 2.57],
  2546. [0.0, 0.0],
  2547. [0.0, 3.82],
  2548. [0.0, 0.0],
  2549. [0.0, 3.96],
  2550. [0.0, 2.94],
  2551. [5.28, 6.48],
  2552. [0.0, 7.49],
  2553. [0.0, 4.25],
  2554. [4.26, 6.63],
  2555. [5.35, 11.28],
  2556. [0.0, 6.94],
  2557. [0.0, 7.99],
  2558. [0.0, 7.87],
  2559. [0.0, 5.81],
  2560. [0.0, 7.96],
  2561. [0.0, 5.81],
  2562. [0.0, 4.62],
  2563. [4.34, 5.61],
  2564. [5.34, 9.88],
  2565. [0.0, 7.85],
  2566. [0.0, 9.89],
  2567. [6.41, 15.84],
  2568. [5.4, 8.28],
  2569. [6.45, 14.09],
  2570. [0.0, 11.05],
  2571. [5.44, 7.84],
  2572. [0.0, 11.15],
  2573. [6.45, 8.96],
  2574. [5.42, 12.3],
  2575. [6.49, 11.18],
  2576. [5.45, 7.79],
  2577. [0.0, 8.92],
  2578. [6.51, 10.34],
  2579. [0.0, 10.37],
  2580. [5.5, 7.11],
  2581. [0.0, 6.0],
  2582. [0.0, 4.94],
  2583. [0.0, 5.96],
  2584. [0.0, 5.94],
  2585. [0.0, 0.0],
  2586. [0.0, 4.93],
  2587. [4.49, 2.86],
  2588. [3.49, 1.84],
  2589. [0.0, 0.0],
  2590. [0.0, 3.86],
  2591. [4.5, 4.89],
  2592. [0.0, 5.91],
  2593. [0.0, 6.92],
  2594. [0.0, 7.93],
  2595. [5.53, 0.0],
  2596. [0.0, 9.01],
  2597. [0.0, 0.0],
  2598. [0.0, 10.06],
  2599. [0.0, 9.06],
  2600. [0.0, 0.0],
  2601. [0.0, 7.98],
  2602. [0.0, 6.89],
  2603. [0.0, 5.88],
  2604. [0.0, 0.0],
  2605. [4.52, 4.84],
  2606. [0.0, 0.0],
  2607. [0.0, 0.0],
  2608. [0.0, 5.87],
  2609. [0.0, 4.86],
  2610. [0.0, 0.0],
  2611. [0.0, 3.81],
  2612. [0.0, 0.0],
  2613. [0.0, 2.79],
  2614. [0.0, 0.0],
  2615. [0.0, 0.0],
  2616. [3.51, 1.77],
  2617. [2.49, 0.77],
  2618. [0.0, 0.0],
  2619. [1.49, 0.0],
  2620. [0.0, 0.0],
  2621. [0.0, 0.0],
  2622. [0.0, 0.0],
  2623. [0.0, 0.0],
  2624. [0.0, 0.0],
  2625. [0.0, 0.0],
  2626. [0.0, 0.0],
  2627. [0.0, 0.0],
  2628. [0.0, 0.0],
  2629. [0.0, 0.0],
  2630. [0.0, 0.0],
  2631. [0.0, 0.0],
  2632. [0.0, 0.0],
  2633. [0.0, 0.0],
  2634. [0.0, 0.0],
  2635. [0.0, 0.0],
  2636. [0.0, 0.0],
  2637. [0.0, 0.0],
  2638. [0.0, 0.0],
  2639. [0.0, 0.0],
  2640. [0.0, 0.0],
  2641. [0.0, 0.0],
  2642. [0.0, 0.0],
  2643. [0.0, 0.0],
  2644. [0.0, 0.0],
  2645. [0.0, 0.0],
  2646. [0.0, 0.0],
  2647. [0.0, 0.0],
  2648. [0.0, 0.0],
  2649. [0.0, 0.0],
  2650. [0.0, 0.0],
  2651. [0.0, 0.0],
  2652. [0.0, 0.0],
  2653. [0.0, 0.0],
  2654. [0.0, 0.0],
  2655. [0.0, 0.0],
  2656. [0.0, 0.0],
  2657. [0.0, 0.0],
  2658. [0.0, 0.0],
  2659. [0.0, 0.0],
  2660. [0.0, 0.0],
  2661. [0.0, 0.0],
  2662. [2.55, 0.0],
  2663. [0.0, 0.0],
  2664. [0.0, 0.0],
  2665. [0.0, 0.0],
  2666. [0.0, 0.0],
  2667. [0.0, 0.0],
  2668. [0.0, 0.0],
  2669. [0.0, 0.0],
  2670. [0.0, 0.0],
  2671. [0.0, 0.0],
  2672. [0.0, 0.0],
  2673. [3.57, 1.05],
  2674. [0.0, 1.05],
  2675. [0.0, 0.0],
  2676. [0.0, 0.0],
  2677. [0.0, 0.05],
  2678. [0.0, 0.0],
  2679. [0.0, 0.0],
  2680. [0.0, 1.08],
  2681. [0.0, 0.0],
  2682. [0.0, 0.0],
  2683. [2.5, 0.0],
  2684. [0.0, 0.05],
  2685. [0.0, 0.0],
  2686. [3.55, 0.0],
  2687. [0.0, 1.07],
  2688. [0.0, 0.0],
  2689. [2.51, 0.0],
  2690. [3.52, 0.0],
  2691. [0.0, 1.28],
  2692. [4.52, 1.32],
  2693. [3.48, 1.26],
  2694. [0.0, 2.36],
  2695. [4.48, 4.79],
  2696. [5.52, 7.94],
  2697. [4.48, 3.7],
  2698. [0.0, 2.66],
  2699. [3.43, 1.66],
  2700. [0.0, 0.0],
  2701. [4.44, 3.72],
  2702. [0.0, 2.68],
  2703. [2.4, 0.61],
  2704. [0.0, 0.0],
  2705. [4.44, 1.7],
  2706. [3.41, 1.68],
  2707. [0.0, 0.57],
  2708. [0.0, 1.68],
  2709. [0.0, 2.68],
  2710. [0.0, 0.6],
  2711. [2.4, 0.0],
  2712. [3.41, 0.0],
  2713. [4.41, 2.05],
  2714. [3.4, 1.02],
  2715. ],
  2716. },
  2717. ],
  2718. },
  2719. ],
  2720. dialogTableVisible: false,
  2721. cascader: {
  2722. props: { multiple: true },
  2723. options: [
  2724. {
  2725. value: 1,
  2726. label: "东南",
  2727. children: [
  2728. {
  2729. value: 2,
  2730. label: "上海",
  2731. children: [
  2732. { value: 3, label: "普陀" },
  2733. { value: 4, label: "黄埔" },
  2734. { value: 5, label: "徐汇" },
  2735. ],
  2736. },
  2737. {
  2738. value: 7,
  2739. label: "江苏",
  2740. children: [
  2741. { value: 8, label: "南京" },
  2742. { value: 9, label: "苏州" },
  2743. { value: 10, label: "无锡" },
  2744. ],
  2745. },
  2746. {
  2747. value: 12,
  2748. label: "浙江",
  2749. children: [
  2750. { value: 13, label: "杭州" },
  2751. { value: 14, label: "宁波" },
  2752. { value: 15, label: "嘉兴" },
  2753. ],
  2754. },
  2755. ],
  2756. },
  2757. {
  2758. value: 17,
  2759. label: "西北",
  2760. children: [
  2761. {
  2762. value: 18,
  2763. label: "陕西",
  2764. children: [
  2765. { value: 19, label: "西安" },
  2766. { value: 20, label: "延安" },
  2767. ],
  2768. },
  2769. {
  2770. value: 21,
  2771. label: "新疆维吾尔族自治区",
  2772. children: [
  2773. { value: 22, label: "乌鲁木齐" },
  2774. { value: 23, label: "克拉玛依" },
  2775. ],
  2776. },
  2777. ],
  2778. },
  2779. ],
  2780. },
  2781. treeTableData: [
  2782. {
  2783. id: 1,
  2784. date: "2016-05-02",
  2785. name: "王小虎",
  2786. address: "上海市普陀区金沙江路 1518 弄",
  2787. },
  2788. {
  2789. id: 2,
  2790. date: "2016-05-04",
  2791. name: "王小虎",
  2792. address: "上海市普陀区金沙江路 1517 弄",
  2793. },
  2794. {
  2795. id: 3,
  2796. date: "2016-05-01",
  2797. name: "王小虎",
  2798. address: "上海市普陀区金沙江路 1519 弄",
  2799. children: [
  2800. {
  2801. id: 31,
  2802. date: "2016-05-01",
  2803. name: "王小虎",
  2804. address: "上海市普陀区金沙江路 1519 弄",
  2805. },
  2806. {
  2807. id: 32,
  2808. date: "2016-05-01",
  2809. name: "王小虎",
  2810. address: "上海市普陀区金沙江路 1519 弄",
  2811. },
  2812. ],
  2813. },
  2814. {
  2815. id: 4,
  2816. date: "2016-05-03",
  2817. name: "王小虎",
  2818. address: "上海市普陀区金沙江路 1516 弄",
  2819. },
  2820. ],
  2821. tableMergeData: [],
  2822. createSum: false,
  2823. tableMergeStyleShow: true,
  2824. };
  2825. },
  2826. created() {
  2827. for (let i = 1; i < 21; i++) {
  2828. this.tableData.data.push(
  2829. JSON.parse(JSON.stringify(this.tableData.data[0]))
  2830. );
  2831. this.tableData.data[i].index = i + 1;
  2832. this.tableData2.data.push(
  2833. JSON.parse(JSON.stringify(this.tableData.data[0]))
  2834. );
  2835. this.tableData2.data[i].index = i + 1;
  2836. this.tableData2.data[i].yyy = i * 0.01 * Math.random();
  2837. }
  2838. this.createMergeTable(this.createSum);
  2839. },
  2840. mounted() {},
  2841. };
  2842. </script>
  2843. <style lang="less" scoped>
  2844. .tools {
  2845. display: flex;
  2846. line-height: 3.4259vh;
  2847. .tool-block {
  2848. display: flex;
  2849. align-items: center;
  2850. margin-left: 10px;
  2851. .legend {
  2852. flex: auto;
  2853. width: 10px;
  2854. height: 10px;
  2855. margin-right: 10px;
  2856. &.long {
  2857. width: 2.963vh;
  2858. height: 0.37vh;
  2859. }
  2860. }
  2861. .legend-text {
  2862. color: @gray-l;
  2863. font-size: @fontsize-s;
  2864. }
  2865. }
  2866. }
  2867. </style>