openatc-components 0.5.11 → 0.5.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (361) hide show
  1. package/.babelrc +18 -18
  2. package/.editorconfig +9 -9
  3. package/.eslintignore +5 -5
  4. package/.eslintrc.js +31 -31
  5. package/.postcssrc.js +10 -10
  6. package/README.md +30 -30
  7. package/build/build.js +41 -41
  8. package/build/check-versions.js +54 -54
  9. package/build/package.config.js +58 -58
  10. package/build/package.dev.config.js +107 -107
  11. package/build/package.prod.config.js +160 -160
  12. package/build/utils.js +101 -101
  13. package/build/vue-loader.conf.js +22 -22
  14. package/build/webpack.base.conf.js +120 -120
  15. package/build/webpack.dev.conf.js +95 -95
  16. package/build/webpack.prod.conf.js +149 -149
  17. package/config/prod.env.js +5 -5
  18. package/config/test.env.js +7 -7
  19. package/index.html +12 -12
  20. package/package/kisscomps/components/Channelization/Channelization.vue +585 -585
  21. package/package/kisscomps/components/ChannelizationFlowStatistic/ChannelizationFlowStatistic.vue +360 -360
  22. package/package/kisscomps/components/ChannelizationWithInterface/ChannelizationWithInterface.vue +518 -518
  23. package/package/kisscomps/components/CommonKanban/CommonKanban.vue +132 -132
  24. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-east-bottom.vue +41 -41
  25. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-east-top.vue +60 -60
  26. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-ewped.vue +105 -105
  27. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-north-left.vue +60 -60
  28. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-north-right.vue +60 -60
  29. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-snped.vue +105 -105
  30. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-south-left.vue +60 -60
  31. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-south-right.vue +60 -60
  32. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-west-bottom.vue +60 -60
  33. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-west-top.vue +60 -60
  34. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-xlped.vue +30 -30
  35. package/package/kisscomps/components/DirectionListConfiguration/svg/ped-xrped.vue +30 -30
  36. package/package/kisscomps/components/DirectionListConfiguration/svg/pedSvg.vue +78 -78
  37. package/package/kisscomps/components/DrawChannelization/drawsvg/basicCoordInfo.vue +181 -181
  38. package/package/kisscomps/components/DrawChannelization/drawsvg/channelizationElements.vue +255 -255
  39. package/package/kisscomps/components/DrawChannelization/drawsvg/detectorAssociatedComponent.vue +152 -152
  40. package/package/kisscomps/components/DrawChannelization/drawsvg/drawElement/TextBox.vue +91 -91
  41. package/package/kisscomps/components/DrawChannelization/drawsvg/drawElement/crossMap.vue +194 -194
  42. package/package/kisscomps/components/DrawChannelization/drawsvg/drawElement/editText.vue +108 -108
  43. package/package/kisscomps/components/DrawChannelization/drawsvg/firstImportCrossmap.vue +51 -51
  44. package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/countdownSvg.vue +236 -236
  45. package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/detectorChart.vue +247 -247
  46. package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/detectorIconSvg.vue +210 -210
  47. package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/laneIcon.vue +72 -72
  48. package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/motorwayIconSvg.vue +368 -368
  49. package/package/kisscomps/components/DrawChannelization/drawsvg/iconSvg/pedroadIconSvg.vue +230 -230
  50. package/package/kisscomps/components/DrawChannelization/drawsvg/importDialog.vue +74 -74
  51. package/package/kisscomps/components/DrawChannelization/drawsvg/index.vue +144 -144
  52. package/package/kisscomps/components/DrawChannelization/drawsvg/laneEditPanel.vue +707 -707
  53. package/package/kisscomps/components/DrawChannelization/drawsvg/overlapAssociatedComponent.vue +172 -172
  54. package/package/kisscomps/components/DrawChannelization/drawsvg/table.vue +99 -99
  55. package/package/kisscomps/components/DrawChannelization/drawsvg/utils/loadutils.js +87 -87
  56. package/package/kisscomps/components/DrawChannelization/drawsvg/utils/phaseDataModel.js +32 -32
  57. package/package/kisscomps/components/DrawChannelization/drawsvg/utils/phasePos.json +20 -20
  58. package/package/kisscomps/components/DrawChannelization/phaseDataMgr.js +278 -278
  59. package/package/kisscomps/components/ExpendConfig/ExpendConfig.vue +118 -118
  60. package/package/kisscomps/components/FaultDetailModal/FaultDetailModal.vue +178 -178
  61. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/CrossRoadsSvg.vue +629 -629
  62. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/CustomRoadsSvg.vue +46 -46
  63. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/PedSectionEWSvg.vue +447 -447
  64. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/PedSectionSNSvg.vue +341 -341
  65. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampEastSvg.vue +497 -497
  66. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampNorthSvg.vue +353 -353
  67. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampSouthSvg.vue +359 -359
  68. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampWestSvg.vue +443 -443
  69. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/SidewalkClickSvg.vue +17 -1
  70. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/SidewalkSvg.vue +1190 -1190
  71. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeEastRoadsSvg.vue +498 -498
  72. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeNorthRoadsSvg.vue +484 -484
  73. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeSouthRoadsSvg.vue +488 -488
  74. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeWestRoadsSvg.vue +566 -566
  75. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LCrossRoadsSvg.vue +640 -640
  76. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeEastRoadsSvg.vue +497 -497
  77. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeNorthRoadsSvg.vue +486 -486
  78. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeSouthRoadsSvg.vue +490 -490
  79. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeWestRoadsSvg.vue +575 -575
  80. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/refreshSvg.vue +63 -63
  81. package/package/kisscomps/components/IntersectionMap/crossDirection/busIcon/busMapSvg.vue +50 -50
  82. package/package/kisscomps/components/IntersectionMap/crossDirection/busIcon/eastBusSvg.vue +167 -167
  83. package/package/kisscomps/components/IntersectionMap/crossDirection/busIcon/northBusSvg.vue +168 -168
  84. package/package/kisscomps/components/IntersectionMap/crossDirection/busIcon/southBusSvg.vue +168 -168
  85. package/package/kisscomps/components/IntersectionMap/crossDirection/busIcon/westBusSvg.vue +169 -169
  86. package/package/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +61 -2
  87. package/package/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/phaseIconSvg.vue +29 -2
  88. package/package/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/rampPhaseIconSvg.vue +122 -122
  89. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/busPos.json +196 -196
  90. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/busPos.left.json +196 -196
  91. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.left.json +115 -115
  92. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/rampPos.json +52 -52
  93. package/package/kisscomps/components/IntersectionWithInterface/IntersectionWithInterface.vue +534 -534
  94. package/package/kisscomps/components/KanBan/kanban.vue +231 -231
  95. package/package/kisscomps/components/MessageBox/index.vue +96 -96
  96. package/package/kisscomps/components/OverviewComponent/index.vue +2 -0
  97. package/package/kisscomps/components/PatternOptimize/PatternOptimize.vue +329 -329
  98. package/package/kisscomps/components/PatternWalkSvg/PatternWalkSvg.vue +423 -423
  99. package/package/kisscomps/components/PhaseDirectionSelect/PhaseDirectionSelect.vue +126 -126
  100. package/package/kisscomps/components/PhaseDirectionText/PhaseDirectionText.vue +106 -106
  101. package/package/kisscomps/components/PhaseLegend/PhaseLegend.vue +286 -286
  102. package/package/kisscomps/components/PhaseMarker/index.js +6 -6
  103. package/package/kisscomps/components/PhaseMarker/phasemarker.vue +215 -215
  104. package/package/kisscomps/components/PhaseMarker/svg/patternSvg.vue +121 -121
  105. package/package/kisscomps/components/PhaseMarker/svg/phase.vue +60 -60
  106. package/package/kisscomps/components/PhaseMarker/svg/phaseCount.vue +62 -62
  107. package/package/kisscomps/components/PhaseMarker/svg/phaseCountCycle.vue +62 -62
  108. package/package/kisscomps/components/PhaseMarker/svg/phaseSvg.vue +117 -117
  109. package/package/kisscomps/components/PhasePedSelect/index.vue +206 -206
  110. package/package/kisscomps/components/SchemeConfig/azimuthlocking/index.vue +365 -365
  111. package/package/kisscomps/components/SchemeConfig/azimuthlocking/utils.js +92 -92
  112. package/package/kisscomps/components/SchemeConfig/closePhaselControlModal/index.vue +214 -214
  113. package/package/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +235 -235
  114. package/package/kisscomps/components/SchemeConfig/manualControlModal/index.vue +235 -235
  115. package/package/kisscomps/components/SchemeConfig/manualControlModalNew/controlModelGroup.vue +131 -131
  116. package/package/kisscomps/components/SchemeConfig/manualControlModalNew/othersIcon.vue +151 -151
  117. package/package/kisscomps/components/SchemeConfig/priorityControl/index.vue +215 -215
  118. package/package/kisscomps/components/SchemeConfig/priorityControl/utils.js +163 -163
  119. package/package/kisscomps/components/SchemeConfig/realtimeStatusModal/index.vue +308 -308
  120. package/package/kisscomps/components/SchemeConfig/utils/thirdPartypermission.js +95 -95
  121. package/package/kisscomps/components/StageOptimize/StageOptimize.vue +367 -367
  122. package/package/kisscomps/components/StageOptimize/index.js +2 -2
  123. package/package/kisscomps/components/StageStatus/StageStatus.vue +341 -341
  124. package/package/kisscomps/components/SvgIcon/SvgIcon.vue +53 -53
  125. package/package/kisscomps/components/XiaoKanban/DirSelector.vue +356 -356
  126. package/package/kisscomps/components/XiaoKanban/index.vue +122 -122
  127. package/package/kisscomps/components/patternConfig/pattern/planChart/model/coordinationModel.js +665 -665
  128. package/package/kisscomps/components/patternConfig/planContent.vue +604 -604
  129. package/package/kisscomps/components/patternConfig/planMenu.vue +329 -329
  130. package/package/kissui.min.js +1 -1
  131. package/package.json +1 -1
  132. package/src/EdgeMgr/EdgeModelBase.js +16 -16
  133. package/src/EdgeMgr/controller/crossDiagramMgr.js +125 -125
  134. package/src/api/authapi.js +31 -31
  135. package/src/api/config.js +21 -21
  136. package/src/api/control.js +110 -110
  137. package/src/api/device.js +135 -135
  138. package/src/api/fault.js +66 -66
  139. package/src/api/index.js +24 -24
  140. package/src/api/login.js +46 -46
  141. package/src/api/optimize.js +72 -72
  142. package/src/api/param.js +165 -165
  143. package/src/api/passwdAssest.js +101 -101
  144. package/src/api/permission.js +33 -33
  145. package/src/api/route.js +171 -171
  146. package/src/assets/font/LICENSE.txt +202 -202
  147. package/src/assets/font/font.css +6 -6
  148. package/src/i18n/index.js +26 -26
  149. package/src/i18n/language/en.js +2 -1
  150. package/src/i18n/language/zh.js +2 -1
  151. package/src/icons/index.js +20 -20
  152. package/src/icons/svg/azimuthlocking.svg +26 -26
  153. package/src/icons/svg/bendi.svg +110 -110
  154. package/src/icons/svg/bujin.svg +36 -36
  155. package/src/icons/svg/connectBlue.svg +7 -7
  156. package/src/icons/svg/currentvolume.svg +0 -0
  157. package/src/icons/svg/custom-BRTlane.svg +40 -40
  158. package/src/icons/svg/custom-buslane.svg +40 -40
  159. package/src/icons/svg/custom-detector.svg +12 -12
  160. package/src/icons/svg/custom-east-bottom.svg +32 -32
  161. package/src/icons/svg/custom-east-top.svg +32 -32
  162. package/src/icons/svg/custom-ewped.svg +35 -35
  163. package/src/icons/svg/custom-nonmotorizedlane.svg +40 -40
  164. package/src/icons/svg/custom-north-left.svg +32 -32
  165. package/src/icons/svg/custom-north-right.svg +32 -32
  166. package/src/icons/svg/custom-peddetector.svg +17 -17
  167. package/src/icons/svg/custom-snped.svg +35 -35
  168. package/src/icons/svg/custom-south-left.svg +32 -32
  169. package/src/icons/svg/custom-south-right.svg +32 -32
  170. package/src/icons/svg/custom-tramlane.svg +40 -40
  171. package/src/icons/svg/custom-vehiclebranch.svg +40 -40
  172. package/src/icons/svg/custom-vehiclemainroad.svg +41 -41
  173. package/src/icons/svg/custom-west-bottom.svg +32 -32
  174. package/src/icons/svg/custom-west-top.svg +32 -32
  175. package/src/icons/svg/custom-xlped.svg +14 -14
  176. package/src/icons/svg/custom-xrped.svg +14 -14
  177. package/src/icons/svg/cutRed.svg +7 -7
  178. package/src/icons/svg/cycle.svg +0 -0
  179. package/src/icons/svg/dingzhouqi.svg +34 -34
  180. package/src/icons/svg/ganyingkongzhi.svg +30 -30
  181. package/src/icons/svg/guandeng.svg +81 -81
  182. package/src/icons/svg/huangshan.svg +71 -71
  183. package/src/icons/svg/maincontrol.svg +0 -0
  184. package/src/icons/svg/manualcontrolbackground.svg +51 -51
  185. package/src/icons/svg/manualcontrolbackground1.svg +62 -62
  186. package/src/icons/svg/manualcontrolbackgrounden.svg +62 -62
  187. package/src/icons/svg/model.svg +0 -0
  188. package/src/icons/svg/phasediff.svg +0 -0
  189. package/src/icons/svg/prioritycontrol.svg +21 -21
  190. package/src/icons/svg/quanhong.svg +86 -86
  191. package/src/icons/svg/shanghe.svg +11 -11
  192. package/src/icons/svg/shoudong.svg +103 -103
  193. package/src/icons/svg/tentativeplan.svg +28 -28
  194. package/src/icons/svg/time.svg +0 -0
  195. package/src/icons/svg/wuxianlan.svg +46 -46
  196. package/src/icons/svg/xiala.svg +11 -11
  197. package/src/icons/svg/xingrenguojie.svg +33 -33
  198. package/src/icons/svg/xitong.svg +89 -89
  199. package/src/icons/svg/youxian.svg +41 -41
  200. package/src/icons/svg/zizhukongzhi.svg +43 -43
  201. package/src/kisscomps/components/Channelization/Channelization.vue +585 -585
  202. package/src/kisscomps/components/ChannelizationFlowStatistic/ChannelizationFlowStatistic.vue +360 -360
  203. package/src/kisscomps/components/ChannelizationWithInterface/ChannelizationWithInterface.vue +518 -518
  204. package/src/kisscomps/components/CommonKanban/CommonKanban.vue +132 -132
  205. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-east-bottom.vue +41 -41
  206. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-east-top.vue +60 -60
  207. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-ewped.vue +105 -105
  208. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-north-left.vue +60 -60
  209. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-north-right.vue +60 -60
  210. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-snped.vue +105 -105
  211. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-south-left.vue +60 -60
  212. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-south-right.vue +60 -60
  213. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-west-bottom.vue +60 -60
  214. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-west-top.vue +60 -60
  215. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-xlped.vue +30 -30
  216. package/src/kisscomps/components/DirectionListConfiguration/svg/ped-xrped.vue +30 -30
  217. package/src/kisscomps/components/DirectionListConfiguration/svg/pedSvg.vue +78 -78
  218. package/src/kisscomps/components/DrawChannelization/drawsvg/basicCoordInfo.vue +181 -181
  219. package/src/kisscomps/components/DrawChannelization/drawsvg/channelizationElements.vue +255 -255
  220. package/src/kisscomps/components/DrawChannelization/drawsvg/detectorAssociatedComponent.vue +152 -152
  221. package/src/kisscomps/components/DrawChannelization/drawsvg/drawElement/TextBox.vue +91 -91
  222. package/src/kisscomps/components/DrawChannelization/drawsvg/drawElement/crossMap.vue +194 -194
  223. package/src/kisscomps/components/DrawChannelization/drawsvg/drawElement/editText.vue +108 -108
  224. package/src/kisscomps/components/DrawChannelization/drawsvg/firstImportCrossmap.vue +51 -51
  225. package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/countdownSvg.vue +236 -236
  226. package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/detectorChart.vue +247 -247
  227. package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/detectorIconSvg.vue +210 -210
  228. package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/laneIcon.vue +72 -72
  229. package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/motorwayIconSvg.vue +368 -368
  230. package/src/kisscomps/components/DrawChannelization/drawsvg/iconSvg/pedroadIconSvg.vue +230 -230
  231. package/src/kisscomps/components/DrawChannelization/drawsvg/importDialog.vue +74 -74
  232. package/src/kisscomps/components/DrawChannelization/drawsvg/index.vue +144 -144
  233. package/src/kisscomps/components/DrawChannelization/drawsvg/laneEditPanel.vue +707 -707
  234. package/src/kisscomps/components/DrawChannelization/drawsvg/overlapAssociatedComponent.vue +172 -172
  235. package/src/kisscomps/components/DrawChannelization/drawsvg/table.vue +99 -99
  236. package/src/kisscomps/components/DrawChannelization/drawsvg/utils/loadutils.js +87 -87
  237. package/src/kisscomps/components/DrawChannelization/drawsvg/utils/phaseDataModel.js +32 -32
  238. package/src/kisscomps/components/DrawChannelization/drawsvg/utils/phasePos.json +20 -20
  239. package/src/kisscomps/components/DrawChannelization/phaseDataMgr.js +278 -278
  240. package/src/kisscomps/components/ExpendConfig/ExpendConfig.vue +118 -118
  241. package/src/kisscomps/components/FaultDetailModal/FaultDetailModal.vue +178 -178
  242. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/CrossRoadsSvg.vue +629 -629
  243. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/CustomRoadsSvg.vue +46 -46
  244. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/PedSectionEWSvg.vue +447 -447
  245. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/PedSectionSNSvg.vue +341 -341
  246. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampEastSvg.vue +497 -497
  247. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampNorthSvg.vue +353 -353
  248. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampSouthSvg.vue +359 -359
  249. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampWestSvg.vue +443 -443
  250. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/SidewalkClickSvg.vue +17 -1
  251. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/SidewalkSvg.vue +1190 -1190
  252. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeEastRoadsSvg.vue +498 -498
  253. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeNorthRoadsSvg.vue +484 -484
  254. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeSouthRoadsSvg.vue +488 -488
  255. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeWestRoadsSvg.vue +566 -566
  256. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LCrossRoadsSvg.vue +640 -640
  257. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeEastRoadsSvg.vue +497 -497
  258. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeNorthRoadsSvg.vue +486 -486
  259. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeSouthRoadsSvg.vue +490 -490
  260. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeWestRoadsSvg.vue +575 -575
  261. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/refreshSvg.vue +63 -63
  262. package/src/kisscomps/components/IntersectionMap/crossDirection/busIcon/busMapSvg.vue +50 -50
  263. package/src/kisscomps/components/IntersectionMap/crossDirection/busIcon/eastBusSvg.vue +167 -167
  264. package/src/kisscomps/components/IntersectionMap/crossDirection/busIcon/northBusSvg.vue +168 -168
  265. package/src/kisscomps/components/IntersectionMap/crossDirection/busIcon/southBusSvg.vue +168 -168
  266. package/src/kisscomps/components/IntersectionMap/crossDirection/busIcon/westBusSvg.vue +169 -169
  267. package/src/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +61 -2
  268. package/src/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/phaseIconSvg.vue +29 -2
  269. package/src/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/rampPhaseIconSvg.vue +122 -122
  270. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/busPos.json +196 -196
  271. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/busPos.left.json +196 -196
  272. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.left.json +115 -115
  273. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/rampPos.json +52 -52
  274. package/src/kisscomps/components/IntersectionWithInterface/IntersectionWithInterface.vue +534 -534
  275. package/src/kisscomps/components/KanBan/kanban.vue +231 -231
  276. package/src/kisscomps/components/MessageBox/index.vue +96 -96
  277. package/src/kisscomps/components/OverviewComponent/index.vue +2 -0
  278. package/src/kisscomps/components/PatternOptimize/PatternOptimize.vue +329 -329
  279. package/src/kisscomps/components/PatternWalkSvg/PatternWalkSvg.vue +423 -423
  280. package/src/kisscomps/components/PhaseDirectionSelect/PhaseDirectionSelect.vue +126 -126
  281. package/src/kisscomps/components/PhaseDirectionText/PhaseDirectionText.vue +106 -106
  282. package/src/kisscomps/components/PhaseLegend/PhaseLegend.vue +286 -286
  283. package/src/kisscomps/components/PhaseMarker/index.js +6 -6
  284. package/src/kisscomps/components/PhaseMarker/phasemarker.vue +215 -215
  285. package/src/kisscomps/components/PhaseMarker/svg/patternSvg.vue +121 -121
  286. package/src/kisscomps/components/PhaseMarker/svg/phase.vue +60 -60
  287. package/src/kisscomps/components/PhaseMarker/svg/phaseCount.vue +62 -62
  288. package/src/kisscomps/components/PhaseMarker/svg/phaseCountCycle.vue +62 -62
  289. package/src/kisscomps/components/PhaseMarker/svg/phaseSvg.vue +117 -117
  290. package/src/kisscomps/components/PhasePedSelect/index.vue +206 -206
  291. package/src/kisscomps/components/SchemeConfig/azimuthlocking/index.vue +365 -365
  292. package/src/kisscomps/components/SchemeConfig/azimuthlocking/utils.js +92 -92
  293. package/src/kisscomps/components/SchemeConfig/closePhaselControlModal/index.vue +214 -214
  294. package/src/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +235 -235
  295. package/src/kisscomps/components/SchemeConfig/manualControlModal/index.vue +235 -235
  296. package/src/kisscomps/components/SchemeConfig/manualControlModalNew/controlModelGroup.vue +131 -131
  297. package/src/kisscomps/components/SchemeConfig/manualControlModalNew/othersIcon.vue +151 -151
  298. package/src/kisscomps/components/SchemeConfig/priorityControl/index.vue +215 -215
  299. package/src/kisscomps/components/SchemeConfig/priorityControl/utils.js +163 -163
  300. package/src/kisscomps/components/SchemeConfig/realtimeStatusModal/index.vue +308 -308
  301. package/src/kisscomps/components/SchemeConfig/utils/thirdPartypermission.js +95 -95
  302. package/src/kisscomps/components/StageOptimize/StageOptimize.vue +367 -367
  303. package/src/kisscomps/components/StageOptimize/index.js +2 -2
  304. package/src/kisscomps/components/StageStatus/StageStatus.vue +341 -341
  305. package/src/kisscomps/components/SvgIcon/SvgIcon.vue +53 -53
  306. package/src/kisscomps/components/XiaoKanban/DirSelector.vue +356 -356
  307. package/src/kisscomps/components/XiaoKanban/index.vue +122 -122
  308. package/src/kisscomps/components/patternConfig/pattern/planChart/model/coordinationModel.js +665 -665
  309. package/src/kisscomps/components/patternConfig/planContent.vue +604 -604
  310. package/src/kisscomps/components/patternConfig/planMenu.vue +329 -329
  311. package/src/lib/publicjs/ArryListUtil.js +38 -38
  312. package/src/lib/publicjs/HttpurlMgr.js +45 -45
  313. package/src/lib/publicjs/KissApi.js +158 -158
  314. package/src/lib/publicjs/KissWSSub/Heartcheck.js +128 -128
  315. package/src/lib/publicjs/KissWSSub/KissWsSub.js +91 -91
  316. package/src/lib/publicjs/KissWSSub/KissWsSubByType.js +152 -152
  317. package/src/lib/publicjs/KissWSSub/SimuWsSubByType.js +44 -44
  318. package/src/lib/publicjs/KissWSSub/Sub.js +51 -51
  319. package/src/lib/publicjs/KissWSSub/SubChannel.js +119 -119
  320. package/src/lib/publicjs/basecomponents.js +65 -65
  321. package/src/lib/publicjs/localStorage.js +112 -112
  322. package/src/lib/publicjs/objdeepcopy.js +32 -32
  323. package/src/lib/publicjs/pageScroll.js +30 -30
  324. package/src/lib/publicjs/passwdAssest.js +101 -101
  325. package/src/lib/publicjs/styleclassfactory.js +32 -32
  326. package/src/store/index.js +26 -26
  327. package/src/store/modules/globalParam.js +67 -67
  328. package/src/utils/RingDataModel.js +335 -335
  329. package/src/utils/conflictList.js +87 -87
  330. package/src/utils/dateFormat.js +41 -41
  331. package/src/utils/index.js +69 -69
  332. package/src/utils/phaseList.js +203 -203
  333. package/src/utils/validate.js +43 -43
  334. package/src/views/home.1.vue +479 -479
  335. package/src/views/home.vue +93 -93
  336. package/src/views/intersection2.vue +328 -328
  337. package/src/views/overView.vue +63 -63
  338. package/static/styles/channelizatioon.scss +433 -433
  339. package/static/styles/common.scss +30 -30
  340. package/static/styles/commonkanban.scss +168 -168
  341. package/static/styles/dark/index.scss +2 -2
  342. package/static/styles/dark/theme/element-dark.scss +44 -44
  343. package/static/styles/index.scss +84 -84
  344. package/static/styles/intersection.scss +180 -180
  345. package/static/styles/light/index.scss +2 -2
  346. package/static/styles/light/theme/element-light.scss +44 -44
  347. package/static/styles/patternConfig.scss +56 -56
  348. package/static/styles/phasePedSelect.scss +71 -71
  349. package/static/styles/stages.scss +57 -57
  350. package/static/styles/xiaokanban.scss +61 -61
  351. package/static/token.json +2 -2
  352. package/test/e2e/custom-assertions/elementCount.js +27 -27
  353. package/test/e2e/nightwatch.conf.js +46 -46
  354. package/test/e2e/runner.js +48 -48
  355. package/test/e2e/specs/test.js +19 -19
  356. package/test/unit/.eslintrc +7 -7
  357. package/test/unit/jest.conf.js +30 -30
  358. package/test/unit/setup.js +3 -3
  359. package/test/unit/specs/HelloWorld.spec.js +11 -11
  360. package/package/kissui.js +0 -216608
  361. package/pnpm-lock.yaml +0 -16362
