openatc-components 0.0.2 → 0.0.3

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 (496) hide show
  1. package/build/package.dev.config.js +82 -0
  2. package/build/package.prod.config.js +102 -2
  3. package/build/webpack.base.conf.js +8 -3
  4. package/config/dev.env.js +2 -1
  5. package/config/index.js +19 -5
  6. package/config/prod.env.js +2 -1
  7. package/index.html +1 -1
  8. package/package/kisscomps/components/CommonKanban/CommonKanban.vue +98 -0
  9. package/package/kisscomps/components/CommonKanban/index.js +2 -0
  10. package/package/kisscomps/components/FaultDetailModal/FaultDetailModal.vue +170 -0
  11. package/package/kisscomps/components/FaultDetailModal/index.js +2 -0
  12. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/CrossRoadsSvg.vue +497 -0
  13. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/CustomRoadsSvg.vue +46 -0
  14. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/PatternWalkSvg.vue +295 -0
  15. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/PedSectionEWSvg.vue +300 -0
  16. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/PedSectionSNSvg.vue +288 -0
  17. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampEastSvg.vue +391 -0
  18. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampNorthSvg.vue +336 -0
  19. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampSouthSvg.vue +345 -0
  20. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampWestSvg.vue +389 -0
  21. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/SidewalkSvg.vue +1179 -0
  22. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeEastRoadsSvg.vue +402 -0
  23. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeNorthRoadsSvg.vue +361 -0
  24. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeSouthRoadsSvg.vue +368 -0
  25. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeWestRoadsSvg.vue +475 -0
  26. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LCrossRoadsSvg.vue +494 -0
  27. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeEastRoadsSvg.vue +401 -0
  28. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeNorthRoadsSvg.vue +360 -0
  29. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeSouthRoadsSvg.vue +367 -0
  30. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeWestRoadsSvg.vue +476 -0
  31. package/package/kisscomps/components/IntersectionMap/crossDirection/baseImg/refreshSvg.vue +63 -0
  32. package/package/kisscomps/components/IntersectionMap/crossDirection/busIcon/busMapSvg.vue +50 -0
  33. package/package/kisscomps/components/IntersectionMap/crossDirection/busIcon/eastBusSvg.vue +167 -0
  34. package/package/kisscomps/components/IntersectionMap/crossDirection/busIcon/northBusSvg.vue +168 -0
  35. package/package/kisscomps/components/IntersectionMap/crossDirection/busIcon/southBusSvg.vue +168 -0
  36. package/package/kisscomps/components/IntersectionMap/crossDirection/busIcon/westBusSvg.vue +169 -0
  37. package/package/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +853 -0
  38. package/package/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/LphaseIconSvg.vue +112 -0
  39. package/package/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/phaseIconSvg.vue +112 -0
  40. package/package/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/rampPhaseIconSvg.vue +111 -0
  41. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/busPos.json +196 -0
  42. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/busPos.left.json +196 -0
  43. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.json +99 -0
  44. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.left.json +99 -0
  45. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/rampPos.json +52 -0
  46. package/package/kisscomps/components/IntersectionMap/crossDirection/posJson/sidePos.json +99 -0
  47. package/package/kisscomps/components/IntersectionMap/crossDirection/utils.js +77 -0
  48. package/package/kisscomps/components/IntersectionMap/index.js +2 -0
  49. package/package/kisscomps/components/IntersectionMap/intersectionmap.vue +139 -0
  50. package/package/kisscomps/components/IntersectionWithInterface/IntersectionWithInterface.vue +268 -0
  51. package/package/kisscomps/components/IntersectionWithInterface/index.js +2 -0
  52. package/{src/kisscomps/components/SchemeConfig/schemeconfig.vue → package/kisscomps/components/SchemeConfig/SchemeConfig.vue} +49 -26
  53. package/package/kisscomps/components/SchemeConfig/closePhaselControlModal/index.vue +189 -0
  54. package/package/kisscomps/components/SchemeConfig/index.js +2 -0
  55. package/package/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +210 -0
  56. package/package/kisscomps/components/SchemeConfig/manualControlModal/index.vue +176 -0
  57. package/package/kisscomps/components/SchemeConfig/realtimeStatusModal/index.vue +294 -0
  58. package/package/kisscomps/components/SvgIcon/SvgIcon.vue +53 -0
  59. package/package/kisscomps/components/SvgIcon/index.js +2 -0
  60. package/package/kisscomps/components/XRDDirSelector/XRDDirSelector.vue +266 -94
  61. package/package/kisscomps/index.js +21 -45
  62. package/package/kissui.min.js +1 -53834
  63. package/package.json +15 -3
  64. package/src/App.vue +11 -12
  65. package/src/EdgeMgr/EdgeModelBase.js +16 -0
  66. package/src/EdgeMgr/controller/crossDiagramMgr.js +120 -0
  67. package/src/EdgeMgr/controller/globalParamsMgr.js +75 -0
  68. package/src/api/authapi.js +31 -0
  69. package/src/api/config.js +21 -0
  70. package/src/api/control.js +76 -0
  71. package/src/api/fault.js +66 -0
  72. package/src/api/index.js +24 -0
  73. package/src/api/login.js +46 -0
  74. package/src/api/optimize.js +72 -0
  75. package/src/api/param.js +154 -0
  76. package/src/api/passwdAssest.js +101 -0
  77. package/src/api/template.js +27 -0
  78. package/src/i18n/index.js +26 -0
  79. package/src/i18n/language/en.js +1108 -0
  80. package/src/i18n/language/index.js +25 -0
  81. package/src/i18n/language/zh.js +1107 -0
  82. package/src/icons/index.js +20 -0
  83. package/src/icons/svg/adaptiveParameter.svg +1 -0
  84. package/src/icons/svg/bendi.svg +110 -0
  85. package/src/icons/svg/bujin.svg +36 -0
  86. package/src/icons/svg/channel.svg +1 -0
  87. package/src/icons/svg/channellock.svg +1 -0
  88. package/src/icons/svg/closephase.svg +1 -0
  89. package/src/icons/svg/connectBlue.svg +7 -0
  90. package/src/icons/svg/control.svg +1 -0
  91. package/src/icons/svg/controlpanel.svg +1 -0
  92. package/src/icons/svg/currentvolume.svg +1 -0
  93. package/src/icons/svg/cutRed.svg +7 -0
  94. package/src/icons/svg/cycle.svg +1 -0
  95. package/src/icons/svg/dailyrecord.svg +1 -0
  96. package/src/icons/svg/date.svg +1 -0
  97. package/src/icons/svg/detector.svg +1 -0
  98. package/src/icons/svg/deviceinfo.svg +1 -0
  99. package/src/icons/svg/dingzhouqi.svg +34 -0
  100. package/src/icons/svg/example.svg +1 -0
  101. package/src/icons/svg/eye.svg +1 -0
  102. package/src/icons/svg/form.svg +1 -0
  103. package/src/icons/svg/ganyingkongzhi.svg +30 -0
  104. package/src/icons/svg/ganyingshixingrenguojie.svg +1 -0
  105. package/src/icons/svg/guandeng.svg +81 -0
  106. package/src/icons/svg/history.svg +1 -0
  107. package/src/icons/svg/huangshan.svg +71 -0
  108. package/src/icons/svg/lockingphase.svg +15 -0
  109. package/src/icons/svg/maincontrol.svg +1 -0
  110. package/src/icons/svg/manualcontrolbackground.svg +51 -0
  111. package/src/icons/svg/manualcontrolbackground1.svg +62 -0
  112. package/src/icons/svg/manualcontrolbackgrounden.svg +62 -0
  113. package/src/icons/svg/model.svg +1 -0
  114. package/src/icons/svg/optimize.svg +1 -0
  115. package/src/icons/svg/overlap.svg +1 -0
  116. package/src/icons/svg/overview.svg +1 -0
  117. package/src/icons/svg/password.svg +1 -0
  118. package/src/icons/svg/pattern.svg +1 -0
  119. package/src/icons/svg/peddetector.svg +1 -0
  120. package/src/icons/svg/phase.svg +1 -0
  121. package/src/icons/svg/phasediff.svg +1 -0
  122. package/src/icons/svg/plan.svg +1 -0
  123. package/src/icons/svg/quanhong.svg +86 -0
  124. package/src/icons/svg/shanghe.svg +11 -0
  125. package/src/icons/svg/shoudong.svg +103 -0
  126. package/src/icons/svg/statistics.svg +1 -0
  127. package/src/icons/svg/system.svg +1 -0
  128. package/src/icons/svg/table.svg +1 -0
  129. package/src/icons/svg/time.svg +1 -0
  130. package/src/icons/svg/tree.svg +1 -0
  131. package/src/icons/svg/user.svg +1 -0
  132. package/src/icons/svg/usermanager.svg +1 -0
  133. package/src/icons/svg/wuxianlan.svg +46 -0
  134. package/src/icons/svg/xiala.svg +11 -0
  135. package/src/icons/svg/xingrenguojie.svg +33 -0
  136. package/src/icons/svg/xitong.svg +89 -0
  137. package/src/icons/svg/youxian.svg +41 -0
  138. package/src/icons/svg/zishiying.svg +1 -0
  139. package/src/icons/svg/zizhukongzhi.svg +43 -0
  140. package/src/kisscomps/components/CommonKanban/CommonKanban.vue +98 -0
  141. package/src/kisscomps/components/CommonKanban/index.js +2 -0
  142. package/src/kisscomps/components/FaultDetailModal/FaultDetailModal.vue +170 -0
  143. package/src/kisscomps/components/FaultDetailModal/index.js +2 -0
  144. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/CrossRoadsSvg.vue +497 -0
  145. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/CustomRoadsSvg.vue +46 -0
  146. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/PatternWalkSvg.vue +295 -0
  147. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/PedSectionEWSvg.vue +300 -0
  148. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/PedSectionSNSvg.vue +288 -0
  149. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampEastSvg.vue +391 -0
  150. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampNorthSvg.vue +336 -0
  151. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampSouthSvg.vue +345 -0
  152. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/RampWestSvg.vue +389 -0
  153. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/SidewalkSvg.vue +1179 -0
  154. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeEastRoadsSvg.vue +402 -0
  155. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeNorthRoadsSvg.vue +361 -0
  156. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeSouthRoadsSvg.vue +368 -0
  157. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/TShapeWestRoadsSvg.vue +475 -0
  158. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LCrossRoadsSvg.vue +494 -0
  159. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeEastRoadsSvg.vue +401 -0
  160. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeNorthRoadsSvg.vue +360 -0
  161. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeSouthRoadsSvg.vue +367 -0
  162. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/leftroad/LTShapeWestRoadsSvg.vue +476 -0
  163. package/src/kisscomps/components/IntersectionMap/crossDirection/baseImg/refreshSvg.vue +63 -0
  164. package/src/kisscomps/components/IntersectionMap/crossDirection/busIcon/busMapSvg.vue +50 -0
  165. package/src/kisscomps/components/IntersectionMap/crossDirection/busIcon/eastBusSvg.vue +167 -0
  166. package/src/kisscomps/components/IntersectionMap/crossDirection/busIcon/northBusSvg.vue +168 -0
  167. package/src/kisscomps/components/IntersectionMap/crossDirection/busIcon/southBusSvg.vue +168 -0
  168. package/src/kisscomps/components/IntersectionMap/crossDirection/busIcon/westBusSvg.vue +169 -0
  169. package/src/kisscomps/components/IntersectionMap/crossDirection/crossDiagram.vue +853 -0
  170. package/src/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/LphaseIconSvg.vue +112 -0
  171. package/src/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/phaseIconSvg.vue +112 -0
  172. package/src/kisscomps/components/IntersectionMap/crossDirection/phaseIcon/rampPhaseIconSvg.vue +111 -0
  173. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/busPos.json +196 -0
  174. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/busPos.left.json +196 -0
  175. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.json +99 -0
  176. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/phasePos.left.json +99 -0
  177. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/rampPos.json +52 -0
  178. package/src/kisscomps/components/IntersectionMap/crossDirection/posJson/sidePos.json +99 -0
  179. package/src/kisscomps/components/IntersectionMap/crossDirection/utils.js +77 -0
  180. package/src/kisscomps/components/IntersectionMap/index.js +2 -0
  181. package/src/kisscomps/components/IntersectionMap/intersectionmap.vue +139 -0
  182. package/src/kisscomps/components/IntersectionWithInterface/IntersectionWithInterface.vue +268 -0
  183. package/src/kisscomps/components/IntersectionWithInterface/index.js +2 -0
  184. package/src/kisscomps/components/SchemeConfig/SchemeConfig.vue +734 -0
  185. package/src/kisscomps/components/SchemeConfig/closePhaselControlModal/index.vue +16 -20
  186. package/src/kisscomps/components/SchemeConfig/index.js +2 -2
  187. package/src/kisscomps/components/SchemeConfig/lockingPhaselControlModal/index.vue +17 -21
  188. package/src/kisscomps/components/SchemeConfig/manualControlModal/index.vue +16 -16
  189. package/src/kisscomps/components/SchemeConfig/realtimeStatusModal/index.vue +32 -32
  190. package/src/kisscomps/components/SvgIcon/SvgIcon.vue +53 -0
  191. package/src/kisscomps/components/SvgIcon/index.js +2 -0
  192. package/src/kisscomps/components/XRDDirSelector/XRDDirSelector.vue +266 -94
  193. package/src/kisscomps/index.js +20 -46
  194. package/src/lib/publicjs/ArryListUtil.js +38 -0
  195. package/src/lib/publicjs/HttpurlMgr.js +45 -0
  196. package/src/lib/publicjs/KissApi.js +156 -0
  197. package/src/lib/publicjs/KissWSSub/Heartcheck.js +128 -0
  198. package/src/lib/publicjs/KissWSSub/KissWsSub.js +91 -0
  199. package/src/lib/publicjs/KissWSSub/KissWsSubByType.js +152 -0
  200. package/src/lib/publicjs/KissWSSub/SimuWsSubByType.js +44 -0
  201. package/src/lib/publicjs/KissWSSub/Sub.js +51 -0
  202. package/src/lib/publicjs/KissWSSub/SubChannel.js +119 -0
  203. package/src/lib/publicjs/basecomponents.js +65 -0
  204. package/src/lib/publicjs/localStorage.js +112 -0
  205. package/src/lib/publicjs/objdeepcopy.js +32 -0
  206. package/src/lib/publicjs/pageScroll.js +30 -0
  207. package/src/lib/publicjs/passwdAssest.js +101 -0
  208. package/src/lib/publicjs/styleclassfactory.js +32 -0
  209. package/src/main.js +22 -1
  210. package/src/router/index.js +14 -0
  211. package/src/store/getters.js +29 -0
  212. package/src/store/index.js +36 -0
  213. package/src/store/modules/app.js +54 -0
  214. package/src/store/modules/globalParam.js +196 -0
  215. package/src/store/modules/globalParamModel.js +34 -0
  216. package/src/store/modules/permissionRoutes.js +50 -0
  217. package/src/store/modules/saveAgent.js +35 -0
  218. package/src/store/modules/user.js +133 -0
  219. package/src/utils/auth.js +102 -0
  220. package/src/utils/dateFormat.js +41 -0
  221. package/src/utils/errorcode.js +224 -0
  222. package/src/utils/fault.js +195 -0
  223. package/src/utils/faultcode.js +209 -0
  224. package/src/utils/index.js +69 -0
  225. package/src/utils/pedphasedesc.js +119 -0
  226. package/src/utils/phasedesc.js +124 -0
  227. package/src/utils/responseMessage.js +21 -0
  228. package/src/utils/validate.js +43 -0
  229. package/src/views/home.vue +0 -133
  230. package/src/views/intersection.vue +84 -0
  231. package/src/views/schemeconfig.vue +125 -0
  232. package/static/apiconfig.json +336 -0
  233. package/static/servConfig.json +1 -0
  234. package/static/styles/common.scss +3 -0
  235. package/static/styles/commonkanban.scss +88 -0
  236. package/static/styles/dark/index.scss +3 -0
  237. package/static/styles/dark/theme/element-dark.scss +43 -0
  238. package/static/styles/index.scss +85 -0
  239. package/static/styles/intersection.scss +144 -0
  240. package/static/styles/light/index.scss +3 -0
  241. package/static/styles/light/theme/element-light.scss +43 -0
  242. package/static/styles/schemeconfig.scss +299 -0
  243. package/static/token.json +3 -0
  244. package/package/kisscomps/components/CircleMenu/KissCircleMenu.vue +0 -398
  245. package/package/kisscomps/components/CircleMenu/index.js +0 -2
  246. package/package/kisscomps/components/DashBoard/MakeGradientColor.js +0 -84
  247. package/package/kisscomps/components/DashBoard/dashboard.js +0 -471
  248. package/package/kisscomps/components/DashBoard/dashboard.vue +0 -57
  249. package/package/kisscomps/components/DashBoard/index.js +0 -2
  250. package/package/kisscomps/components/Horizontal/KissHorizontal.vue +0 -146
  251. package/package/kisscomps/components/Horizontal/index.js +0 -2
  252. package/package/kisscomps/components/HorizontalChildren/KissHorizontalChildren.vue +0 -196
  253. package/package/kisscomps/components/HorizontalChildren/index.js +0 -2
  254. package/package/kisscomps/components/KissCircleMenu/CircleMenu.vue +0 -113
  255. package/package/kisscomps/components/KissCircleMenu/index.js +0 -2
  256. package/package/kisscomps/components/KissCircleMenu/style/index.less +0 -2
  257. package/package/kisscomps/components/KissCircleMenu/style/main/core.less +0 -162
  258. package/package/kisscomps/components/KissCircleMenu/style/main/other.less +0 -94
  259. package/package/kisscomps/components/KissCircleMenu/style/mixin/mixin.less +0 -36
  260. package/package/kisscomps/components/KissCircleMenu/style/var/var.less +0 -21
  261. package/package/kisscomps/components/KissCircleMenu/utils/colorRE.js +0 -5
  262. package/package/kisscomps/components/KissMessageBox/KissMessageBox.vue +0 -108
  263. package/package/kisscomps/components/KissMessageBox/index.js +0 -2
  264. package/package/kisscomps/components/KissSearchInput/index.js +0 -2
  265. package/package/kisscomps/components/KissSearchInput/kisssearchinput.vue +0 -77
  266. package/package/kisscomps/components/KissSimulationProgress/KissSimulationProgress.vue +0 -294
  267. package/package/kisscomps/components/KissSimulationProgress/index.js +0 -2
  268. package/package/kisscomps/components/StatusBar/StatusBar.vue +0 -222
  269. package/package/kisscomps/components/StatusBar/index.js +0 -2
  270. package/package/kisscomps/components/TragResize/index.js +0 -2
  271. package/package/kisscomps/components/TragResize/kissdragresize.vue +0 -536
  272. package/package/kisscomps/components/TragResize/util/dom.js +0 -23
  273. package/package/kisscomps/components/TragResize/util/fns.js +0 -3
  274. package/package/kisscomps/components/XRDDirSelector/XRDDirSelector.1.vue +0 -320
  275. package/package/kisscomps/components/button/index.js +0 -2
  276. package/package/kisscomps/components/button/kissbtn.scss +0 -0
  277. package/package/kisscomps/components/button/kissbutton.vue +0 -168
  278. package/package/kisscomps/components/compass3D/compass.vue +0 -180
  279. package/package/kisscomps/components/compass3D/index.js +0 -2
  280. package/package/kisscomps/components/header/index.js +0 -2
  281. package/package/kisscomps/components/header/kissHead.vue +0 -83
  282. package/package/kisscomps/components/horizontalMenu/index.js +0 -2
  283. package/package/kisscomps/components/horizontalMenu/kissHorizontalMenu.vue +0 -254
  284. package/package/kisscomps/components/image/KissHead/headbg.png +0 -0
  285. package/package/kisscomps/components/image/KissInput/input.png +0 -0
  286. package/package/kisscomps/components/image/KissNavMenu/alart.png +0 -0
  287. package/package/kisscomps/components/image/KissNavMenu/alartselect.png +0 -0
  288. package/package/kisscomps/components/image/KissNavMenu/count.png +0 -0
  289. package/package/kisscomps/components/image/KissNavMenu/countselect.png +0 -0
  290. package/package/kisscomps/components/image/KissNavMenu/cross.png +0 -0
  291. package/package/kisscomps/components/image/KissNavMenu/crossselect.png +0 -0
  292. package/package/kisscomps/components/image/KissNavMenu/help.png +0 -0
  293. package/package/kisscomps/components/image/KissNavMenu/helpselect.png +0 -0
  294. package/package/kisscomps/components/image/KissNavMenu/home.png +0 -0
  295. package/package/kisscomps/components/image/KissNavMenu/homeselect.png +0 -0
  296. package/package/kisscomps/components/image/KissNavMenu/menubg.png +0 -0
  297. package/package/kisscomps/components/image/KissNavMenu/menubgselect.png +0 -0
  298. package/package/kisscomps/components/image/KissNavMenu/net.png +0 -0
  299. package/package/kisscomps/components/image/KissNavMenu/netselect.png +0 -0
  300. package/package/kisscomps/components/image/KissSearchInput/search.png +0 -0
  301. package/package/kisscomps/components/image/KissSearchInput/searchhover.png +0 -0
  302. package/package/kisscomps/components/image/KissSearchInput/searchinput.png +0 -0
  303. package/package/kisscomps/components/image/KissSelect/search.png +0 -0
  304. package/package/kisscomps/components/image/KissSelect/selectbg.png +0 -0
  305. package/package/kisscomps/components/image/KissSelect/selectdown.png +0 -0
  306. package/package/kisscomps/components/image/KissSelect/selectdownhover.png +0 -0
  307. package/package/kisscomps/components/image/KissSelect/selectup.png +0 -0
  308. package/package/kisscomps/components/image/KissSelect/selectuphover.png +0 -0
  309. package/package/kisscomps/components/image/button/btnCenter.png +0 -0
  310. package/package/kisscomps/components/image/button/btnCenterClick.png +0 -0
  311. package/package/kisscomps/components/image/button/btnCenterDisable.png +0 -0
  312. package/package/kisscomps/components/image/button/btnLeft.png +0 -0
  313. package/package/kisscomps/components/image/button/btnLeftClick.png +0 -0
  314. package/package/kisscomps/components/image/button/btnLeftDisable.png +0 -0
  315. package/package/kisscomps/components/image/button/btnRight.png +0 -0
  316. package/package/kisscomps/components/image/button/btnRightClick.png +0 -0
  317. package/package/kisscomps/components/image/button/btnRightDisable.png +0 -0
  318. package/package/kisscomps/components/image/button/btnSingle.png +0 -0
  319. package/package/kisscomps/components/image/button/btnSingleClick.png +0 -0
  320. package/package/kisscomps/components/image/button/btnSingleDisable.png +0 -0
  321. package/package/kisscomps/components/image/mutipletips/chartshowclose.png +0 -0
  322. package/package/kisscomps/components/image/mutipletips/messageshowclose.png +0 -0
  323. package/package/kisscomps/components/image/mutipletips/min.png +0 -0
  324. package/package/kisscomps/components/image/mutipletips/mutiplebglarge.png +0 -0
  325. package/package/kisscomps/components/image/mutipletips/mutiplebgmid.png +0 -0
  326. package/package/kisscomps/components/image/panel/lefticon.png +0 -0
  327. package/package/kisscomps/components/image/phaseHexagon/phasebg.png +0 -0
  328. package/package/kisscomps/components/image/tipdlg/alarmbg.png +0 -0
  329. package/package/kisscomps/components/image/tipdlg/close.png +0 -0
  330. package/package/kisscomps/components/image/tipdlg/closehover.png +0 -0
  331. package/package/kisscomps/components/image/tipdlg/tipsbg.png +0 -0
  332. package/package/kisscomps/components/image/tipdlg/tipsclose.png +0 -0
  333. package/package/kisscomps/components/image/trafficJudgementMenu/bg.png +0 -0
  334. package/package/kisscomps/components/image/trafficJudgementMenu/bgchoosed.png +0 -0
  335. package/package/kisscomps/components/image/trafficJudgementMenu/flow.png +0 -0
  336. package/package/kisscomps/components/image/trafficJudgementMenu/flowClicked.png +0 -0
  337. package/package/kisscomps/components/image/trafficJudgementMenu/greenusage.png +0 -0
  338. package/package/kisscomps/components/image/trafficJudgementMenu/greenusageClicked.png +0 -0
  339. package/package/kisscomps/components/image/trafficJudgementMenu/intensity.png +0 -0
  340. package/package/kisscomps/components/image/trafficJudgementMenu/intensityClicked.png +0 -0
  341. package/package/kisscomps/components/image/trafficJudgementMenu/occupancy.png +0 -0
  342. package/package/kisscomps/components/image/trafficJudgementMenu/occupancyClicked.png +0 -0
  343. package/package/kisscomps/components/image/trafficJudgementMenu/queue.png +0 -0
  344. package/package/kisscomps/components/image/trafficJudgementMenu/queueClicked.png +0 -0
  345. package/package/kisscomps/components/image/trafficJudgementMenu/speed.png +0 -0
  346. package/package/kisscomps/components/image/trafficJudgementMenu/speedClicked.png +0 -0
  347. package/package/kisscomps/components/image/trafficJudgementMenu/trafficJudgement.png +0 -0
  348. package/package/kisscomps/components/input/index.js +0 -2
  349. package/package/kisscomps/components/input/kissinput.vue +0 -57
  350. package/package/kisscomps/components/menu/index.js +0 -2
  351. package/package/kisscomps/components/menu/kissmenu.vue +0 -324
  352. package/package/kisscomps/components/mutipletips/Tdrag.js +0 -585
  353. package/package/kisscomps/components/mutipletips/index.js +0 -2
  354. package/package/kisscomps/components/mutipletips/kissmutipletips.vue +0 -192
  355. package/package/kisscomps/components/panel/index.js +0 -2
  356. package/package/kisscomps/components/panel/kissPanel.vue +0 -151
  357. package/package/kisscomps/components/select/chosen.jquery.min.js +0 -3
  358. package/package/kisscomps/components/select/index.js +0 -2
  359. package/package/kisscomps/components/select/kissselect.vue +0 -527
  360. package/package/kisscomps/components/tablebutton/index.js +0 -2
  361. package/package/kisscomps/components/tablebutton/tablebutton.vue +0 -97
  362. package/package/kisscomps/components/timectrl/KissTimeCtrl.vue +0 -67
  363. package/package/kisscomps/components/timectrl/index.js +0 -2
  364. package/package/kisscomps/components/timectrl/timectrl.css +0 -851
  365. package/package/kisscomps/components/tip/Tdrag.js +0 -585
  366. package/package/kisscomps/components/tip/index.js +0 -2
  367. package/package/kisscomps/components/tip/kisstips.1.vue +0 -154
  368. package/package/kisscomps/components/tip/kisstips.vue +0 -154
  369. package/package/kisscomps/components/tip/kisstips.vue.bak +0 -211
  370. package/package/kissui.js +0 -53758
  371. package/src/kisscomps/components/CircleMenu/KissCircleMenu.vue +0 -398
  372. package/src/kisscomps/components/CircleMenu/index.js +0 -2
  373. package/src/kisscomps/components/DashBoard/MakeGradientColor.js +0 -84
  374. package/src/kisscomps/components/DashBoard/dashboard.js +0 -471
  375. package/src/kisscomps/components/DashBoard/dashboard.vue +0 -57
  376. package/src/kisscomps/components/DashBoard/index.js +0 -2
  377. package/src/kisscomps/components/Horizontal/KissHorizontal.vue +0 -146
  378. package/src/kisscomps/components/Horizontal/index.js +0 -2
  379. package/src/kisscomps/components/HorizontalChildren/KissHorizontalChildren.vue +0 -196
  380. package/src/kisscomps/components/HorizontalChildren/index.js +0 -2
  381. package/src/kisscomps/components/KissCircleMenu/CircleMenu.vue +0 -113
  382. package/src/kisscomps/components/KissCircleMenu/index.js +0 -2
  383. package/src/kisscomps/components/KissCircleMenu/style/index.less +0 -2
  384. package/src/kisscomps/components/KissCircleMenu/style/main/core.less +0 -162
  385. package/src/kisscomps/components/KissCircleMenu/style/main/other.less +0 -94
  386. package/src/kisscomps/components/KissCircleMenu/style/mixin/mixin.less +0 -36
  387. package/src/kisscomps/components/KissCircleMenu/style/var/var.less +0 -21
  388. package/src/kisscomps/components/KissCircleMenu/utils/colorRE.js +0 -5
  389. package/src/kisscomps/components/KissMessageBox/KissMessageBox.vue +0 -108
  390. package/src/kisscomps/components/KissMessageBox/index.js +0 -2
  391. package/src/kisscomps/components/KissSearchInput/index.js +0 -2
  392. package/src/kisscomps/components/KissSearchInput/kisssearchinput.vue +0 -77
  393. package/src/kisscomps/components/KissSimulationProgress/KissSimulationProgress.vue +0 -294
  394. package/src/kisscomps/components/KissSimulationProgress/index.js +0 -2
  395. package/src/kisscomps/components/StatusBar/StatusBar.vue +0 -222
  396. package/src/kisscomps/components/StatusBar/index.js +0 -2
  397. package/src/kisscomps/components/TragResize/index.js +0 -2
  398. package/src/kisscomps/components/TragResize/kissdragresize.vue +0 -536
  399. package/src/kisscomps/components/TragResize/util/dom.js +0 -23
  400. package/src/kisscomps/components/TragResize/util/fns.js +0 -3
  401. package/src/kisscomps/components/XRDDirSelector/XRDDirSelector.1.vue +0 -320
  402. package/src/kisscomps/components/button/index.js +0 -2
  403. package/src/kisscomps/components/button/kissbtn.scss +0 -0
  404. package/src/kisscomps/components/button/kissbutton.vue +0 -168
  405. package/src/kisscomps/components/compass3D/compass.vue +0 -180
  406. package/src/kisscomps/components/compass3D/index.js +0 -2
  407. package/src/kisscomps/components/header/index.js +0 -2
  408. package/src/kisscomps/components/header/kissHead.vue +0 -83
  409. package/src/kisscomps/components/horizontalMenu/index.js +0 -2
  410. package/src/kisscomps/components/horizontalMenu/kissHorizontalMenu.vue +0 -254
  411. package/src/kisscomps/components/image/KissHead/headbg.png +0 -0
  412. package/src/kisscomps/components/image/KissInput/input.png +0 -0
  413. package/src/kisscomps/components/image/KissNavMenu/alart.png +0 -0
  414. package/src/kisscomps/components/image/KissNavMenu/alartselect.png +0 -0
  415. package/src/kisscomps/components/image/KissNavMenu/count.png +0 -0
  416. package/src/kisscomps/components/image/KissNavMenu/countselect.png +0 -0
  417. package/src/kisscomps/components/image/KissNavMenu/cross.png +0 -0
  418. package/src/kisscomps/components/image/KissNavMenu/crossselect.png +0 -0
  419. package/src/kisscomps/components/image/KissNavMenu/help.png +0 -0
  420. package/src/kisscomps/components/image/KissNavMenu/helpselect.png +0 -0
  421. package/src/kisscomps/components/image/KissNavMenu/home.png +0 -0
  422. package/src/kisscomps/components/image/KissNavMenu/homeselect.png +0 -0
  423. package/src/kisscomps/components/image/KissNavMenu/menubg.png +0 -0
  424. package/src/kisscomps/components/image/KissNavMenu/menubgselect.png +0 -0
  425. package/src/kisscomps/components/image/KissNavMenu/net.png +0 -0
  426. package/src/kisscomps/components/image/KissNavMenu/netselect.png +0 -0
  427. package/src/kisscomps/components/image/KissSearchInput/search.png +0 -0
  428. package/src/kisscomps/components/image/KissSearchInput/searchhover.png +0 -0
  429. package/src/kisscomps/components/image/KissSearchInput/searchinput.png +0 -0
  430. package/src/kisscomps/components/image/KissSelect/search.png +0 -0
  431. package/src/kisscomps/components/image/KissSelect/selectbg.png +0 -0
  432. package/src/kisscomps/components/image/KissSelect/selectdown.png +0 -0
  433. package/src/kisscomps/components/image/KissSelect/selectdownhover.png +0 -0
  434. package/src/kisscomps/components/image/KissSelect/selectup.png +0 -0
  435. package/src/kisscomps/components/image/KissSelect/selectuphover.png +0 -0
  436. package/src/kisscomps/components/image/button/btnCenter.png +0 -0
  437. package/src/kisscomps/components/image/button/btnCenterClick.png +0 -0
  438. package/src/kisscomps/components/image/button/btnCenterDisable.png +0 -0
  439. package/src/kisscomps/components/image/button/btnLeft.png +0 -0
  440. package/src/kisscomps/components/image/button/btnLeftClick.png +0 -0
  441. package/src/kisscomps/components/image/button/btnLeftDisable.png +0 -0
  442. package/src/kisscomps/components/image/button/btnRight.png +0 -0
  443. package/src/kisscomps/components/image/button/btnRightClick.png +0 -0
  444. package/src/kisscomps/components/image/button/btnRightDisable.png +0 -0
  445. package/src/kisscomps/components/image/button/btnSingle.png +0 -0
  446. package/src/kisscomps/components/image/button/btnSingleClick.png +0 -0
  447. package/src/kisscomps/components/image/button/btnSingleDisable.png +0 -0
  448. package/src/kisscomps/components/image/mutipletips/chartshowclose.png +0 -0
  449. package/src/kisscomps/components/image/mutipletips/messageshowclose.png +0 -0
  450. package/src/kisscomps/components/image/mutipletips/min.png +0 -0
  451. package/src/kisscomps/components/image/mutipletips/mutiplebglarge.png +0 -0
  452. package/src/kisscomps/components/image/mutipletips/mutiplebgmid.png +0 -0
  453. package/src/kisscomps/components/image/panel/lefticon.png +0 -0
  454. package/src/kisscomps/components/image/phaseHexagon/phasebg.png +0 -0
  455. package/src/kisscomps/components/image/tipdlg/alarmbg.png +0 -0
  456. package/src/kisscomps/components/image/tipdlg/close.png +0 -0
  457. package/src/kisscomps/components/image/tipdlg/closehover.png +0 -0
  458. package/src/kisscomps/components/image/tipdlg/tipsbg.png +0 -0
  459. package/src/kisscomps/components/image/tipdlg/tipsclose.png +0 -0
  460. package/src/kisscomps/components/image/trafficJudgementMenu/bg.png +0 -0
  461. package/src/kisscomps/components/image/trafficJudgementMenu/bgchoosed.png +0 -0
  462. package/src/kisscomps/components/image/trafficJudgementMenu/flow.png +0 -0
  463. package/src/kisscomps/components/image/trafficJudgementMenu/flowClicked.png +0 -0
  464. package/src/kisscomps/components/image/trafficJudgementMenu/greenusage.png +0 -0
  465. package/src/kisscomps/components/image/trafficJudgementMenu/greenusageClicked.png +0 -0
  466. package/src/kisscomps/components/image/trafficJudgementMenu/intensity.png +0 -0
  467. package/src/kisscomps/components/image/trafficJudgementMenu/intensityClicked.png +0 -0
  468. package/src/kisscomps/components/image/trafficJudgementMenu/occupancy.png +0 -0
  469. package/src/kisscomps/components/image/trafficJudgementMenu/occupancyClicked.png +0 -0
  470. package/src/kisscomps/components/image/trafficJudgementMenu/queue.png +0 -0
  471. package/src/kisscomps/components/image/trafficJudgementMenu/queueClicked.png +0 -0
  472. package/src/kisscomps/components/image/trafficJudgementMenu/speed.png +0 -0
  473. package/src/kisscomps/components/image/trafficJudgementMenu/speedClicked.png +0 -0
  474. package/src/kisscomps/components/image/trafficJudgementMenu/trafficJudgement.png +0 -0
  475. package/src/kisscomps/components/input/index.js +0 -2
  476. package/src/kisscomps/components/input/kissinput.vue +0 -57
  477. package/src/kisscomps/components/menu/index.js +0 -2
  478. package/src/kisscomps/components/menu/kissmenu.vue +0 -324
  479. package/src/kisscomps/components/mutipletips/Tdrag.js +0 -585
  480. package/src/kisscomps/components/mutipletips/index.js +0 -2
  481. package/src/kisscomps/components/mutipletips/kissmutipletips.vue +0 -192
  482. package/src/kisscomps/components/panel/index.js +0 -2
  483. package/src/kisscomps/components/panel/kissPanel.vue +0 -151
  484. package/src/kisscomps/components/select/chosen.jquery.min.js +0 -3
  485. package/src/kisscomps/components/select/index.js +0 -2
  486. package/src/kisscomps/components/select/kissselect.vue +0 -527
  487. package/src/kisscomps/components/tablebutton/index.js +0 -2
  488. package/src/kisscomps/components/tablebutton/tablebutton.vue +0 -97
  489. package/src/kisscomps/components/timectrl/KissTimeCtrl.vue +0 -67
  490. package/src/kisscomps/components/timectrl/index.js +0 -2
  491. package/src/kisscomps/components/timectrl/timectrl.css +0 -851
  492. package/src/kisscomps/components/tip/Tdrag.js +0 -585
  493. package/src/kisscomps/components/tip/index.js +0 -2
  494. package/src/kisscomps/components/tip/kisstips.1.vue +0 -154
  495. package/src/kisscomps/components/tip/kisstips.vue +0 -154
  496. package/src/kisscomps/components/tip/kisstips.vue.bak +0 -211