@@ -1,497 +1,497 @@
1
- /**
2
- * Copyright (c) 2020 kedacom
3
- * OpenATC is licensed under Mulan PSL v2.
4
- * You can use this software according to the terms and conditions of the Mulan PSL v2.
5
- * You may obtain a copy of Mulan PSL v2 at:
6
- * http://license.coscl.org.cn/MulanPSL2
7
- * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
8
- * EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
9
- * MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
10
- * See the Mulan PSL v2 for more details.
11
- **/
12
- <template>
13
- <svg
14
- version="1.1"
15
- id="图层_1"
16
- xmlns="http://www.w3.org/2000/svg"
17
- xmlns:xlink="http://www.w3.org/1999/xlink"
18
- x="0px"
19
- y="0px"
20
- viewBox="0 0 870 650"
21
- style="enable-background: new 0 0 870 650"
22
- xml:space="preserve"
23
- :width="Width"
24
- :height="Height"
25
- >
26
- <rect x="0.7" y="340.6" class="st0" width="869.6" height="3" />
27
- <g class="st1">
28
- <g class="st2">
29
- <g>
30
- <rect x="-0.2" y="386" class="st3" width="14.4" height="2" />
31
- </g>
32
- <g>
33
- <path
34
- class="st3"
35
- d="M39.8,386h25.5v2H39.8V386z M90.8,386h25.5v2H90.8V386z M141.9,386h25.5v2h-25.5V386z M192.9,386h25.5v2
36
- h-25.5V386z M244,386h25.5v2H244V386z M295.1,386h25.5v2h-25.5V386z M346.1,386h25.5v2h-25.5V386z M397.2,386h25.5v2h-25.5V386z
37
- M448.3,386h25.5v2h-25.5V386z M499.3,386h25.5v2h-25.5V386z M550.4,386h25.5v2h-25.5V386z M601.4,386H627v2h-25.5L601.4,386
38
- L601.4,386z M652.5,386H678v2h-25.5V386z M703.6,386h25.5v2h-25.5V386z M754.6,386h25.5v2h-25.5V386z M805.7,386h25.5v2h-25.5
39
- V386z"
40
- />
41
- </g>
42
- <g>
43
- <rect x="856.8" y="386" class="st3" width="13" height="2" />
44
- </g>
45
- </g>
46
- </g>
47
- <g class="st1">
48
- <g class="st2">
49
- <g>
50
- <rect x="-0.2" y="447.2" class="st3" width="14.4" height="2" />
51
- </g>
52
- <g>
53
- <path
54
- class="st3"
55
- d="M39.8,447.2h25.5v2H39.8V447.2z M90.8,447.2h25.5v2H90.8V447.2z M141.9,447.2h25.5v2h-25.5V447.2z
56
- M192.9,447.2h25.5v2h-25.5V447.2z M244,447.2h25.5v2H244V447.2z M295.1,447.2h25.5v2h-25.5V447.2z M346.1,447.2h25.5v2h-25.5
57
- V447.2z M397.2,447.2h25.5v2h-25.5V447.2z M448.3,447.2h25.5v2h-25.5V447.2z M499.3,447.2h25.5v2h-25.5V447.2z M550.4,447.2h25.5
58
- v2h-25.5V447.2z M601.4,447.2H627v2h-25.5L601.4,447.2L601.4,447.2z M652.5,447.2H678v2h-25.5V447.2z M703.6,447.2h25.5v2h-25.5
59
- V447.2z M754.6,447.2h25.5v2h-25.5V447.2z M805.7,447.2h25.5v2h-25.5V447.2z"
60
- />
61
- </g>
62
- <g>
63
- <rect x="856.8" y="447.2" class="st3" width="13.1" height="2" />
64
- </g>
65
- </g>
66
- </g>
67
- <g>
68
- <g>
69
- <path
70
- class="st4"
71
- d="M869.9,124.7C844.5,134.5,721,182.3,713,184l-213.6,71.6c0,0-38.5,10.3-43.1,10.3c-4.5,0-46.2,8.9-46.2,8.9
72
- s-100.4,15.6-117.2,16c0,0-143.1,15.6-151.1,15l-141.9,9.4v9.6v1.2v5.7v7.3v182.6h870v-16.4V344.4l0,0L869.9,124.7L869.9,124.7z"
73
- />
74
- </g>
75
- <g>
76
- <line class="st5" x1="293" y1="288" x2="293.4" y2="289" />
77
- </g>
78
- <g>
79
- <line class="st5" x1="308.2" y1="305" x2="308.2" y2="305" />
80
- </g>
81
- <g>
82
- <rect
83
- x="592.8"
84
- y="235.2"
85
- transform="matrix(0.953 -0.3031 0.3031 0.953 -52.0097 192.699)"
86
- class="st6"
87
- width="4"
88
- height="57.5"
89
- />
90
- </g>
91
- <g>
92
- <rect x="-0.1" y="508.1" class="st6" width="870" height="2" />
93
- </g>
94
- <g>
95
- <polygon class="st7" points="0.2,542 869.7,542 869.8,540 0.2,540" />
96
- </g>
97
- <g>
98
- <path class="st8" d="M422.7,326" />
99
- </g>
100
- <g>
101
- <polygon
102
- class="st9"
103
- points="11.3,327 273.4,327 284.9,325 -0.1,325 -0.1,327"
104
- />
105
- </g>
106
- <g>
107
- <polygon class="st9" points="534.5,326.9 534.8,326 531.6,326" />
108
- </g>
109
- <g>
110
- <polygon class="st9" points="554.8,326.5 554.9,326.1 553.5,326.1" />
111
- </g>
112
- <g>
113
- <polygon class="st9" points="578.5,326.5 578.6,326.1 576.3,326.1" />
114
- </g>
115
- <g>
116
- <path
117
- class="st9"
118
- d="M167.3,318.9l-4.1-5.1c-2.7,0.1-5.4,0.2-8.1,0.3l-0.4,0.3l4.4,5.4l-2.7,5.5l4.8,1.6l2.1,0.1L167.3,318.9z"
119
- />
120
- </g>
121
- <g>
122
- <path
123
- class="st9"
124
- d="M145,320.4l-3.9-4.4c-2.7-0.1-5.4-0.2-8.1-0.2l-0.4,0.2l4.2,4.7l-3,4.6l4.9,1.4l2.1,0.2L145,320.4z"
125
- />
126
- </g>
127
- <g>
128
- <path
129
- class="st9"
130
- d="M122.7,321.2l-4-3.7c-2.7-0.1-5.4-0.2-8.1-0.3l-0.4,0.2l4.3,3.9l-2.9,3.7l4.9,1.2l2.1,0.2L122.7,321.2z"
131
- />
132
- </g>
133
- <g>
134
- <path
135
- class="st9"
136
- d="M190.6,318.1l-5.5-6.3c-2.5,0.2-5,0.4-7.5,0.7l-0.7,0.6l5.2,5.9l-4.7,8h8.1L190.6,318.1z"
137
- />
138
- </g>
139
- <g>
140
- <path
141
- class="st9"
142
- d="M211.8,318.9l-6-8.9c-1.9,0.2-3.8,0.3-5.7,0.5l-1.6,1.1l4.5,6.7l-7.9,8.7h9.4L211.8,318.9z"
143
- />
144
- </g>
145
- <g>
146
- <path
147
- class="st9"
148
- d="M236.1,316.4l-8-8.6c-2.2,0.2-4.5,0.4-6.7,0.6l-1.2,1.1l6.4,6.8l-8,8.8l1.8,1.6h6.1L236.1,316.4z"
149
- />
150
- </g>
151
- <g>
152
- <path
153
- class="st9"
154
- d="M258.8,314.6l-7-9.2c-2.7,0.3-5.4,0.6-8.2,0.8l6.5,8.5l-7.6,10.8l1.9,1.3h5.8L258.8,314.6z"
155
- />
156
- </g>
157
- <g>
158
- <path
159
- class="st9"
160
- d="M273.5,327l11.1-13.7l-9-10.4c-2.8,0.3-5.6,0.6-8.5,0.9l8.3,9.6l-10,12.3l1.4,1.2L273.5,327L273.5,327z"
161
- />
162
- </g>
163
- <g>
164
- <path
165
- class="st9"
166
- d="M311.4,306.5l-9.7-6.7c-3.5,0.4-7,0.8-10.5,1.2l10.2,7.1l-10.5,14.2l0.7,0.5l9.3-2.3L311.4,306.5z"
167
- />
168
- </g>
169
- <g>
170
- <path
171
- class="st9"
172
- d="M336.6,303l-9-6.2c-3.5,0.4-6.9,0.9-10.4,1.3l9.5,6.6l-9,12.2l10.7-2.6L336.6,303z"
173
- />
174
- </g>
175
- <g>
176
- <path
177
- class="st9"
178
- d="M363.3,297.9l-9-5c-3.5,0.3-6.9,0.7-10.4,1l9.5,5.3l-9,9.9l10.7-2.1L363.3,297.9z"
179
- />
180
- </g>
181
- <g>
182
- <path
183
- class="st9"
184
- d="M391.8,291.6l-9.2-3.1c-3.5,0.5-6.8,1-10.3,1.5l9.7,3.3l-8.5,7.9l10.6-2.3L391.8,291.6z"
185
- />
186
- </g>
187
- <g>
188
- <polygon
189
- class="st10"
190
- points="869.9,520.5 869.9,520.5 869.9,520.5 2.3,520.5 0.9,520.5 -0.1,520.5 -0.1,522.5 869.9,522.5"
191
- />
192
- </g>
193
- <g>
194
- <path
195
- class="st9"
196
- d="M478.6,269.8C338.4,304,76.9,319.6-0.1,323.8v3.2h1v-1.3c73.3-3.8,306.6-17.9,450.7-47.8
197
- c-65,19.3-128.6,36.5-184.7,49.1h6.6h2.4c4.8-1.1,9.7-2.3,14.6-3.4l38.3-9.5c43-11,88.6-23.9,134.8-37.7l60.7-18.7l0,0
198
- c136.8-43,270.1-91.1,345.5-121.5V134C786.4,167.6,630.8,223.5,478.6,269.8z"
199
- />
200
- </g>
201
- <g>
202
- <path
203
- class="st10"
204
- d="M479.7,259.5C339.8,293.9,77.2,309.7-0.1,313.8v2l1-0.1l0,0c78.4-4.1,339.7-20,479.3-54.3h0.1
205
- C632,215.3,784.7,160.5,869.9,126.2V124C784.9,158.3,631.8,213.3,479.7,259.5z"
206
- />
207
- </g>
208
- <g>
209
- <path
210
- class="st7"
211
- d="M479.7,243.5C339.8,277.9,77.2,293.7-0.1,297.8v2l1-0.1l0,0c78.4-4.1,339.7-20,479.3-54.3h0.1
212
- C632,199.3,784.7,144.5,869.9,110.2V108C784.9,142.3,631.8,197.3,479.7,243.5z"
213
- />
214
- </g>
215
- <g id="直行_1_">
216
- <polygon
217
- class="st11"
218
- points="670.1,414.7 625.1,414.7 625.1,408 608.5,417.5 625.1,426.8 625.1,420.2 670.1,420.2"
219
- />
220
- </g>
221
- <g id="支路箭头">
222
- <polygon
223
- class="st11"
224
- points="707.9,223.3 665.5,238.2 663.2,231.8 650.7,246.3 669.5,249.6 667.3,243.4 709.7,228.5"
225
- />
226
- </g>
227
- <g id="XMLID_28_">
228
- <g>
229
- <rect x="0.1" y="447.2" class="st6" width="12" height="2" />
230
- </g>
231
- </g>
232
- <rect x="0.1" y="386" class="st6" width="12" height="2" />
233
- <g id="XMLID_27_">
234
- <g>
235
- <rect x="36.1" y="447.2" class="st6" width="12" height="2" />
236
- </g>
237
- </g>
238
- <rect x="36.1" y="386" class="st6" width="12" height="2" />
239
- <g id="XMLID_26_">
240
- <g>
241
- <rect x="72.1" y="447.2" class="st6" width="12" height="2" />
242
- </g>
243
- </g>
244
- <rect x="72.1" y="386" class="st6" width="12" height="2" />
245
- <g id="XMLID_25_">
246
- <g>
247
- <rect x="108.1" y="447.2" class="st6" width="12" height="2" />
248
- </g>
249
- </g>
250
- <rect x="108.1" y="386" class="st6" width="12" height="2" />
251
- <g id="XMLID_24_">
252
- <g>
253
- <rect x="144.1" y="447.2" class="st6" width="12" height="2" />
254
- </g>
255
- </g>
256
- <rect x="144.1" y="386" class="st6" width="12" height="2" />
257
- <g id="XMLID_23_">
258
- <g>
259
- <rect x="180.1" y="447.2" class="st6" width="12" height="2" />
260
- </g>
261
- </g>
262
- <rect x="180.1" y="386" class="st6" width="12" height="2" />
263
- <g id="XMLID_22_">
264
- <g>
265
- <rect x="216.1" y="447.2" class="st6" width="12" height="2" />
266
- </g>
267
- </g>
268
- <rect x="216.1" y="386" class="st6" width="12" height="2" />
269
- <g id="XMLID_21_">
270
- <g>
271
- <rect x="252.1" y="447.2" class="st6" width="12" height="2" />
272
- </g>
273
- </g>
274
- <rect x="252.1" y="386" class="st6" width="12" height="2" />
275
- <g id="XMLID_3_">
276
- <g>
277
- <rect x="288.1" y="447.2" class="st6" width="12" height="2" />
278
- </g>
279
- </g>
280
- <rect x="288.1" y="386" class="st6" width="12" height="2" />
281
- <g id="XMLID_10_">
282
- <g>
283
- <rect x="316.1" y="447.2" class="st6" width="12" height="2" />
284
- </g>
285
- </g>
286
- <rect x="316.1" y="386" class="st6" width="12" height="2" />
287
- <g id="XMLID_9_">
288
- <g>
289
- <rect x="352.1" y="447.2" class="st6" width="12" height="2" />
290
- </g>
291
- </g>
292
- <rect x="352.1" y="386" class="st6" width="12" height="2" />
293
- <g id="XMLID_8_">
294
- <g>
295
- <rect x="388.1" y="447.2" class="st6" width="12" height="2" />
296
- </g>
297
- </g>
298
- <rect x="388.1" y="386" class="st6" width="12" height="2" />
299
- <g id="XMLID_7_">
300
- <g>
301
- <rect x="424.1" y="447.2" class="st6" width="12" height="2" />
302
- </g>
303
- </g>
304
- <rect x="424.1" y="386" class="st6" width="12" height="2" />
305
- <g id="XMLID_6_">
306
- <g>
307
- <rect x="460.1" y="447.2" class="st6" width="12" height="2" />
308
- </g>
309
- </g>
310
- <rect x="460.1" y="386" class="st6" width="12" height="2" />
311
- <g>
312
- <rect x="295.8" y="324.4" class="st6" width="12" height="3.3" />
313
- <rect x="331.8" y="324.4" class="st6" width="12" height="3.3" />
314
- <rect x="367.8" y="324.4" class="st6" width="12" height="3.3" />
315
- <rect x="403.8" y="324.4" class="st6" width="12" height="3.3" />
316
- <rect x="439.8" y="324.4" class="st6" width="12" height="3.3" />
317
- <rect x="475.8" y="324.4" class="st6" width="12" height="3.3" />
318
- </g>
319
- <g id="XMLID_5_">
320
- <g>
321
- <rect x="496.1" y="447.2" class="st6" width="12" height="2" />
322
- </g>
323
- </g>
324
- <rect x="496.1" y="386" class="st6" width="12" height="2" />
325
- <g id="XMLID_4_">
326
- <g>
327
- <rect x="532.1" y="447.2" class="st6" width="12" height="2" />
328
- </g>
329
- </g>
330
- <rect x="532.1" y="386" class="st6" width="12" height="2" />
331
- <g id="XMLID_2_">
332
- <g>
333
- <rect x="568.1" y="447.2" class="st6" width="12" height="2" />
334
- </g>
335
- </g>
336
- <rect x="568.1" y="386" class="st6" width="12" height="2" />
337
- <g id="XMLID_1_">
338
- <g>
339
- <rect x="604.1" y="447.2" class="st6" width="12" height="2" />
340
- </g>
341
- </g>
342
- <rect x="604.1" y="386" class="st6" width="12" height="2" />
343
- <g>
344
- <g id="XMLID_19_">
345
- <g>
346
- <rect x="640.1" y="447.2" class="st6" width="12" height="2" />
347
- </g>
348
- </g>
349
- <rect x="640.1" y="386" class="st6" width="12" height="2" />
350
- <g id="XMLID_18_">
351
- <g>
352
- <rect x="676.1" y="447.2" class="st6" width="12" height="2" />
353
- </g>
354
- </g>
355
- <rect x="676.1" y="386" class="st6" width="12" height="2" />
356
- <g id="XMLID_17_">
357
- <g>
358
- <rect x="712.1" y="447.2" class="st6" width="12" height="2" />
359
- </g>
360
- </g>
361
- <rect x="712.1" y="386" class="st6" width="12" height="2" />
362
- <g id="XMLID_16_">
363
- <g>
364
- <rect x="748.1" y="447.2" class="st6" width="12" height="2" />
365
- </g>
366
- </g>
367
- <rect x="748.1" y="386" class="st6" width="12" height="2" />
368
- <g id="XMLID_15_">
369
- <g>
370
- <rect x="784.1" y="447.2" class="st6" width="12" height="2" />
371
- </g>
372
- </g>
373
- <rect x="784.1" y="386" class="st6" width="12" height="2" />
374
- <g id="XMLID_14_">
375
- <g>
376
- <rect x="820.1" y="447.2" class="st6" width="12" height="2" />
377
- </g>
378
- </g>
379
- <rect x="820.1" y="386" class="st6" width="12" height="2" />
380
- <g id="XMLID_13_">
381
- <g>
382
- <rect x="856.1" y="447.2" class="st6" width="12" height="2" />
383
- </g>
384
- </g>
385
- <rect x="856.1" y="386" class="st6" width="12" height="2" />
386
- </g>
387
- <polygon
388
- class="st9"
389
- points="500.8,325 500.8,327 785.8,327 868.8,327 869.9,327 869.9,325"
390
- />
391
- <g>
392
- <polygon
393
- class="st6"
394
- points="863.7,203.4 853.1,206.9 870.3,220.4 870.3,208.6"
395
- />
396
- <polygon
397
- class="st6"
398
- points="814.5,219.8 870.3,263.4 842.4,326.4 854.2,326.4 870.3,287.8 870.3,251.3 825.2,216.3"
399
- />
400
- <polygon
401
- class="st6"
402
- points="776,232.7 825.1,271.1 800.6,326.5 812.2,326.5 836.7,267.9 786.7,229.1"
403
- />
404
- <polygon
405
- class="st6"
406
- points="737.5,245.5 780,278.8 758.9,326.6 770.3,326.6 791.6,275.6 748.2,242"
407
- />
408
- <polygon
409
- class="st6"
410
- points="699,258.4 734.9,286.5 717.1,326.7 728.4,326.6 746.5,283.3 709.8,254.8"
411
- />
412
- <polygon
413
- class="st6"
414
- points="660.5,271.3 689.8,294.2 675.4,326.8 686.4,326.7 701.3,291 671.3,267.7"
415
- />
416
- <polygon
417
- class="st6"
418
- points="622,284.1 644.7,301.9 633.6,326.8 644.5,326.8 656.2,298.7 632.8,280.5"
419
- />
420
- <polygon
421
- class="st6"
422
- points="583.5,297 599.6,309.6 591.9,326.9 602.6,326.9 611.1,306.4 594.4,293.4"
423
- />
424
- <polygon
425
- class="st6"
426
- points="545,309.9 554.5,317.3 550.2,327 560.6,327 566,314.1 555.9,306.2"
427
- />
428
- </g>
429
- <polygon
430
- class="st6"
431
- points="500.8,324.5 500.8,326.6 870.3,203.2 870.3,201"
432
- />
433
- </g>
434
- </svg>
435
- </template>
436
- <script>
437
- export default {
438
- name: 'rampEastroad',
439
- data () {
440
- return {}
441
- },
442
- props: {
443
- Width: {
444
- type: String,
445
- default: '870px'
446
- },
447
- Height: {
448
- type: String,
449
- default: '650px'
450
- }
451
- },
452
- methods: {},
453
- mounted () {}
454
- }
455
- </script>
456
- <style scoped>
457
- .st0 {
458
- display: none;
459
- fill: #ccb63a;
460
- }
461
- .st1 {
462
- display: none;
463
- }
464
- .st2 {
465
- display: inline;
466
- }
467
- .st3 {
468
- fill: #561313;
469
- }
470
- .st4 {
471
- fill: #3d3939;
472
- }
473
- .st5 {
474
- fill: none;
475
- }
476
- .st6 {
477
- fill: #dddddd;
478
- }
479
- .st7 {
480
- fill: #e5e5d8;
481
- }
482
- .st8 {
483
- fill: none;
484
- stroke: #dddddd;
485
- stroke-width: 2;
486
- stroke-miterlimit: 10;
487
- }
488
- .st9 {
489
- fill: #e0e0e0;
490
- }
491
- .st10 {
492
- fill: #ccb63a;
493
- }
494
- .st11 {
495
- fill: #fcfcfc;
496
- }
497
- </style>
1
+ /**
2
+ * Copyright (c) 2020 kedacom
3
+ * OpenATC is licensed under Mulan PSL v2.
4
+ * You can use this software according to the terms and conditions of the Mulan PSL v2.
5
+ * You may obtain a copy of Mulan PSL v2 at:
6
+ * http://license.coscl.org.cn/MulanPSL2
7
+ * THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
8
+ * EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
9
+ * MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
10
+ * See the Mulan PSL v2 for more details.
11
+ **/
12
+ <template>
13
+ <svg
14
+ version="1.1"
15
+ id="图层_1"
16
+ xmlns="http://www.w3.org/2000/svg"
17
+ xmlns:xlink="http://www.w3.org/1999/xlink"
18
+ x="0px"
19
+ y="0px"
20
+ viewBox="0 0 870 650"
21
+ style="enable-background: new 0 0 870 650"
22
+ xml:space="preserve"
23
+ :width="Width"
24
+ :height="Height"
25
+ >
26
+ <rect x="0.7" y="340.6" class="st0" width="869.6" height="3" />
27
+ <g class="st1">
28
+ <g class="st2">
29
+ <g>
30
+ <rect x="-0.2" y="386" class="st3" width="14.4" height="2" />
31
+ </g>
32
+ <g>
33
+ <path
34
+ class="st3"
35
+ d="M39.8,386h25.5v2H39.8V386z M90.8,386h25.5v2H90.8V386z M141.9,386h25.5v2h-25.5V386z M192.9,386h25.5v2
36
+ h-25.5V386z M244,386h25.5v2H244V386z M295.1,386h25.5v2h-25.5V386z M346.1,386h25.5v2h-25.5V386z M397.2,386h25.5v2h-25.5V386z
37
+ M448.3,386h25.5v2h-25.5V386z M499.3,386h25.5v2h-25.5V386z M550.4,386h25.5v2h-25.5V386z M601.4,386H627v2h-25.5L601.4,386
38
+ L601.4,386z M652.5,386H678v2h-25.5V386z M703.6,386h25.5v2h-25.5V386z M754.6,386h25.5v2h-25.5V386z M805.7,386h25.5v2h-25.5
39
+ V386z"
40
+ />
41
+ </g>
42
+ <g>
43
+ <rect x="856.8" y="386" class="st3" width="13" height="2" />
44
+ </g>
45
+ </g>
46
+ </g>
47
+ <g class="st1">
48
+ <g class="st2">
49
+ <g>
50
+ <rect x="-0.2" y="447.2" class="st3" width="14.4" height="2" />
51
+ </g>
52
+ <g>
53
+ <path
54
+ class="st3"
55
+ d="M39.8,447.2h25.5v2H39.8V447.2z M90.8,447.2h25.5v2H90.8V447.2z M141.9,447.2h25.5v2h-25.5V447.2z
56
+ M192.9,447.2h25.5v2h-25.5V447.2z M244,447.2h25.5v2H244V447.2z M295.1,447.2h25.5v2h-25.5V447.2z M346.1,447.2h25.5v2h-25.5
57
+ V447.2z M397.2,447.2h25.5v2h-25.5V447.2z M448.3,447.2h25.5v2h-25.5V447.2z M499.3,447.2h25.5v2h-25.5V447.2z M550.4,447.2h25.5
58
+ v2h-25.5V447.2z M601.4,447.2H627v2h-25.5L601.4,447.2L601.4,447.2z M652.5,447.2H678v2h-25.5V447.2z M703.6,447.2h25.5v2h-25.5
59
+ V447.2z M754.6,447.2h25.5v2h-25.5V447.2z M805.7,447.2h25.5v2h-25.5V447.2z"
60
+ />
61
+ </g>
62
+ <g>
63
+ <rect x="856.8" y="447.2" class="st3" width="13.1" height="2" />
64
+ </g>
65
+ </g>
66
+ </g>
67
+ <g>
68
+ <g>
69
+ <path
70
+ class="st4"
71
+ d="M869.9,124.7C844.5,134.5,721,182.3,713,184l-213.6,71.6c0,0-38.5,10.3-43.1,10.3c-4.5,0-46.2,8.9-46.2,8.9
72
+ s-100.4,15.6-117.2,16c0,0-143.1,15.6-151.1,15l-141.9,9.4v9.6v1.2v5.7v7.3v182.6h870v-16.4V344.4l0,0L869.9,124.7L869.9,124.7z"
73
+ />
74
+ </g>
75
+ <g>
76
+ <line class="st5" x1="293" y1="288" x2="293.4" y2="289" />
77
+ </g>
78
+ <g>
79
+ <line class="st5" x1="308.2" y1="305" x2="308.2" y2="305" />
80
+ </g>
81
+ <g>
82
+ <rect
83
+ x="592.8"
84
+ y="235.2"
85
+ transform="matrix(0.953 -0.3031 0.3031 0.953 -52.0097 192.699)"
86
+ class="st6"
87
+ width="4"
88
+ height="57.5"
89
+ />
90
+ </g>
91
+ <g>
92
+ <rect x="-0.1" y="508.1" class="st6" width="870" height="2" />
93
+ </g>
94
+ <g>
95
+ <polygon class="st7" points="0.2,542 869.7,542 869.8,540 0.2,540" />
96
+ </g>
97
+ <g>
98
+ <path class="st8" d="M422.7,326" />
99
+ </g>
100
+ <g>
101
+ <polygon
102
+ class="st9"
103
+ points="11.3,327 273.4,327 284.9,325 -0.1,325 -0.1,327"
104
+ />
105
+ </g>
106
+ <g>
107
+ <polygon class="st9" points="534.5,326.9 534.8,326 531.6,326" />
108
+ </g>
109
+ <g>
110
+ <polygon class="st9" points="554.8,326.5 554.9,326.1 553.5,326.1" />
111
+ </g>
112
+ <g>
113
+ <polygon class="st9" points="578.5,326.5 578.6,326.1 576.3,326.1" />
114
+ </g>
115
+ <g>
116
+ <path
117
+ class="st9"
118
+ d="M167.3,318.9l-4.1-5.1c-2.7,0.1-5.4,0.2-8.1,0.3l-0.4,0.3l4.4,5.4l-2.7,5.5l4.8,1.6l2.1,0.1L167.3,318.9z"
119
+ />
120
+ </g>
121
+ <g>
122
+ <path
123
+ class="st9"
124
+ d="M145,320.4l-3.9-4.4c-2.7-0.1-5.4-0.2-8.1-0.2l-0.4,0.2l4.2,4.7l-3,4.6l4.9,1.4l2.1,0.2L145,320.4z"
125
+ />
126
+ </g>
127
+ <g>
128
+ <path
129
+ class="st9"
130
+ d="M122.7,321.2l-4-3.7c-2.7-0.1-5.4-0.2-8.1-0.3l-0.4,0.2l4.3,3.9l-2.9,3.7l4.9,1.2l2.1,0.2L122.7,321.2z"
131
+ />
132
+ </g>
133
+ <g>
134
+ <path
135
+ class="st9"
136
+ d="M190.6,318.1l-5.5-6.3c-2.5,0.2-5,0.4-7.5,0.7l-0.7,0.6l5.2,5.9l-4.7,8h8.1L190.6,318.1z"
137
+ />
138
+ </g>
139
+ <g>
140
+ <path
141
+ class="st9"
142
+ d="M211.8,318.9l-6-8.9c-1.9,0.2-3.8,0.3-5.7,0.5l-1.6,1.1l4.5,6.7l-7.9,8.7h9.4L211.8,318.9z"
143
+ />
144
+ </g>
145
+ <g>
146
+ <path
147
+ class="st9"
148
+ d="M236.1,316.4l-8-8.6c-2.2,0.2-4.5,0.4-6.7,0.6l-1.2,1.1l6.4,6.8l-8,8.8l1.8,1.6h6.1L236.1,316.4z"
149
+ />
150
+ </g>
151
+ <g>
152
+ <path
153
+ class="st9"
154
+ d="M258.8,314.6l-7-9.2c-2.7,0.3-5.4,0.6-8.2,0.8l6.5,8.5l-7.6,10.8l1.9,1.3h5.8L258.8,314.6z"
155
+ />
156
+ </g>
157
+ <g>
158
+ <path
159
+ class="st9"
160
+ d="M273.5,327l11.1-13.7l-9-10.4c-2.8,0.3-5.6,0.6-8.5,0.9l8.3,9.6l-10,12.3l1.4,1.2L273.5,327L273.5,327z"
161
+ />
162
+ </g>
163
+ <g>
164
+ <path
165
+ class="st9"
166
+ d="M311.4,306.5l-9.7-6.7c-3.5,0.4-7,0.8-10.5,1.2l10.2,7.1l-10.5,14.2l0.7,0.5l9.3-2.3L311.4,306.5z"
167
+ />
168
+ </g>
169
+ <g>
170
+ <path
171
+ class="st9"
172
+ d="M336.6,303l-9-6.2c-3.5,0.4-6.9,0.9-10.4,1.3l9.5,6.6l-9,12.2l10.7-2.6L336.6,303z"
173
+ />
174
+ </g>
175
+ <g>
176
+ <path
177
+ class="st9"
178
+ d="M363.3,297.9l-9-5c-3.5,0.3-6.9,0.7-10.4,1l9.5,5.3l-9,9.9l10.7-2.1L363.3,297.9z"
179
+ />
180
+ </g>
181
+ <g>
182
+ <path
183
+ class="st9"
184
+ d="M391.8,291.6l-9.2-3.1c-3.5,0.5-6.8,1-10.3,1.5l9.7,3.3l-8.5,7.9l10.6-2.3L391.8,291.6z"
185
+ />
186
+ </g>
187
+ <g>
188
+ <polygon
189
+ class="st10"
190
+ points="869.9,520.5 869.9,520.5 869.9,520.5 2.3,520.5 0.9,520.5 -0.1,520.5 -0.1,522.5 869.9,522.5"
191
+ />
192
+ </g>
193
+ <g>
194
+ <path
195
+ class="st9"
196
+ d="M478.6,269.8C338.4,304,76.9,319.6-0.1,323.8v3.2h1v-1.3c73.3-3.8,306.6-17.9,450.7-47.8
197
+ c-65,19.3-128.6,36.5-184.7,49.1h6.6h2.4c4.8-1.1,9.7-2.3,14.6-3.4l38.3-9.5c43-11,88.6-23.9,134.8-37.7l60.7-18.7l0,0
198
+ c136.8-43,270.1-91.1,345.5-121.5V134C786.4,167.6,630.8,223.5,478.6,269.8z"
199
+ />
200
+ </g>
201
+ <g>
202
+ <path
203
+ class="st10"
204
+ d="M479.7,259.5C339.8,293.9,77.2,309.7-0.1,313.8v2l1-0.1l0,0c78.4-4.1,339.7-20,479.3-54.3h0.1
205
+ C632,215.3,784.7,160.5,869.9,126.2V124C784.9,158.3,631.8,213.3,479.7,259.5z"
206
+ />
207
+ </g>
208
+ <g>
209
+ <path
210
+ class="st7"
211
+ d="M479.7,243.5C339.8,277.9,77.2,293.7-0.1,297.8v2l1-0.1l0,0c78.4-4.1,339.7-20,479.3-54.3h0.1
212
+ C632,199.3,784.7,144.5,869.9,110.2V108C784.9,142.3,631.8,197.3,479.7,243.5z"
213
+ />
214
+ </g>
215
+ <g id="直行_1_">
216
+ <polygon
217
+ class="st11"
218
+ points="670.1,414.7 625.1,414.7 625.1,408 608.5,417.5 625.1,426.8 625.1,420.2 670.1,420.2"
219
+ />
220
+ </g>
221
+ <g id="支路箭头">
222
+ <polygon
223
+ class="st11"
224
+ points="707.9,223.3 665.5,238.2 663.2,231.8 650.7,246.3 669.5,249.6 667.3,243.4 709.7,228.5"
225
+ />
226
+ </g>
227
+ <g id="XMLID_28_">
228
+ <g>
229
+ <rect x="0.1" y="447.2" class="st6" width="12" height="2" />
230
+ </g>
231
+ </g>
232
+ <rect x="0.1" y="386" class="st6" width="12" height="2" />
233
+ <g id="XMLID_27_">
234
+ <g>
235
+ <rect x="36.1" y="447.2" class="st6" width="12" height="2" />
236
+ </g>
237
+ </g>
238
+ <rect x="36.1" y="386" class="st6" width="12" height="2" />
239
+ <g id="XMLID_26_">
240
+ <g>
241
+ <rect x="72.1" y="447.2" class="st6" width="12" height="2" />
242
+ </g>
243
+ </g>
244
+ <rect x="72.1" y="386" class="st6" width="12" height="2" />
245
+ <g id="XMLID_25_">
246
+ <g>
247
+ <rect x="108.1" y="447.2" class="st6" width="12" height="2" />
248
+ </g>
249
+ </g>
250
+ <rect x="108.1" y="386" class="st6" width="12" height="2" />
251
+ <g id="XMLID_24_">
252
+ <g>
253
+ <rect x="144.1" y="447.2" class="st6" width="12" height="2" />
254
+ </g>
255
+ </g>
256
+ <rect x="144.1" y="386" class="st6" width="12" height="2" />
257
+ <g id="XMLID_23_">
258
+ <g>
259
+ <rect x="180.1" y="447.2" class="st6" width="12" height="2" />
260
+ </g>
261
+ </g>
262
+ <rect x="180.1" y="386" class="st6" width="12" height="2" />
263
+ <g id="XMLID_22_">
264
+ <g>
265
+ <rect x="216.1" y="447.2" class="st6" width="12" height="2" />
266
+ </g>
267
+ </g>
268
+ <rect x="216.1" y="386" class="st6" width="12" height="2" />
269
+ <g id="XMLID_21_">
270
+ <g>
271
+ <rect x="252.1" y="447.2" class="st6" width="12" height="2" />
272
+ </g>
273
+ </g>
274
+ <rect x="252.1" y="386" class="st6" width="12" height="2" />
275
+ <g id="XMLID_3_">
276
+ <g>
277
+ <rect x="288.1" y="447.2" class="st6" width="12" height="2" />
278
+ </g>
279
+ </g>
280
+ <rect x="288.1" y="386" class="st6" width="12" height="2" />
281
+ <g id="XMLID_10_">
282
+ <g>
283
+ <rect x="316.1" y="447.2" class="st6" width="12" height="2" />
284
+ </g>
285
+ </g>
286
+ <rect x="316.1" y="386" class="st6" width="12" height="2" />
287
+ <g id="XMLID_9_">
288
+ <g>
289
+ <rect x="352.1" y="447.2" class="st6" width="12" height="2" />
290
+ </g>
291
+ </g>
292
+ <rect x="352.1" y="386" class="st6" width="12" height="2" />
293
+ <g id="XMLID_8_">
294
+ <g>
295
+ <rect x="388.1" y="447.2" class="st6" width="12" height="2" />
296
+ </g>
297
+ </g>
298
+ <rect x="388.1" y="386" class="st6" width="12" height="2" />
299
+ <g id="XMLID_7_">
300
+ <g>
301
+ <rect x="424.1" y="447.2" class="st6" width="12" height="2" />
302
+ </g>
303
+ </g>
304
+ <rect x="424.1" y="386" class="st6" width="12" height="2" />
305
+ <g id="XMLID_6_">
306
+ <g>
307
+ <rect x="460.1" y="447.2" class="st6" width="12" height="2" />
308
+ </g>
309
+ </g>
310
+ <rect x="460.1" y="386" class="st6" width="12" height="2" />
311
+ <g>
312
+ <rect x="295.8" y="324.4" class="st6" width="12" height="3.3" />
313
+ <rect x="331.8" y="324.4" class="st6" width="12" height="3.3" />
314
+ <rect x="367.8" y="324.4" class="st6" width="12" height="3.3" />
315
+ <rect x="403.8" y="324.4" class="st6" width="12" height="3.3" />
316
+ <rect x="439.8" y="324.4" class="st6" width="12" height="3.3" />
317
+ <rect x="475.8" y="324.4" class="st6" width="12" height="3.3" />
318
+ </g>
319
+ <g id="XMLID_5_">
320
+ <g>
321
+ <rect x="496.1" y="447.2" class="st6" width="12" height="2" />
322
+ </g>
323
+ </g>
324
+ <rect x="496.1" y="386" class="st6" width="12" height="2" />
325
+ <g id="XMLID_4_">
326
+ <g>
327
+ <rect x="532.1" y="447.2" class="st6" width="12" height="2" />
328
+ </g>
329
+ </g>
330
+ <rect x="532.1" y="386" class="st6" width="12" height="2" />
331
+ <g id="XMLID_2_">
332
+ <g>
333
+ <rect x="568.1" y="447.2" class="st6" width="12" height="2" />
334
+ </g>
335
+ </g>
336
+ <rect x="568.1" y="386" class="st6" width="12" height="2" />
337
+ <g id="XMLID_1_">
338
+ <g>
339
+ <rect x="604.1" y="447.2" class="st6" width="12" height="2" />
340
+ </g>
341
+ </g>
342
+ <rect x="604.1" y="386" class="st6" width="12" height="2" />
343
+ <g>
344
+ <g id="XMLID_19_">
345
+ <g>
346
+ <rect x="640.1" y="447.2" class="st6" width="12" height="2" />
347
+ </g>
348
+ </g>
349
+ <rect x="640.1" y="386" class="st6" width="12" height="2" />
350
+ <g id="XMLID_18_">
351
+ <g>
352
+ <rect x="676.1" y="447.2" class="st6" width="12" height="2" />
353
+ </g>
354
+ </g>
355
+ <rect x="676.1" y="386" class="st6" width="12" height="2" />
356
+ <g id="XMLID_17_">
357
+ <g>
358
+ <rect x="712.1" y="447.2" class="st6" width="12" height="2" />
359
+ </g>
360
+ </g>
361
+ <rect x="712.1" y="386" class="st6" width="12" height="2" />
362
+ <g id="XMLID_16_">
363
+ <g>
364
+ <rect x="748.1" y="447.2" class="st6" width="12" height="2" />
365
+ </g>
366
+ </g>
367
+ <rect x="748.1" y="386" class="st6" width="12" height="2" />
368
+ <g id="XMLID_15_">
369
+ <g>
370
+ <rect x="784.1" y="447.2" class="st6" width="12" height="2" />
371
+ </g>
372
+ </g>
373
+ <rect x="784.1" y="386" class="st6" width="12" height="2" />
374
+ <g id="XMLID_14_">
375
+ <g>
376
+ <rect x="820.1" y="447.2" class="st6" width="12" height="2" />
377
+ </g>
378
+ </g>
379
+ <rect x="820.1" y="386" class="st6" width="12" height="2" />
380
+ <g id="XMLID_13_">
381
+ <g>
382
+ <rect x="856.1" y="447.2" class="st6" width="12" height="2" />
383
+ </g>
384
+ </g>
385
+ <rect x="856.1" y="386" class="st6" width="12" height="2" />
386
+ </g>
387
+ <polygon
388
+ class="st9"
389
+ points="500.8,325 500.8,327 785.8,327 868.8,327 869.9,327 869.9,325"
390
+ />
391
+ <g>
392
+ <polygon
393
+ class="st6"
394
+ points="863.7,203.4 853.1,206.9 870.3,220.4 870.3,208.6"
395
+ />
396
+ <polygon
397
+ class="st6"
398
+ points="814.5,219.8 870.3,263.4 842.4,326.4 854.2,326.4 870.3,287.8 870.3,251.3 825.2,216.3"
399
+ />
400
+ <polygon
401
+ class="st6"
402
+ points="776,232.7 825.1,271.1 800.6,326.5 812.2,326.5 836.7,267.9 786.7,229.1"
403
+ />
404
+ <polygon
405
+ class="st6"
406
+ points="737.5,245.5 780,278.8 758.9,326.6 770.3,326.6 791.6,275.6 748.2,242"
407
+ />
408
+ <polygon
409
+ class="st6"
410
+ points="699,258.4 734.9,286.5 717.1,326.7 728.4,326.6 746.5,283.3 709.8,254.8"
411
+ />
412
+ <polygon
413
+ class="st6"
414
+ points="660.5,271.3 689.8,294.2 675.4,326.8 686.4,326.7 701.3,291 671.3,267.7"
415
+ />
416
+ <polygon
417
+ class="st6"
418
+ points="622,284.1 644.7,301.9 633.6,326.8 644.5,326.8 656.2,298.7 632.8,280.5"
419
+ />
420
+ <polygon
421
+ class="st6"
422
+ points="583.5,297 599.6,309.6 591.9,326.9 602.6,326.9 611.1,306.4 594.4,293.4"
423
+ />
424
+ <polygon
425
+ class="st6"
426
+ points="545,309.9 554.5,317.3 550.2,327 560.6,327 566,314.1 555.9,306.2"
427
+ />
428
+ </g>
429
+ <polygon
430
+ class="st6"
431
+ points="500.8,324.5 500.8,326.6 870.3,203.2 870.3,201"
432
+ />
433
+ </g>
434
+ </svg>
435
+ </template>
436
+ <script>
437
+ export default {
438
+ name: 'rampEastroad',
439
+ data () {
440
+ return {}
441
+ },
442
+ props: {
443
+ Width: {
444
+ type: String,
445
+ default: '870px'
446
+ },
447
+ Height: {
448
+ type: String,
449
+ default: '650px'
450
+ }
451
+ },
452
+ methods: {},
453
+ mounted () {}
454
+ }
455
+ </script>
456
+ <style scoped>
457
+ .st0 {
458
+ display: none;
459
+ fill: #ccb63a;
460
+ }
461
+ .st1 {
462
+ display: none;
463
+ }
464
+ .st2 {
465
+ display: inline;
466
+ }
467
+ .st3 {
468
+ fill: #561313;
469
+ }
470
+ .st4 {
471
+ fill: #3d3939;
472
+ }
473
+ .st5 {
474
+ fill: none;
475
+ }
476
+ .st6 {
477
+ fill: #dddddd;
478
+ }
479
+ .st7 {
480
+ fill: #e5e5d8;
481
+ }
482
+ .st8 {
483
+ fill: none;
484
+ stroke: #dddddd;
485
+ stroke-width: 2;
486
+ stroke-miterlimit: 10;
487
+ }
488
+ .st9 {
489
+ fill: #e0e0e0;
490
+ }
491
+ .st10 {
492
+ fill: #ccb63a;
493
+ }
494
+ .st11 {
495
+ fill: #fcfcfc;
496
+ }
497
+ </style>