@@ -0,0 +1,1179 @@
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
+ <div :style="{position: 'absolute', left: Data.left, top: Data.top}">
14
+ <svg
15
+ xmlns="http://www.w3.org/2000/svg"
16
+ viewBox="0 0 252.1 250.2"
17
+ :width="Width"
18
+ :height="Height"
19
+ >
20
+ <!-- <path id="西" v-if="crossType !== 'TypeT-east'" :class="Data.name === '西人行横道' ? '' : 'invisible'" :fill="this.GreenFlashColor ? this.GreenFlashColor : (Data.color ? Data.color : defaultColor)" d="M2,230v-4H18v4H2Zm0-12H18v4H2v-4Zm0-8H18v4H2v-4Zm0-8H18v4H2v-4Zm0-8H18v4H2v-4Zm0-8H18v4H2v-4Zm0-8H18v4H2v-4Zm0-9H18v4H2v-4Zm0-8H18v4H2v-4Zm0-8H18v4H2v-4Zm0-8H18v4H2v-4Zm0-8H18v4H2v-4Zm0-8H18v4H2v-4Zm0-8H18v4H2v-4Zm0-8H18v4H2v-4Zm0-8H18v4H2v-4Zm0-8H18v4H2V97Zm0-8H18v4H2V89Zm0-8H18v4H2V81Zm0-9H18v4H2V72Zm0-8H18v4H2V64Zm0-8H18v4H2V56Zm0-8H18v4H2V48Zm0-8H18v4H2V40Zm0-8H18v4H2V32Zm0-8H18v4H2V24Z" transform="translate(-2 -1)"/>
21
+ <path id="东" v-if="crossType !== 'TypeT-west'" :class="Data.name === '东人行横道' ? '' : 'invisible'" :fill="this.GreenFlashColor ? this.GreenFlashColor : (Data.color ? Data.color : defaultColor)" d="M238,230v-4h16v4H238Zm0-12h16v4H238v-4Zm0-8h16v4H238v-4Zm0-8h16v4H238v-4Zm0-8h16v4H238v-4Zm0-8h16v4H238v-4Zm0-8h16v4H238v-4Zm0-9h16v4H238v-4Zm0-8h16v4H238v-4Zm0-8h16v4H238v-4Zm0-8h16v4H238v-4Zm0-8h16v4H238v-4Zm0-8h16v4H238v-4Zm0-8h16v4H238v-4Zm0-8h16v4H238v-4Zm0-8h16v4H238v-4Zm0-8h16v4H238V97Zm0-8h16v4H238V89Zm0-8h16v4H238V81Zm0-9h16v4H238V72Zm0-8h16v4H238V64Zm0-8h16v4H238V56Zm0-8h16v4H238V48Zm0-8h16v4H238V40Zm0-8h16v4H238V32Zm0-8h16v4H238V24Z" transform="translate(-2 -1)"/>
22
+ <path id="北" v-if="crossType !== 'TypeT-south'" :class="Data.name === '北人行横道' ? '' : 'invisible'" :fill="this.GreenFlashColor ? this.GreenFlashColor : (Data.color ? Data.color : defaultColor)" d="M227,17V1h4V17h-4ZM219,1h4V17h-4V1Zm-8,0h4V17h-4V1Zm-8,0h4V17h-4V1Zm-8,0h4V17h-4V1Zm-8,0h4V17h-4V1Zm-8,0h4V17h-4V1Zm-9,0h4V17h-4V1Zm-8,0h4V17h-4V1Zm-8,0h4V17h-4V1Zm-8,0h4V17h-4V1Zm-8,0h4V17h-4V1Zm-8,0h4V17h-4V1Zm-8,0h4V17h-4V1Zm-8,0h4V17h-4V1Zm-8,0h4V17h-4V1ZM98,1h4V17H98V1ZM90,1h4V17H90V1ZM82,1h4V17H82V1ZM73,1h4V17H73V1ZM65,1h4V17H65V1ZM57,1h4V17H57V1ZM49,1h4V17H49V1ZM41,1h4V17H41V1ZM33,1h4V17H33V1ZM25,1h4V17H25V1Z" transform="translate(-2 -1)"/>
23
+ <path id="南" v-if="crossType !== 'TypeT-north'" :class="Data.name === '南人行横道' ? '' : 'invisible'" :fill="this.GreenFlashColor ? this.GreenFlashColor : (Data.color ? Data.color : defaultColor)" d="M227,253V237h4v16h-4Zm-8-16h4v16h-4V237Zm-8,0h4v16h-4V237Zm-8,0h4v16h-4V237Zm-8,0h4v16h-4V237Zm-8,0h4v16h-4V237Zm-8,0h4v16h-4V237Zm-9,0h4v16h-4V237Zm-8,0h4v16h-4V237Zm-8,0h4v16h-4V237Zm-8,0h4v16h-4V237Zm-8,0h4v16h-4V237Zm-8,0h4v16h-4V237Zm-8,0h4v16h-4V237Zm-8,0h4v16h-4V237Zm-8,0h4v16h-4V237Zm-8,0h4v16H98V237Zm-8,0h4v16H90V237Zm-8,0h4v16H82V237Zm-9,0h4v16H73V237Zm-8,0h4v16H65V237Zm-8,0h4v16H57V237Zm-8,0h4v16H49V237Zm-8,0h4v16H41V237Zm-8,0h4v16H33V237Zm-8,0h4v16H25V237Z" transform="translate(-2 -1)"/>-->
24
+ <g
25
+ id="西"
26
+ :class="Data.name === '西人行横道' ? '' : 'invisible'"
27
+ :fill="this.GreenFlashColor ? this.GreenFlashColor : (Data.color ? Data.color : defaultColor)"
28
+ >
29
+ <g>
30
+ <rect y="225" class="st0" width="16" height="4"></rect>
31
+ <rect y="217" class="st0" width="16" height="4"></rect>
32
+ <rect y="209" class="st0" width="16" height="4"></rect>
33
+ <rect y="201" class="st0" width="16" height="4"></rect>
34
+ <rect y="193" class="st0" width="16" height="4"></rect>
35
+ <rect y="185" class="st0" width="16" height="4"></rect>
36
+ <rect y="177" class="st0" width="16" height="4"></rect>
37
+ <rect y="168" class="st0" width="16" height="4"></rect>
38
+ <rect y="160" class="st0" width="16" height="4"></rect>
39
+ <rect y="152" class="st0" width="16" height="4"></rect>
40
+ <rect y="144" class="st0" width="16" height="4"></rect>
41
+ <rect y="136" class="st0" width="16" height="4"></rect>
42
+ </g>
43
+ <g>
44
+ <rect y="128" class="st0" width="16" height="4"></rect>
45
+ <rect y="120" class="st0" width="16" height="4"></rect>
46
+ </g>
47
+ <g>
48
+ <rect y="112" class="st0" width="16" height="4"></rect>
49
+ <rect y="104" class="st0" width="16" height="4"></rect>
50
+ <rect y="96" class="st0" width="16" height="4"></rect>
51
+ <rect y="88" class="st0" width="16" height="4"></rect>
52
+ <rect y="80" class="st0" width="16" height="4"></rect>
53
+ <rect y="71" class="st0" width="16" height="4"></rect>
54
+ <rect y="63" class="st0" width="16" height="4"></rect>
55
+ <rect y="55" class="st0" width="16" height="4"></rect>
56
+ <rect y="47" class="st0" width="16" height="4"></rect>
57
+ <rect y="39" class="st0" width="16" height="4"></rect>
58
+ <rect y="31" class="st0" width="16" height="4"></rect>
59
+ <rect y="23" class="st0" width="16" height="4"></rect>
60
+ </g>
61
+ </g>
62
+ <g id="西-上下">
63
+ <g
64
+ :class="Data.name === '西人行横道-下' ? '' : 'invisible'"
65
+ :fill="this.GreenFlashColor ? this.GreenFlashColor : (Data.color ? Data.color : defaultColor)"
66
+ >
67
+ <rect y="225" class="st0" width="16" height="4"></rect>
68
+ <rect y="217" class="st0" width="16" height="4"></rect>
69
+ <rect y="209" class="st0" width="16" height="4"></rect>
70
+ <rect y="201" class="st0" width="16" height="4"></rect>
71
+ <rect y="193" class="st0" width="16" height="4"></rect>
72
+ <rect y="185" class="st0" width="16" height="4"></rect>
73
+ <rect y="177" class="st0" width="16" height="4"></rect>
74
+ <rect y="168" class="st0" width="16" height="4"></rect>
75
+ <rect y="160" class="st0" width="16" height="4"></rect>
76
+ <rect y="152" class="st0" width="16" height="4"></rect>
77
+ <rect y="144" class="st0" width="16" height="4"></rect>
78
+ <rect y="136" class="st0" width="16" height="4"></rect>
79
+ </g>
80
+ <g
81
+ :class="Data.name === '西人行横道-上' ? '' : 'invisible'"
82
+ :fill="this.GreenFlashColor ? this.GreenFlashColor : (Data.color ? Data.color : defaultColor)"
83
+ >
84
+ <rect y="112" class="st0" width="16" height="4"></rect>
85
+ <rect y="104" class="st0" width="16" height="4"></rect>
86
+ <rect y="96" class="st0" width="16" height="4"></rect>
87
+ <rect y="88" class="st0" width="16" height="4"></rect>
88
+ <rect y="80" class="st0" width="16" height="4"></rect>
89
+ <rect y="71" class="st0" width="16" height="4"></rect>
90
+ <rect y="63" class="st0" width="16" height="4"></rect>
91
+ <rect y="55" class="st0" width="16" height="4"></rect>
92
+ <rect y="47" class="st0" width="16" height="4"></rect>
93
+ <rect y="39" class="st0" width="16" height="4"></rect>
94
+ <rect y="31" class="st0" width="16" height="4"></rect>
95
+ <rect y="23" class="st0" width="16" height="4"></rect>
96
+ </g>
97
+ </g>
98
+
99
+ <g
100
+ id="东"
101
+ :class="Data.name === '东人行横道' ? '' : 'invisible'"
102
+ :fill="this.GreenFlashColor ? this.GreenFlashColor : (Data.color ? Data.color : defaultColor)"
103
+ >
104
+ <g>
105
+ <rect x="236" y="225" class="st0" width="16" height="4"></rect>
106
+ <rect x="236" y="217" class="st0" width="16" height="4"></rect>
107
+ <rect x="236" y="209" class="st0" width="16" height="4"></rect>
108
+ <rect x="236" y="201" class="st0" width="16" height="4"></rect>
109
+ <rect x="236" y="193" class="st0" width="16" height="4"></rect>
110
+ <rect x="236" y="185" class="st0" width="16" height="4"></rect>
111
+ <rect x="236" y="177" class="st0" width="16" height="4"></rect>
112
+ <rect x="236" y="168" class="st0" width="16" height="4"></rect>
113
+ <rect x="236" y="160" class="st0" width="16" height="4"></rect>
114
+ <rect x="236" y="152" class="st0" width="16" height="4"></rect>
115
+ <rect x="236" y="144" class="st0" width="16" height="4"></rect>
116
+ <rect x="236" y="136" class="st0" width="16" height="4"></rect>
117
+ </g>
118
+ <g>
119
+ <rect x="236" y="128" class="st0" width="16" height="4"></rect>
120
+ <rect x="236" y="120" class="st0" width="16" height="4"></rect>
121
+ </g>
122
+ <g>
123
+ <rect x="236" y="112" class="st0" width="16" height="4"></rect>
124
+ <rect x="236" y="104" class="st0" width="16" height="4"></rect>
125
+ <rect x="236" y="96" class="st0" width="16" height="4"></rect>
126
+ <rect x="236" y="88" class="st0" width="16" height="4"></rect>
127
+ <rect x="236" y="80" class="st0" width="16" height="4"></rect>
128
+ <rect x="236" y="71" class="st0" width="16" height="4"></rect>
129
+ <rect x="236" y="63" class="st0" width="16" height="4"></rect>
130
+ <rect x="236" y="55" class="st0" width="16" height="4"></rect>
131
+ <rect x="236" y="47" class="st0" width="16" height="4"></rect>
132
+ <rect x="236" y="39" class="st0" width="16" height="4"></rect>
133
+ <rect x="236" y="31" class="st0" width="16" height="4"></rect>
134
+ <rect x="236" y="23" class="st0" width="16" height="4"></rect>
135
+ </g>
136
+ </g>
137
+
138
+ <g id="东-上下">
139
+ <g
140
+ :class="Data.name === '东人行横道-下' ? '' : 'invisible'"
141
+ :fill="this.GreenFlashColor ? this.GreenFlashColor : (Data.color ? Data.color : defaultColor)"
142
+ >
143
+ <rect x="236" y="225" class="st0" width="16" height="4"></rect>
144
+ <rect x="236" y="217" class="st0" width="16" height="4"></rect>
145
+ <rect x="236" y="209" class="st0" width="16" height="4"></rect>
146
+ <rect x="236" y="201" class="st0" width="16" height="4"></rect>
147
+ <rect x="236" y="193" class="st0" width="16" height="4"></rect>
148
+ <rect x="236" y="185" class="st0" width="16" height="4"></rect>
149
+ <rect x="236" y="177" class="st0" width="16" height="4"></rect>
150
+ <rect x="236" y="168" class="st0" width="16" height="4"></rect>
151
+ <rect x="236" y="160" class="st0" width="16" height="4"></rect>
152
+ <rect x="236" y="152" class="st0" width="16" height="4"></rect>
153
+ <rect x="236" y="144" class="st0" width="16" height="4"></rect>
154
+ <rect x="236" y="136" class="st0" width="16" height="4"></rect>
155
+ </g>
156
+ <g
157
+ :class="Data.name === '东人行横道-上' ? '' : 'invisible'"
158
+ :fill="this.GreenFlashColor ? this.GreenFlashColor : (Data.color ? Data.color : defaultColor)"
159
+ >
160
+ <rect x="236" y="112" class="st0" width="16" height="4"></rect>
161
+ <rect x="236" y="104" class="st0" width="16" height="4"></rect>
162
+ <rect x="236" y="96" class="st0" width="16" height="4"></rect>
163
+ <rect x="236" y="88" class="st0" width="16" height="4"></rect>
164
+ <rect x="236" y="80" class="st0" width="16" height="4"></rect>
165
+ <rect x="236" y="71" class="st0" width="16" height="4"></rect>
166
+ <rect x="236" y="63" class="st0" width="16" height="4"></rect>
167
+ <rect x="236" y="55" class="st0" width="16" height="4"></rect>
168
+ <rect x="236" y="47" class="st0" width="16" height="4"></rect>
169
+ <rect x="236" y="39" class="st0" width="16" height="4"></rect>
170
+ <rect x="236" y="31" class="st0" width="16" height="4"></rect>
171
+ <rect x="236" y="23" class="st0" width="16" height="4"></rect>
172
+ </g>
173
+ </g>
174
+
175
+ <g
176
+ id="北"
177
+ :class="Data.name === '北人行横道' ? '' : 'invisible'"
178
+ :fill="this.GreenFlashColor ? this.GreenFlashColor : (Data.color ? Data.color : defaultColor)"
179
+ >
180
+ <g>
181
+ <rect x="225" class="st0" width="4" height="16"></rect>
182
+ <rect x="217" class="st0" width="4" height="16"></rect>
183
+ <rect x="209" class="st0" width="4" height="16"></rect>
184
+ <rect x="201" class="st0" width="4" height="16"></rect>
185
+ <rect x="193" class="st0" width="4" height="16"></rect>
186
+ <rect x="185" class="st0" width="4" height="16"></rect>
187
+ <rect x="177" class="st0" width="4" height="16"></rect>
188
+ <rect x="168" class="st0" width="4" height="16"></rect>
189
+ <rect x="160" class="st0" width="4" height="16"></rect>
190
+ <rect x="152" class="st0" width="4" height="16"></rect>
191
+ <rect x="144" class="st0" width="4" height="16"></rect>
192
+ <rect x="136" class="st0" width="4" height="16"></rect>
193
+ </g>
194
+ <g>
195
+ <rect x="128" class="st0" width="4" height="16"></rect>
196
+ <rect x="120" class="st0" width="4" height="16"></rect>
197
+ </g>
198
+ <g>
199
+ <rect x="112" class="st0" width="4" height="16"></rect>
200
+ <rect x="104" class="st0" width="4" height="16"></rect>
201
+ <rect x="96" class="st0" width="4" height="16"></rect>
202
+ <rect x="88" class="st0" width="4" height="16"></rect>
203
+ <rect x="80" class="st0" width="4" height="16"></rect>
204
+ <rect x="71" class="st0" width="4" height="16"></rect>
205
+ <rect x="63" class="st0" width="4" height="16"></rect>
206
+ <rect x="55" class="st0" width="4" height="16"></rect>
207
+ <rect x="47" class="st0" width="4" height="16"></rect>
208
+ <rect x="39" class="st0" width="4" height="16"></rect>
209
+ <rect x="31" class="st0" width="4" height="16"></rect>
210
+ <rect x="23" class="st0" width="4" height="16"></rect>
211
+ </g>
212
+ </g>
213
+
214
+ <g id="北-左右">
215
+ <g
216
+ :class="Data.name === '北人行横道-右' ? '' : 'invisible'"
217
+ :fill="this.GreenFlashColor ? this.GreenFlashColor : (Data.color ? Data.color : defaultColor)"
218
+ >
219
+ <rect x="225" class="st0" width="4" height="16"></rect>
220
+ <rect x="217" class="st0" width="4" height="16"></rect>
221
+ <rect x="209" class="st0" width="4" height="16"></rect>
222
+ <rect x="201" class="st0" width="4" height="16"></rect>
223
+ <rect x="193" class="st0" width="4" height="16"></rect>
224
+ <rect x="185" class="st0" width="4" height="16"></rect>
225
+ <rect x="177" class="st0" width="4" height="16"></rect>
226
+ <rect x="168" class="st0" width="4" height="16"></rect>
227
+ <rect x="160" class="st0" width="4" height="16"></rect>
228
+ <rect x="152" class="st0" width="4" height="16"></rect>
229
+ <rect x="144" class="st0" width="4" height="16"></rect>
230
+ <rect x="136" class="st0" width="4" height="16"></rect>
231
+ </g>
232
+ <g
233
+ :class="Data.name === '北人行横道-左' ? '' : 'invisible'"
234
+ :fill="this.GreenFlashColor ? this.GreenFlashColor : (Data.color ? Data.color : defaultColor)"
235
+ >
236
+ <rect x="112" class="st0" width="4" height="16"></rect>
237
+ <rect x="104" class="st0" width="4" height="16"></rect>
238
+ <rect x="96" class="st0" width="4" height="16"></rect>
239
+ <rect x="88" class="st0" width="4" height="16"></rect>
240
+ <rect x="80" class="st0" width="4" height="16"></rect>
241
+ <rect x="71" class="st0" width="4" height="16"></rect>
242
+ <rect x="63" class="st0" width="4" height="16"></rect>
243
+ <rect x="55" class="st0" width="4" height="16"></rect>
244
+ <rect x="47" class="st0" width="4" height="16"></rect>
245
+ <rect x="39" class="st0" width="4" height="16"></rect>
246
+ <rect x="31" class="st0" width="4" height="16"></rect>
247
+ <rect x="23" class="st0" width="4" height="16"></rect>
248
+ </g>
249
+ </g>
250
+
251
+ <g
252
+ id="南"
253
+ :class="Data.name === '南人行横道' ? '' : 'invisible'"
254
+ :fill="this.GreenFlashColor ? this.GreenFlashColor : (Data.color ? Data.color : defaultColor)"
255
+ >
256
+ <g>
257
+ <rect x="225" y="236" class="st0" width="4" height="16"></rect>
258
+ <rect x="217" y="236" class="st0" width="4" height="16"></rect>
259
+ <rect x="209" y="236" class="st0" width="4" height="16"></rect>
260
+ <rect x="201" y="236" class="st0" width="4" height="16"></rect>
261
+ <rect x="193" y="236" class="st0" width="4" height="16"></rect>
262
+ <rect x="185" y="236" class="st0" width="4" height="16"></rect>
263
+ <rect x="177" y="236" class="st0" width="4" height="16"></rect>
264
+ <rect x="168" y="236" class="st0" width="4" height="16"></rect>
265
+ <rect x="160" y="236" class="st0" width="4" height="16"></rect>
266
+ <rect x="152" y="236" class="st0" width="4" height="16"></rect>
267
+ <rect x="144" y="236" class="st0" width="4" height="16"></rect>
268
+ <rect x="136" y="236" class="st0" width="4" height="16"></rect>
269
+ </g>
270
+ <g>
271
+ <rect x="128" y="236" class="st0" width="4" height="16"></rect>
272
+ <rect x="120" y="236" class="st0" width="4" height="16"></rect>
273
+ </g>
274
+ <g>
275
+ <rect x="112" y="236" class="st0" width="4" height="16"></rect>
276
+ <rect x="104" y="236" class="st0" width="4" height="16"></rect>
277
+ <rect x="96" y="236" class="st0" width="4" height="16"></rect>
278
+ <rect x="88" y="236" class="st0" width="4" height="16"></rect>
279
+ <rect x="80" y="236" class="st0" width="4" height="16"></rect>
280
+ <rect x="71" y="236" class="st0" width="4" height="16"></rect>
281
+ <rect x="63" y="236" class="st0" width="4" height="16"></rect>
282
+ <rect x="55" y="236" class="st0" width="4" height="16"></rect>
283
+ <rect x="47" y="236" class="st0" width="4" height="16"></rect>
284
+ <rect x="39" y="236" class="st0" width="4" height="16"></rect>
285
+ <rect x="31" y="236" class="st0" width="4" height="16"></rect>
286
+ <rect x="23" y="236" class="st0" width="4" height="16"></rect>
287
+ </g>
288
+ </g>
289
+
290
+ <g id="南-左右">
291
+ <g
292
+ :class="Data.name === '南人行横道-右' ? '' : 'invisible'"
293
+ :fill="this.GreenFlashColor ? this.GreenFlashColor : (Data.color ? Data.color : defaultColor)"
294
+ >
295
+ <rect x="225" y="236" class="st0" width="4" height="16"></rect>
296
+ <rect x="217" y="236" class="st0" width="4" height="16"></rect>
297
+ <rect x="209" y="236" class="st0" width="4" height="16"></rect>
298
+ <rect x="201" y="236" class="st0" width="4" height="16"></rect>
299
+ <rect x="193" y="236" class="st0" width="4" height="16"></rect>
300
+ <rect x="185" y="236" class="st0" width="4" height="16"></rect>
301
+ <rect x="177" y="236" class="st0" width="4" height="16"></rect>
302
+ <rect x="168" y="236" class="st0" width="4" height="16"></rect>
303
+ <rect x="160" y="236" class="st0" width="4" height="16"></rect>
304
+ <rect x="152" y="236" class="st0" width="4" height="16"></rect>
305
+ <rect x="144" y="236" class="st0" width="4" height="16"></rect>
306
+ <rect x="136" y="236" class="st0" width="4" height="16"></rect>
307
+ </g>
308
+ <g
309
+ :class="Data.name === '南人行横道-左' ? '' : 'invisible'"
310
+ :fill="this.GreenFlashColor ? this.GreenFlashColor : (Data.color ? Data.color : defaultColor)"
311
+ >
312
+ <rect x="112" y="236" class="st0" width="4" height="16"></rect>
313
+ <rect x="104" y="236" class="st0" width="4" height="16"></rect>
314
+ <rect x="96" y="236" class="st0" width="4" height="16"></rect>
315
+ <rect x="88" y="236" class="st0" width="4" height="16"></rect>
316
+ <rect x="80" y="236" class="st0" width="4" height="16"></rect>
317
+ <rect x="71" y="236" class="st0" width="4" height="16"></rect>
318
+ <rect x="63" y="236" class="st0" width="4" height="16"></rect>
319
+ <rect x="55" y="236" class="st0" width="4" height="16"></rect>
320
+ <rect x="47" y="236" class="st0" width="4" height="16"></rect>
321
+ <rect x="39" y="236" class="st0" width="4" height="16"></rect>
322
+ <rect x="31" y="236" class="st0" width="4" height="16"></rect>
323
+ <rect x="23" y="236" class="st0" width="4" height="16"></rect>
324
+ </g>
325
+ </g>
326
+
327
+ <g
328
+ id="斜向行人过街"
329
+ :class="Data.name === 'X人行横道-/' ? '' : 'invisible'"
330
+ :fill="this.GreenFlashColor ? this.GreenFlashColor : (Data.color ? Data.color : defaultColor)"
331
+ >
332
+ <rect
333
+ x="78"
334
+ y="164"
335
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -98.1528 106.9619)"
336
+ class="st0"
337
+ width="4"
338
+ height="16"
339
+ ></rect>
340
+ <rect
341
+ x="83.7"
342
+ y="158.3"
343
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -92.496 109.3051)"
344
+ class="st0"
345
+ width="4"
346
+ height="16"
347
+ ></rect>
348
+ <rect
349
+ x="89.4"
350
+ y="152.6"
351
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -86.8391 111.6482)"
352
+ class="st0"
353
+ width="4"
354
+ height="16"
355
+ ></rect>
356
+ <rect
357
+ x="95"
358
+ y="147"
359
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -81.1823 113.9914)"
360
+ class="st0"
361
+ width="4"
362
+ height="16"
363
+ ></rect>
364
+ <rect
365
+ x="55.4"
366
+ y="186.6"
367
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -120.7803 97.5894)"
368
+ class="st0"
369
+ width="4"
370
+ height="16"
371
+ ></rect>
372
+ <rect
373
+ x="61.1"
374
+ y="180.9"
375
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -115.1234 99.9325)"
376
+ class="st0"
377
+ width="4"
378
+ height="16"
379
+ ></rect>
380
+
381
+ <rect
382
+ x="66.7"
383
+ y="175.3"
384
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -109.4666 102.2757)"
385
+ class="st0"
386
+ width="4"
387
+ height="16"
388
+ ></rect>
389
+
390
+ <rect
391
+ x="72.4"
392
+ y="169.6"
393
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -103.8097 104.6188)"
394
+ class="st0"
395
+ width="4"
396
+ height="16"
397
+ ></rect>
398
+ <rect
399
+ x="49.8"
400
+ y="192.2"
401
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -126.4371 95.2462)"
402
+ class="st0"
403
+ width="4"
404
+ height="16"
405
+ ></rect>
406
+ <rect
407
+ x="27.1"
408
+ y="214.9"
409
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -149.0645 85.8736)"
410
+ class="st0"
411
+ width="4"
412
+ height="16"
413
+ ></rect>
414
+ <rect
415
+ x="32.8"
416
+ y="209.2"
417
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -143.4077 88.2168)"
418
+ class="st0"
419
+ width="4"
420
+ height="16"
421
+ ></rect>
422
+ <rect
423
+ x="38.4"
424
+ y="203.6"
425
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -137.7508 90.5599)"
426
+ class="st0"
427
+ width="4"
428
+ height="16"
429
+ ></rect>
430
+ <rect
431
+ x="44.1"
432
+ y="197.9"
433
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -132.094 92.9031)"
434
+ class="st0"
435
+ width="4"
436
+ height="16"
437
+ ></rect>
438
+
439
+ <rect
440
+ x="100.7"
441
+ y="141.3"
442
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -75.5254 116.3345)"
443
+ class="st0"
444
+ width="4"
445
+ height="16"
446
+ ></rect>
447
+
448
+ <rect
449
+ x="106.3"
450
+ y="135.7"
451
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -69.8686 118.6777)"
452
+ class="st0"
453
+ width="4"
454
+ height="16"
455
+ ></rect>
456
+ <rect
457
+ x="112"
458
+ y="130"
459
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -64.2117 121.0208)"
460
+ class="st0"
461
+ width="4"
462
+ height="16"
463
+ ></rect>
464
+
465
+ <rect
466
+ x="118.3"
467
+ y="123.7"
468
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -57.8478 123.6569)"
469
+ class="st0"
470
+ width="4"
471
+ height="16"
472
+ ></rect>
473
+ <rect
474
+ x="124"
475
+ y="118"
476
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -52.1909 126)"
477
+ class="st0"
478
+ width="4"
479
+ height="16"
480
+ ></rect>
481
+
482
+ <rect
483
+ x="129.7"
484
+ y="112.3"
485
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -46.5341 128.3431)"
486
+ class="st0"
487
+ width="4"
488
+ height="16"
489
+ ></rect>
490
+
491
+ <rect
492
+ x="135.3"
493
+ y="106.7"
494
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -40.8772 130.6863)"
495
+ class="st0"
496
+ width="4"
497
+ height="16"
498
+ ></rect>
499
+ <rect
500
+ x="141"
501
+ y="101"
502
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -35.2203 133.0294)"
503
+ class="st0"
504
+ width="4"
505
+ height="16"
506
+ ></rect>
507
+ <rect
508
+ x="146.6"
509
+ y="95.4"
510
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -29.5635 135.3726)"
511
+ class="st0"
512
+ width="4"
513
+ height="16"
514
+ ></rect>
515
+ <rect
516
+ x="152.3"
517
+ y="89.7"
518
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -23.9066 137.7157)"
519
+ class="st0"
520
+ width="4"
521
+ height="16"
522
+ ></rect>
523
+ <rect
524
+ x="157.9"
525
+ y="84.1"
526
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -18.2498 140.0589)"
527
+ class="st0"
528
+ width="4"
529
+ height="16"
530
+ ></rect>
531
+ <rect
532
+ x="163.6"
533
+ y="78.4"
534
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -12.5929 142.402)"
535
+ class="st0"
536
+ width="4"
537
+ height="16"
538
+ ></rect>
539
+ <rect
540
+ x="169.3"
541
+ y="72.7"
542
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -6.9361 144.7452)"
543
+ class="st0"
544
+ width="4"
545
+ height="16"
546
+ ></rect>
547
+ <rect
548
+ x="174.9"
549
+ y="67.1"
550
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -1.2792 147.0883)"
551
+ class="st0"
552
+ width="4"
553
+ height="16"
554
+ ></rect>
555
+ <rect
556
+ x="180.6"
557
+ y="61.4"
558
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 4.3776 149.4315)"
559
+ class="st0"
560
+ width="4"
561
+ height="16"
562
+ ></rect>
563
+ <rect
564
+ x="186.9"
565
+ y="55.1"
566
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 10.7416 152.0675)"
567
+ class="st0"
568
+ width="4"
569
+ height="16"
570
+ ></rect>
571
+ <rect
572
+ x="192.6"
573
+ y="49.4"
574
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 16.3984 154.4106)"
575
+ class="st0"
576
+ width="4"
577
+ height="16"
578
+ ></rect>
579
+ <rect
580
+ x="198.2"
581
+ y="43.8"
582
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 22.0553 156.7538)"
583
+ class="st0"
584
+ width="4"
585
+ height="16"
586
+ ></rect>
587
+ <rect
588
+ x="203.9"
589
+ y="38.1"
590
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 27.7122 159.0969)"
591
+ class="st0"
592
+ width="4"
593
+ height="16"
594
+ ></rect>
595
+ <rect
596
+ x="209.6"
597
+ y="32.4"
598
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 33.369 161.4401)"
599
+ class="st0"
600
+ width="4"
601
+ height="16"
602
+ ></rect>
603
+ <rect
604
+ x="215.2"
605
+ y="26.8"
606
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 39.0259 163.7832)"
607
+ class="st0"
608
+ width="4"
609
+ height="16"
610
+ ></rect>
611
+ <rect
612
+ x="220.9"
613
+ y="21.1"
614
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 44.6827 166.1264)"
615
+ class="st0"
616
+ width="4"
617
+ height="16"
618
+ ></rect>
619
+ </g>
620
+ <g
621
+ id="斜向行人过街1"
622
+ :class="Data.name === 'X人行横道-\\' ? '' : 'invisible'"
623
+ :fill="this.GreenFlashColor ? this.GreenFlashColor : (Data.color ? Data.color : defaultColor)"
624
+ >
625
+ <rect
626
+ x="72"
627
+ y="78"
628
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -33.1529 80.0381)"
629
+ class="st0"
630
+ width="16"
631
+ height="4"
632
+ ></rect>
633
+ <rect
634
+ x="77.7"
635
+ y="83.7"
636
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -35.496 85.6949)"
637
+ class="st0"
638
+ width="16"
639
+ height="4"
640
+ ></rect>
641
+ <rect
642
+ x="83.4"
643
+ y="89.4"
644
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -37.8391 91.3518)"
645
+ class="st0"
646
+ width="16"
647
+ height="4"
648
+ ></rect>
649
+ <rect
650
+ x="89"
651
+ y="95"
652
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -40.1823 97.0086)"
653
+ class="st0"
654
+ width="16"
655
+ height="4"
656
+ ></rect>
657
+ <rect
658
+ x="49.4"
659
+ y="55.4"
660
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -23.7803 57.4106)"
661
+ class="st0"
662
+ width="16"
663
+ height="4"
664
+ ></rect>
665
+ <rect
666
+ x="55.1"
667
+ y="61.1"
668
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -26.1234 63.0675)"
669
+ class="st0"
670
+ width="16"
671
+ height="4"
672
+ ></rect>
673
+ <rect
674
+ x="60.7"
675
+ y="66.7"
676
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -28.4666 68.7243)"
677
+ class="st0"
678
+ width="16"
679
+ height="4"
680
+ ></rect>
681
+ <rect
682
+ x="66.4"
683
+ y="72.4"
684
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -30.8097 74.3812)"
685
+ class="st0"
686
+ width="16"
687
+ height="4"
688
+ ></rect>
689
+ <rect
690
+ x="43.8"
691
+ y="49.8"
692
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -21.4371 51.7538)"
693
+ class="st0"
694
+ width="16"
695
+ height="4"
696
+ ></rect>
697
+ <rect
698
+ x="21.1"
699
+ y="27.1"
700
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -12.0645 29.1264)"
701
+ class="st0"
702
+ width="16"
703
+ height="4"
704
+ ></rect>
705
+ <rect
706
+ x="26.8"
707
+ y="32.8"
708
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -14.4077 34.7832)"
709
+ class="st0"
710
+ width="16"
711
+ height="4"
712
+ ></rect>
713
+ <rect
714
+ x="32.4"
715
+ y="38.4"
716
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -16.7508 40.4401)"
717
+ class="st0"
718
+ width="16"
719
+ height="4"
720
+ ></rect>
721
+ <rect
722
+ x="38.1"
723
+ y="44.1"
724
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -19.094 46.0969)"
725
+ class="st0"
726
+ width="16"
727
+ height="4"
728
+ ></rect>
729
+ <rect
730
+ x="94.7"
731
+ y="100.7"
732
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -42.5254 102.6655)"
733
+ class="st0"
734
+ width="16"
735
+ height="4"
736
+ ></rect>
737
+
738
+ <rect
739
+ x="100.3"
740
+ y="106.3"
741
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -44.8686 108.3223)"
742
+ class="st0"
743
+ width="16"
744
+ height="4"
745
+ ></rect>
746
+ <rect
747
+ x="106"
748
+ y="112"
749
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -47.2117 113.9792)"
750
+ class="st0"
751
+ width="16"
752
+ height="4"
753
+ ></rect>
754
+
755
+ <rect
756
+ x="112.3"
757
+ y="118.3"
758
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -49.8478 120.3431)"
759
+ class="st0"
760
+ width="16"
761
+ height="4"
762
+ ></rect>
763
+ <rect
764
+ x="118"
765
+ y="124"
766
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -52.1909 126)"
767
+ class="st0"
768
+ width="16"
769
+ height="4"
770
+ ></rect>
771
+
772
+ <rect
773
+ x="123.7"
774
+ y="129.7"
775
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -54.5341 131.6569)"
776
+ class="st0"
777
+ width="16"
778
+ height="4"
779
+ ></rect>
780
+
781
+ <rect
782
+ x="129.3"
783
+ y="135.3"
784
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -56.8772 137.3137)"
785
+ class="st0"
786
+ width="16"
787
+ height="4"
788
+ ></rect>
789
+ <rect
790
+ x="135"
791
+ y="141"
792
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -59.2203 142.9706)"
793
+ class="st0"
794
+ width="16"
795
+ height="4"
796
+ ></rect>
797
+
798
+ <rect
799
+ x="140.6"
800
+ y="146.6"
801
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -61.5635 148.6274)"
802
+ class="st0"
803
+ width="16"
804
+ height="4"
805
+ ></rect>
806
+
807
+ <rect
808
+ x="146.3"
809
+ y="152.3"
810
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -63.9066 154.2843)"
811
+ class="st0"
812
+ width="16"
813
+ height="4"
814
+ ></rect>
815
+
816
+ <rect
817
+ x="151.9"
818
+ y="157.9"
819
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -66.2498 159.9411)"
820
+ class="st0"
821
+ width="16"
822
+ height="4"
823
+ ></rect>
824
+ <rect
825
+ x="157.6"
826
+ y="163.6"
827
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -68.5929 165.598)"
828
+ class="st0"
829
+ width="16"
830
+ height="4"
831
+ ></rect>
832
+
833
+ <rect
834
+ x="163.3"
835
+ y="169.3"
836
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -70.9361 171.2548)"
837
+ class="st0"
838
+ width="16"
839
+ height="4"
840
+ ></rect>
841
+
842
+ <rect
843
+ x="168.9"
844
+ y="174.9"
845
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -73.2792 176.9117)"
846
+ class="st0"
847
+ width="16"
848
+ height="4"
849
+ ></rect>
850
+
851
+ <rect
852
+ x="174.6"
853
+ y="180.6"
854
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -75.6224 182.5685)"
855
+ class="st0"
856
+ width="16"
857
+ height="4"
858
+ ></rect>
859
+
860
+ <rect
861
+ x="180.9"
862
+ y="186.9"
863
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -78.2584 188.9325)"
864
+ class="st0"
865
+ width="16"
866
+ height="4"
867
+ ></rect>
868
+
869
+ <rect
870
+ x="186.6"
871
+ y="192.6"
872
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -80.6016 194.5894)"
873
+ class="st0"
874
+ width="16"
875
+ height="4"
876
+ ></rect>
877
+
878
+ <rect
879
+ x="192.2"
880
+ y="198.2"
881
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -82.9447 200.2462)"
882
+ class="st0"
883
+ width="16"
884
+ height="4"
885
+ ></rect>
886
+
887
+ <rect
888
+ x="197.9"
889
+ y="203.9"
890
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -85.2878 205.9031)"
891
+ class="st0"
892
+ width="16"
893
+ height="4"
894
+ ></rect>
895
+ <rect
896
+ x="203.6"
897
+ y="209.6"
898
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -87.631 211.5599)"
899
+ class="st0"
900
+ width="16"
901
+ height="4"
902
+ ></rect>
903
+
904
+ <rect
905
+ x="209.2"
906
+ y="215.2"
907
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -89.9741 217.2168)"
908
+ class="st0"
909
+ width="16"
910
+ height="4"
911
+ ></rect>
912
+
913
+ <rect
914
+ x="214.9"
915
+ y="220.9"
916
+ transform="matrix(0.7071 -0.7071 0.7071 0.7071 -92.3173 222.8736)"
917
+ class="st0"
918
+ width="16"
919
+ height="4"
920
+ ></rect>
921
+ </g>
922
+ <g
923
+ id="路段行人过街-东西"
924
+ :class="Data.name === '东西路段人行横道' ? '' : 'invisible'"
925
+ :fill="this.GreenFlashColor ? this.GreenFlashColor : (Data.color ? Data.color : defaultColor)"
926
+ >
927
+ <g>
928
+ <rect x="37.9" y="97.9" width="4" height="56.3"></rect>
929
+ </g>
930
+ <g>
931
+ <rect x="30.1" y="97.9" width="4" height="56.3"></rect>
932
+ </g>
933
+ <g>
934
+ <rect x="22.5" y="97.9" width="4" height="56.3"></rect>
935
+ </g>
936
+ <g>
937
+ <rect x="45.7" y="97.9" width="4" height="56.3"></rect>
938
+ </g>
939
+ <g>
940
+ <rect x="53.5" y="97.9" width="4" height="56.3"></rect>
941
+ </g>
942
+ <g>
943
+ <rect x="61.3" y="97.9" width="4" height="56.3"></rect>
944
+ </g>
945
+ <g>
946
+ <rect x="69.1" y="97.9" width="4" height="56.3"></rect>
947
+ </g>
948
+ <g>
949
+ <rect x="76.9" y="97.9" width="4" height="56.3"></rect>
950
+ </g>
951
+ <g>
952
+ <rect x="84.7" y="97.9" width="4" height="56.3"></rect>
953
+ </g>
954
+ <g>
955
+ <rect x="92.5" y="97.9" width="4" height="56.3"></rect>
956
+ </g>
957
+ <g>
958
+ <rect x="100.3" y="97.9" width="4" height="56.3"></rect>
959
+ </g>
960
+ <g>
961
+ <rect x="108.1" y="97.9" width="4" height="56.3"></rect>
962
+ </g>
963
+ <g>
964
+ <rect x="116" y="97.9" width="4" height="56.3"></rect>
965
+ </g>
966
+ <g>
967
+ <rect x="123.8" y="97.9" width="4" height="56.3"></rect>
968
+ </g>
969
+ <g>
970
+ <rect x="131.6" y="97.9" width="4" height="56.3"></rect>
971
+ </g>
972
+ <g>
973
+ <rect x="139.4" y="97.9" width="4" height="56.3"></rect>
974
+ </g>
975
+ <g>
976
+ <rect x="147.2" y="97.9" width="4" height="56.3"></rect>
977
+ </g>
978
+ <g>
979
+ <rect x="155" y="97.9" width="4" height="56.3"></rect>
980
+ </g>
981
+ <g>
982
+ <rect x="162.8" y="97.9" width="4" height="56.3"></rect>
983
+ </g>
984
+ <g>
985
+ <rect x="170.6" y="97.9" width="4" height="56.3"></rect>
986
+ </g>
987
+ <g>
988
+ <rect x="178.4" y="97.9" width="4" height="56.3"></rect>
989
+ </g>
990
+ <g>
991
+ <rect x="186.2" y="97.9" width="4" height="56.3"></rect>
992
+ </g>
993
+ <g>
994
+ <rect x="194" y="97.9" width="4" height="56.3"></rect>
995
+ </g>
996
+ <g>
997
+ <rect x="201.8" y="97.9" width="4" height="56.3"></rect>
998
+ </g>
999
+ <g>
1000
+ <rect x="209.6" y="97.9" width="4" height="56.3"></rect>
1001
+ <rect x="217.6" y="97.9" width="4" height="56.3"></rect>
1002
+ <rect x="225.5" y="97.9" width="4" height="56.3"></rect>
1003
+ </g>
1004
+ </g>
1005
+ <g
1006
+ id="路段行人过街-南北"
1007
+ :class="Data.name === '南北路段人行横道' ? '' : 'invisible'"
1008
+ :fill="this.GreenFlashColor ? this.GreenFlashColor : (Data.color ? Data.color : defaultColor)"
1009
+ >
1010
+ <g>
1011
+ <rect x="97.9" y="37.9" width="56.3" height="4"></rect>
1012
+ </g>
1013
+ <g>
1014
+ <rect x="97.9" y="30.1" width="56.3" height="4"></rect>
1015
+ </g>
1016
+ <g>
1017
+ <rect x="97.9" y="22.5" width="56.3" height="4"></rect>
1018
+ </g>
1019
+ <g>
1020
+ <rect x="97.9" y="45.7" width="56.3" height="4"></rect>
1021
+ </g>
1022
+ <g>
1023
+ <rect x="97.9" y="53.5" width="56.3" height="4"></rect>
1024
+ </g>
1025
+ <g>
1026
+ <rect x="97.9" y="61.3" width="56.3" height="4"></rect>
1027
+ </g>
1028
+ <g>
1029
+ <rect x="97.9" y="69.1" width="56.3" height="4"></rect>
1030
+ </g>
1031
+ <g>
1032
+ <rect x="97.9" y="76.9" width="56.3" height="4"></rect>
1033
+ </g>
1034
+ <g>
1035
+ <rect x="97.9" y="84.7" width="56.3" height="4"></rect>
1036
+ </g>
1037
+ <g>
1038
+ <rect x="97.9" y="92.5" width="56.3" height="4"></rect>
1039
+ </g>
1040
+ <g>
1041
+ <rect x="97.9" y="100.3" width="56.3" height="4"></rect>
1042
+ </g>
1043
+ <g>
1044
+ <rect x="97.9" y="108.1" width="56.3" height="4"></rect>
1045
+ </g>
1046
+ <g>
1047
+ <rect x="97.9" y="116" width="56.3" height="4"></rect>
1048
+ </g>
1049
+ <g>
1050
+ <rect x="97.9" y="123.8" width="56.3" height="4"></rect>
1051
+ </g>
1052
+ <g>
1053
+ <rect x="97.9" y="131.6" width="56.3" height="4"></rect>
1054
+ </g>
1055
+ <g>
1056
+ <rect x="97.9" y="139.4" width="56.3" height="4"></rect>
1057
+ </g>
1058
+ <g>
1059
+ <rect x="97.9" y="147.2" width="56.3" height="4"></rect>
1060
+ </g>
1061
+ <g>
1062
+ <rect x="97.9" y="155" width="56.3" height="4"></rect>
1063
+ </g>
1064
+ <g>
1065
+ <rect x="97.9" y="162.8" width="56.3" height="4"></rect>
1066
+ </g>
1067
+ <g>
1068
+ <rect x="97.9" y="170.6" width="56.3" height="4"></rect>
1069
+ </g>
1070
+ <g>
1071
+ <rect x="97.9" y="178.4" width="56.3" height="4"></rect>
1072
+ </g>
1073
+ <g>
1074
+ <rect x="97.9" y="186.2" width="56.3" height="4"></rect>
1075
+ </g>
1076
+ <g>
1077
+ <rect x="97.9" y="194" width="56.3" height="4"></rect>
1078
+ </g>
1079
+ <g>
1080
+ <rect x="97.9" y="201.8" width="56.3" height="4"></rect>
1081
+ </g>
1082
+ <g>
1083
+ <rect x="97.9" y="209.6" width="56.3" height="4"></rect>
1084
+ <rect x="97.9" y="217.6" width="56.3" height="4"></rect>
1085
+ <rect x="97.9" y="225.5" width="56.3" height="4"></rect>
1086
+ </g>
1087
+ </g>
1088
+ </svg>
1089
+ </div>
1090
+ </template>
1091
+ <script>
1092
+ export default {
1093
+ name: 'sidewalksvg',
1094
+ data () {
1095
+ return {
1096
+ defaultColor: '#fff', // 默认状态颜色
1097
+ GreenFlashColor: undefined,
1098
+ lastType: ''
1099
+ }
1100
+ },
1101
+ watch: {
1102
+ Data: {
1103
+ handler: function (val) {
1104
+ if (!val.pedtype) return
1105
+ if (val.pedtype === 4 && this.lastType === '') {
1106
+ // 绿闪:绿-》灰-》绿 循环效果
1107
+ this.GreenFlashColor = '#7bd66b'
1108
+ this.GreenIntervalId = setInterval(() => {
1109
+ this.GreenFlashColor =
1110
+ !this.GreenFlashColor || this.GreenFlashColor === '#828282'
1111
+ ? '#7bd66b'
1112
+ : '#828282'
1113
+ }, 500)
1114
+ this.lastType = val.pedtype
1115
+ }
1116
+ if (
1117
+ this.GreenIntervalId &&
1118
+ val.pedtype !== 4 &&
1119
+ val.pedtype !== this.lastType
1120
+ ) {
1121
+ clearInterval(this.GreenIntervalId)
1122
+ this.GreenFlashColor = undefined
1123
+ this.lastType = ''
1124
+ }
1125
+ },
1126
+ deep: true
1127
+ }
1128
+ },
1129
+ props: {
1130
+ Width: {
1131
+ type: String,
1132
+ default: '252.1px'
1133
+ },
1134
+ Height: {
1135
+ type: String,
1136
+ default: '250.2px'
1137
+ },
1138
+ Data: {
1139
+ type: Object
1140
+ },
1141
+ crossType: {
1142
+ type: String
1143
+ }
1144
+ },
1145
+ methods: {},
1146
+ mounted () {}
1147
+ }
1148
+ </script>
1149
+ <style scoped>
1150
+ .invisible {
1151
+ visibility: hidden;
1152
+ }
1153
+ .hide {
1154
+ display: none;
1155
+ }
1156
+
1157
+ .green {
1158
+ fill: #7bd66b;
1159
+ }
1160
+ .red {
1161
+ fill: #e24b4b;
1162
+ }
1163
+ .yellow {
1164
+ fill: #ce932c;
1165
+ }
1166
+ .gray {
1167
+ fill: #828282;
1168
+ }
1169
+ .cls-1 {
1170
+ fill: #f2f2f2;
1171
+ fill-rule: evenodd;
1172
+ }
1173
+ .st1 {
1174
+ opacity: 0.9;
1175
+ }
1176
+ .st2 {
1177
+ fill: #606060;
1178
+ }
1179
+ </style>