ylyx-cli 1.0.0

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 (402) hide show
  1. package/README.md +184 -0
  2. package/bin/ylyx.js +95 -0
  3. package/lib/generator.js +192 -0
  4. package/lib/index.js +113 -0
  5. package/lib/interactive.js +87 -0
  6. package/lib/remote.js +179 -0
  7. package/lib/template.js +174 -0
  8. package/lib/utils.js +134 -0
  9. package/package.json +56 -0
  10. package/templates/react-app/files/README.md +23 -0
  11. package/templates/react-app/files/package.json +29 -0
  12. package/templates/react-app/files/public/index.html +11 -0
  13. package/templates/react-app/files/src/App.css +15 -0
  14. package/templates/react-app/files/src/App.js +15 -0
  15. package/templates/react-app/files/src/index.css +10 -0
  16. package/templates/react-app/files/src/index.js +11 -0
  17. package/templates/react-app/template.json +12 -0
  18. package/templates/react-component/files/Component.module.css +5 -0
  19. package/templates/react-component/files/Component.tsx +31 -0
  20. package/templates/react-component/files/index.ts +2 -0
  21. package/templates/react-component/template.json +49 -0
  22. package/templates/vue-app/files/.editorconfig +14 -0
  23. package/templates/vue-app/files/.env.development +21 -0
  24. package/templates/vue-app/files/.env.production +18 -0
  25. package/templates/vue-app/files/.eslintignore +5 -0
  26. package/templates/vue-app/files/.eslintrc.js +267 -0
  27. package/templates/vue-app/files/.prettierignore +12 -0
  28. package/templates/vue-app/files/.travis.yml +5 -0
  29. package/templates/vue-app/files/.vscode/extensions.json +7 -0
  30. package/templates/vue-app/files/.vscode/settings.json +39 -0
  31. package/templates/vue-app/files/LICENSE +191 -0
  32. package/templates/vue-app/files/README.md +87 -0
  33. package/templates/vue-app/files/babel.config.js +11 -0
  34. package/templates/vue-app/files/jest.config.js +24 -0
  35. package/templates/vue-app/files/package.json +136 -0
  36. package/templates/vue-app/files/plopfile.js +7 -0
  37. package/templates/vue-app/files/postcss.config.js +5 -0
  38. package/templates/vue-app/files/prettier.config.js +36 -0
  39. package/templates/vue-app/files/public/default.js +26 -0
  40. package/templates/vue-app/files/public/favicon.ico +0 -0
  41. package/templates/vue-app/files/public/index.html +26 -0
  42. package/templates/vue-app/files/src/App.vue +54 -0
  43. package/templates/vue-app/files/src/api/bigDataV/index.js +198 -0
  44. package/templates/vue-app/files/src/api/data.js +42 -0
  45. package/templates/vue-app/files/src/api/dataArchive/index.js +186 -0
  46. package/templates/vue-app/files/src/api/generator/genConfig.js +16 -0
  47. package/templates/vue-app/files/src/api/generator/generator.js +32 -0
  48. package/templates/vue-app/files/src/api/indexManagement/index.js +39 -0
  49. package/templates/vue-app/files/src/api/institutionMonitor/index.js +396 -0
  50. package/templates/vue-app/files/src/api/institutionSet/index.js +120 -0
  51. package/templates/vue-app/files/src/api/login.js +44 -0
  52. package/templates/vue-app/files/src/api/selfStatistics/index.js +50 -0
  53. package/templates/vue-app/files/src/api/system/code.js +15 -0
  54. package/templates/vue-app/files/src/api/system/dict.js +34 -0
  55. package/templates/vue-app/files/src/api/system/dictDetail.js +52 -0
  56. package/templates/vue-app/files/src/api/system/equipment.js +35 -0
  57. package/templates/vue-app/files/src/api/system/examManage.js +49 -0
  58. package/templates/vue-app/files/src/api/system/examProject.js +48 -0
  59. package/templates/vue-app/files/src/api/system/hosModel.js +35 -0
  60. package/templates/vue-app/files/src/api/system/hospital.js +88 -0
  61. package/templates/vue-app/files/src/api/system/job.js +40 -0
  62. package/templates/vue-app/files/src/api/system/menu.js +67 -0
  63. package/templates/vue-app/files/src/api/system/model.js +42 -0
  64. package/templates/vue-app/files/src/api/system/risConfig.js +9 -0
  65. package/templates/vue-app/files/src/api/system/role.js +64 -0
  66. package/templates/vue-app/files/src/api/system/sysSet.js +19 -0
  67. package/templates/vue-app/files/src/api/system/timing.js +41 -0
  68. package/templates/vue-app/files/src/api/system/user.js +121 -0
  69. package/templates/vue-app/files/src/api/tools/alipay.js +25 -0
  70. package/templates/vue-app/files/src/api/tools/email.js +24 -0
  71. package/templates/vue-app/files/src/api/tools/localStorage.js +27 -0
  72. package/templates/vue-app/files/src/api/tools/qiniu.js +40 -0
  73. package/templates/vue-app/files/src/assets/401_images/401.gif +0 -0
  74. package/templates/vue-app/files/src/assets/404_images/404.png +0 -0
  75. package/templates/vue-app/files/src/assets/404_images/404_cloud.png +0 -0
  76. package/templates/vue-app/files/src/assets/css/font-awesome.css +2342 -0
  77. package/templates/vue-app/files/src/assets/css/font-awesome.min.css +2336 -0
  78. package/templates/vue-app/files/src/assets/fonts/FontAwesome.otf +0 -0
  79. package/templates/vue-app/files/src/assets/fonts/fontawesome-webfont.eot +0 -0
  80. package/templates/vue-app/files/src/assets/fonts/fontawesome-webfont.svg +2671 -0
  81. package/templates/vue-app/files/src/assets/fonts/fontawesome-webfont.ttf +0 -0
  82. package/templates/vue-app/files/src/assets/fonts/fontawesome-webfont.woff +0 -0
  83. package/templates/vue-app/files/src/assets/fonts/fontawesome-webfont.woff2 +0 -0
  84. package/templates/vue-app/files/src/assets/icons/index.js +9 -0
  85. package/templates/vue-app/files/src/assets/icons/svg/Steve-Jobs.svg +1 -0
  86. package/templates/vue-app/files/src/assets/icons/svg/achive.svg +1 -0
  87. package/templates/vue-app/files/src/assets/icons/svg/alipay.svg +1 -0
  88. package/templates/vue-app/files/src/assets/icons/svg/anq.svg +1 -0
  89. package/templates/vue-app/files/src/assets/icons/svg/app.svg +1 -0
  90. package/templates/vue-app/files/src/assets/icons/svg/archive.svg +1 -0
  91. package/templates/vue-app/files/src/assets/icons/svg/backup.svg +1 -0
  92. package/templates/vue-app/files/src/assets/icons/svg/chain.svg +1 -0
  93. package/templates/vue-app/files/src/assets/icons/svg/chart.svg +1 -0
  94. package/templates/vue-app/files/src/assets/icons/svg/codeConsole.svg +1 -0
  95. package/templates/vue-app/files/src/assets/icons/svg/dashboard.svg +1 -0
  96. package/templates/vue-app/files/src/assets/icons/svg/database.svg +1 -0
  97. package/templates/vue-app/files/src/assets/icons/svg/date.svg +1 -0
  98. package/templates/vue-app/files/src/assets/icons/svg/deploy.svg +1 -0
  99. package/templates/vue-app/files/src/assets/icons/svg/dept.svg +1 -0
  100. package/templates/vue-app/files/src/assets/icons/svg/dev.svg +1 -0
  101. package/templates/vue-app/files/src/assets/icons/svg/develop.svg +1 -0
  102. package/templates/vue-app/files/src/assets/icons/svg/dictionary.svg +1 -0
  103. package/templates/vue-app/files/src/assets/icons/svg/doc.svg +1 -0
  104. package/templates/vue-app/files/src/assets/icons/svg/download.svg +1 -0
  105. package/templates/vue-app/files/src/assets/icons/svg/edit.svg +1 -0
  106. package/templates/vue-app/files/src/assets/icons/svg/education.svg +1 -0
  107. package/templates/vue-app/files/src/assets/icons/svg/email.svg +1 -0
  108. package/templates/vue-app/files/src/assets/icons/svg/equSet.svg +1 -0
  109. package/templates/vue-app/files/src/assets/icons/svg/error.svg +1 -0
  110. package/templates/vue-app/files/src/assets/icons/svg/exit-fullscreen.svg +1 -0
  111. package/templates/vue-app/files/src/assets/icons/svg/fullscreen.svg +1 -0
  112. package/templates/vue-app/files/src/assets/icons/svg/fwb.svg +1 -0
  113. package/templates/vue-app/files/src/assets/icons/svg/github.svg +1 -0
  114. package/templates/vue-app/files/src/assets/icons/svg/goBack.svg +1 -0
  115. package/templates/vue-app/files/src/assets/icons/svg/gonggao.svg +1 -0
  116. package/templates/vue-app/files/src/assets/icons/svg/hospital.svg +2 -0
  117. package/templates/vue-app/files/src/assets/icons/svg/hospital1.svg +2 -0
  118. package/templates/vue-app/files/src/assets/icons/svg/hospitalTotal.svg +1 -0
  119. package/templates/vue-app/files/src/assets/icons/svg/icon.svg +1 -0
  120. package/templates/vue-app/files/src/assets/icons/svg/image.svg +1 -0
  121. package/templates/vue-app/files/src/assets/icons/svg/index.svg +1 -0
  122. package/templates/vue-app/files/src/assets/icons/svg/international.svg +1 -0
  123. package/templates/vue-app/files/src/assets/icons/svg/ipvisits.svg +1 -0
  124. package/templates/vue-app/files/src/assets/icons/svg/java.svg +1 -0
  125. package/templates/vue-app/files/src/assets/icons/svg/link.svg +1 -0
  126. package/templates/vue-app/files/src/assets/icons/svg/list.svg +1 -0
  127. package/templates/vue-app/files/src/assets/icons/svg/lock.svg +1 -0
  128. package/templates/vue-app/files/src/assets/icons/svg/log.svg +1 -0
  129. package/templates/vue-app/files/src/assets/icons/svg/login.svg +1 -0
  130. package/templates/vue-app/files/src/assets/icons/svg/loginOne.svg +35 -0
  131. package/templates/vue-app/files/src/assets/icons/svg/loginOneWhite.svg +19 -0
  132. package/templates/vue-app/files/src/assets/icons/svg/loginOr.svg +93 -0
  133. package/templates/vue-app/files/src/assets/icons/svg/loginUp.svg +96 -0
  134. package/templates/vue-app/files/src/assets/icons/svg/markdown.svg +1 -0
  135. package/templates/vue-app/files/src/assets/icons/svg/menu.svg +1 -0
  136. package/templates/vue-app/files/src/assets/icons/svg/message.svg +1 -0
  137. package/templates/vue-app/files/src/assets/icons/svg/mnt.svg +1 -0
  138. package/templates/vue-app/files/src/assets/icons/svg/money.svg +1 -0
  139. package/templates/vue-app/files/src/assets/icons/svg/monitor.svg +1 -0
  140. package/templates/vue-app/files/src/assets/icons/svg/nested.svg +1 -0
  141. package/templates/vue-app/files/src/assets/icons/svg/network.svg +1 -0
  142. package/templates/vue-app/files/src/assets/icons/svg/offline.svg +1 -0
  143. package/templates/vue-app/files/src/assets/icons/svg/online.svg +1 -0
  144. package/templates/vue-app/files/src/assets/icons/svg/password.svg +1 -0
  145. package/templates/vue-app/files/src/assets/icons/svg/people.svg +1 -0
  146. package/templates/vue-app/files/src/assets/icons/svg/peoples.svg +1 -0
  147. package/templates/vue-app/files/src/assets/icons/svg/perSet.svg +1 -0
  148. package/templates/vue-app/files/src/assets/icons/svg/permission.svg +1 -0
  149. package/templates/vue-app/files/src/assets/icons/svg/phone.svg +1 -0
  150. package/templates/vue-app/files/src/assets/icons/svg/piechart.svg +1 -0
  151. package/templates/vue-app/files/src/assets/icons/svg/qiniu.svg +1 -0
  152. package/templates/vue-app/files/src/assets/icons/svg/redis.svg +1 -0
  153. package/templates/vue-app/files/src/assets/icons/svg/resetpassword.svg +1 -0
  154. package/templates/vue-app/files/src/assets/icons/svg/resetpassword1.svg +1 -0
  155. package/templates/vue-app/files/src/assets/icons/svg/role.svg +1 -0
  156. package/templates/vue-app/files/src/assets/icons/svg/search.svg +1 -0
  157. package/templates/vue-app/files/src/assets/icons/svg/server.svg +1 -0
  158. package/templates/vue-app/files/src/assets/icons/svg/shopping.svg +1 -0
  159. package/templates/vue-app/files/src/assets/icons/svg/size.svg +1 -0
  160. package/templates/vue-app/files/src/assets/icons/svg/skill.svg +1 -0
  161. package/templates/vue-app/files/src/assets/icons/svg/source.svg +1 -0
  162. package/templates/vue-app/files/src/assets/icons/svg/sqlMonitor.svg +1 -0
  163. package/templates/vue-app/files/src/assets/icons/svg/statistical.svg +1 -0
  164. package/templates/vue-app/files/src/assets/icons/svg/swagger.svg +1 -0
  165. package/templates/vue-app/files/src/assets/icons/svg/sys-tools.svg +1 -0
  166. package/templates/vue-app/files/src/assets/icons/svg/system.svg +1 -0
  167. package/templates/vue-app/files/src/assets/icons/svg/system1.svg +1 -0
  168. package/templates/vue-app/files/src/assets/icons/svg/tab.svg +1 -0
  169. package/templates/vue-app/files/src/assets/icons/svg/teams.svg +1 -0
  170. package/templates/vue-app/files/src/assets/icons/svg/theme.svg +1 -0
  171. package/templates/vue-app/files/src/assets/icons/svg/timing.svg +1 -0
  172. package/templates/vue-app/files/src/assets/icons/svg/tools.svg +1 -0
  173. package/templates/vue-app/files/src/assets/icons/svg/tree-table.svg +1 -0
  174. package/templates/vue-app/files/src/assets/icons/svg/tree.svg +1 -0
  175. package/templates/vue-app/files/src/assets/icons/svg/unlock.svg +1 -0
  176. package/templates/vue-app/files/src/assets/icons/svg/user.svg +1 -0
  177. package/templates/vue-app/files/src/assets/icons/svg/user1.svg +1 -0
  178. package/templates/vue-app/files/src/assets/icons/svg/validCode.svg +1 -0
  179. package/templates/vue-app/files/src/assets/icons/svg/visits.svg +1 -0
  180. package/templates/vue-app/files/src/assets/icons/svg/web.svg +1 -0
  181. package/templates/vue-app/files/src/assets/icons/svg/wechat.svg +1 -0
  182. package/templates/vue-app/files/src/assets/icons/svg/weixin.svg +1 -0
  183. package/templates/vue-app/files/src/assets/icons/svg/zujian.svg +1 -0
  184. package/templates/vue-app/files/src/assets/icons/svgo.yml +21 -0
  185. package/templates/vue-app/files/src/assets/images/archive.png +0 -0
  186. package/templates/vue-app/files/src/assets/images/archive_icon.png +0 -0
  187. package/templates/vue-app/files/src/assets/images/avatar.png +0 -0
  188. package/templates/vue-app/files/src/assets/images/background.jpg +0 -0
  189. package/templates/vue-app/files/src/assets/images/bg.png +0 -0
  190. package/templates/vue-app/files/src/assets/images/gongan.png +0 -0
  191. package/templates/vue-app/files/src/assets/images/hospital_icon.png +0 -0
  192. package/templates/vue-app/files/src/assets/images/location.png +0 -0
  193. package/templates/vue-app/files/src/assets/images/logintitle.jpg +0 -0
  194. package/templates/vue-app/files/src/assets/images/logo-copy1.png +0 -0
  195. package/templates/vue-app/files/src/assets/images/logo.png +0 -0
  196. package/templates/vue-app/files/src/assets/images/logoBg.png +0 -0
  197. package/templates/vue-app/files/src/assets/images/offline-bg.png +0 -0
  198. package/templates/vue-app/files/src/assets/images/position.png +0 -0
  199. package/templates/vue-app/files/src/assets/images/qualityBg.jpg +0 -0
  200. package/templates/vue-app/files/src/assets/images/self-bg.png +0 -0
  201. package/templates/vue-app/files/src/assets/images/self-bg2.png +0 -0
  202. package/templates/vue-app/files/src/assets/images/triAngel.png +0 -0
  203. package/templates/vue-app/files/src/assets/images/triAngelNormal.png +0 -0
  204. package/templates/vue-app/files/src/assets/styles/btn.scss +103 -0
  205. package/templates/vue-app/files/src/assets/styles/eladmin.scss +124 -0
  206. package/templates/vue-app/files/src/assets/styles/element-ui.scss +217 -0
  207. package/templates/vue-app/files/src/assets/styles/element-variables.scss +31 -0
  208. package/templates/vue-app/files/src/assets/styles/global.scss +73 -0
  209. package/templates/vue-app/files/src/assets/styles/index.scss +220 -0
  210. package/templates/vue-app/files/src/assets/styles/mixin.scss +60 -0
  211. package/templates/vue-app/files/src/assets/styles/publicStyle.scss +224 -0
  212. package/templates/vue-app/files/src/assets/styles/sidebar.scss +239 -0
  213. package/templates/vue-app/files/src/assets/styles/transition.scss +48 -0
  214. package/templates/vue-app/files/src/assets/styles/variables.scss +44 -0
  215. package/templates/vue-app/files/src/common/flexible.js +145 -0
  216. package/templates/vue-app/files/src/components/Breadcrumb/index.vue +87 -0
  217. package/templates/vue-app/files/src/components/Crud/CRUD.operation.vue +248 -0
  218. package/templates/vue-app/files/src/components/Crud/Pagination.vue +20 -0
  219. package/templates/vue-app/files/src/components/Crud/RR.operation.vue +39 -0
  220. package/templates/vue-app/files/src/components/Crud/UD.operation.vue +106 -0
  221. package/templates/vue-app/files/src/components/Crud/crud.js +907 -0
  222. package/templates/vue-app/files/src/components/Crud/user/UR.operation.vue +154 -0
  223. package/templates/vue-app/files/src/components/DateRangePicker/index.vue +42 -0
  224. package/templates/vue-app/files/src/components/DateRangePickerProhibitNext/index.vue +42 -0
  225. package/templates/vue-app/files/src/components/DateRangePickerProhibitTodayNext/index.vue +48 -0
  226. package/templates/vue-app/files/src/components/Dict/Dict.js +31 -0
  227. package/templates/vue-app/files/src/components/Dict/index.js +29 -0
  228. package/templates/vue-app/files/src/components/Doc/index.vue +16 -0
  229. package/templates/vue-app/files/src/components/Echarts/BarChart.vue +115 -0
  230. package/templates/vue-app/files/src/components/Echarts/Category.vue +768 -0
  231. package/templates/vue-app/files/src/components/Echarts/Funnel.vue +120 -0
  232. package/templates/vue-app/files/src/components/Echarts/Gauge.vue +74 -0
  233. package/templates/vue-app/files/src/components/Echarts/Graph.vue +101 -0
  234. package/templates/vue-app/files/src/components/Echarts/HeatMap.vue +301 -0
  235. package/templates/vue-app/files/src/components/Echarts/Line3D.vue +110 -0
  236. package/templates/vue-app/files/src/components/Echarts/PieChart.vue +84 -0
  237. package/templates/vue-app/files/src/components/Echarts/Point.vue +161 -0
  238. package/templates/vue-app/files/src/components/Echarts/RadarChart.vue +123 -0
  239. package/templates/vue-app/files/src/components/Echarts/Rich.vue +160 -0
  240. package/templates/vue-app/files/src/components/Echarts/Sankey.vue +114 -0
  241. package/templates/vue-app/files/src/components/Echarts/Scatter.vue +192 -0
  242. package/templates/vue-app/files/src/components/Echarts/Sunburst.vue +127 -0
  243. package/templates/vue-app/files/src/components/Echarts/ThemeRiver.vue +233 -0
  244. package/templates/vue-app/files/src/components/Echarts/WordCloud.vue +201 -0
  245. package/templates/vue-app/files/src/components/GithubCorner/index.vue +55 -0
  246. package/templates/vue-app/files/src/components/Hamburger/index.vue +44 -0
  247. package/templates/vue-app/files/src/components/HeaderSearch/index.vue +196 -0
  248. package/templates/vue-app/files/src/components/IconSelect/index.vue +74 -0
  249. package/templates/vue-app/files/src/components/IconSelect/requireIcons.js +10 -0
  250. package/templates/vue-app/files/src/components/Iframe/index.vue +30 -0
  251. package/templates/vue-app/files/src/components/JavaEdit/index.vue +78 -0
  252. package/templates/vue-app/files/src/components/Pagination/index.vue +100 -0
  253. package/templates/vue-app/files/src/components/PanThumb/index.vue +149 -0
  254. package/templates/vue-app/files/src/components/ParentView/index.vue +3 -0
  255. package/templates/vue-app/files/src/components/Permission/index.js +13 -0
  256. package/templates/vue-app/files/src/components/Permission/permission.js +21 -0
  257. package/templates/vue-app/files/src/components/RightPanel/index.vue +149 -0
  258. package/templates/vue-app/files/src/components/Screenfull/index.vue +60 -0
  259. package/templates/vue-app/files/src/components/SizeSelect/index.vue +60 -0
  260. package/templates/vue-app/files/src/components/SvgIcon/index.vue +66 -0
  261. package/templates/vue-app/files/src/components/ThemePicker/index.vue +177 -0
  262. package/templates/vue-app/files/src/components/UploadExcel/index.vue +149 -0
  263. package/templates/vue-app/files/src/components/WaterMark/setWaterMark.js +68 -0
  264. package/templates/vue-app/files/src/components/WaterMark/waterMark.vue +69 -0
  265. package/templates/vue-app/files/src/components/Xgplayer/index.vue +49 -0
  266. package/templates/vue-app/files/src/components/YamlEdit/index.vue +81 -0
  267. package/templates/vue-app/files/src/layout/components/AppMain.vue +67 -0
  268. package/templates/vue-app/files/src/layout/components/Navbar.vue +209 -0
  269. package/templates/vue-app/files/src/layout/components/Settings/index.vue +125 -0
  270. package/templates/vue-app/files/src/layout/components/Sidebar/FixiOSBug.js +26 -0
  271. package/templates/vue-app/files/src/layout/components/Sidebar/Item.vue +29 -0
  272. package/templates/vue-app/files/src/layout/components/Sidebar/Link.vue +35 -0
  273. package/templates/vue-app/files/src/layout/components/Sidebar/Logo.vue +93 -0
  274. package/templates/vue-app/files/src/layout/components/Sidebar/SidebarItem.vue +104 -0
  275. package/templates/vue-app/files/src/layout/components/Sidebar/index.vue +79 -0
  276. package/templates/vue-app/files/src/layout/components/TagsView/ScrollPane.vue +90 -0
  277. package/templates/vue-app/files/src/layout/components/TagsView/index.vue +299 -0
  278. package/templates/vue-app/files/src/layout/components/index.js +5 -0
  279. package/templates/vue-app/files/src/layout/index.vue +119 -0
  280. package/templates/vue-app/files/src/layout/mixin/ResizeHandler.js +45 -0
  281. package/templates/vue-app/files/src/main.js +89 -0
  282. package/templates/vue-app/files/src/mixins/crud.js +348 -0
  283. package/templates/vue-app/files/src/router/index.js +156 -0
  284. package/templates/vue-app/files/src/router/routers.js +203 -0
  285. package/templates/vue-app/files/src/settings.js +57 -0
  286. package/templates/vue-app/files/src/store/getters.js +29 -0
  287. package/templates/vue-app/files/src/store/index.js +25 -0
  288. package/templates/vue-app/files/src/store/modules/api.js +33 -0
  289. package/templates/vue-app/files/src/store/modules/app.js +55 -0
  290. package/templates/vue-app/files/src/store/modules/permission.js +79 -0
  291. package/templates/vue-app/files/src/store/modules/register.js +17 -0
  292. package/templates/vue-app/files/src/store/modules/settings.js +46 -0
  293. package/templates/vue-app/files/src/store/modules/tagsView.js +168 -0
  294. package/templates/vue-app/files/src/store/modules/user.js +119 -0
  295. package/templates/vue-app/files/src/utils/auth.js +18 -0
  296. package/templates/vue-app/files/src/utils/base64ToFile.js +27 -0
  297. package/templates/vue-app/files/src/utils/clipboard.js +36 -0
  298. package/templates/vue-app/files/src/utils/datetime.js +289 -0
  299. package/templates/vue-app/files/src/utils/getBlobFile.js +10 -0
  300. package/templates/vue-app/files/src/utils/getTime.js +29 -0
  301. package/templates/vue-app/files/src/utils/index.js +520 -0
  302. package/templates/vue-app/files/src/utils/permission.js +29 -0
  303. package/templates/vue-app/files/src/utils/pinyin.js +450 -0
  304. package/templates/vue-app/files/src/utils/request.js +139 -0
  305. package/templates/vue-app/files/src/utils/rsaEncrypt.js +37 -0
  306. package/templates/vue-app/files/src/utils/shortcuts.js +210 -0
  307. package/templates/vue-app/files/src/utils/upload.js +12 -0
  308. package/templates/vue-app/files/src/utils/validate.js +262 -0
  309. package/templates/vue-app/files/src/views/components/Echarts.vue +124 -0
  310. package/templates/vue-app/files/src/views/components/Editor.vue +75 -0
  311. package/templates/vue-app/files/src/views/components/MarkDown.vue +44 -0
  312. package/templates/vue-app/files/src/views/components/UVideo.vue +37 -0
  313. package/templates/vue-app/files/src/views/components/YamlEdit.vue +206 -0
  314. package/templates/vue-app/files/src/views/components/camera/camera.vue +115 -0
  315. package/templates/vue-app/files/src/views/components/camera/cameraTest.vue +158 -0
  316. package/templates/vue-app/files/src/views/components/excel/upload-excel.vue +41 -0
  317. package/templates/vue-app/files/src/views/components/icons/element-icons.js +74 -0
  318. package/templates/vue-app/files/src/views/components/icons/index.vue +106 -0
  319. package/templates/vue-app/files/src/views/components/icons/svg-icons.js +10 -0
  320. package/templates/vue-app/files/src/views/components/scroll/index.vue +107 -0
  321. package/templates/vue-app/files/src/views/components/scrollFull/index.vue +99 -0
  322. package/templates/vue-app/files/src/views/dashboard/LineChart.vue +138 -0
  323. package/templates/vue-app/files/src/views/dashboard/PanelGroup.vue +173 -0
  324. package/templates/vue-app/files/src/views/dashboard/mixins/resize.js +57 -0
  325. package/templates/vue-app/files/src/views/dataArchive/delTable.vue +354 -0
  326. package/templates/vue-app/files/src/views/dataArchive/exportDetail.vue +121 -0
  327. package/templates/vue-app/files/src/views/dataArchive/exportList.vue +160 -0
  328. package/templates/vue-app/files/src/views/dataArchive/index.vue +2104 -0
  329. package/templates/vue-app/files/src/views/features/401.vue +83 -0
  330. package/templates/vue-app/files/src/views/features/404.vue +226 -0
  331. package/templates/vue-app/files/src/views/features/redirect.vue +12 -0
  332. package/templates/vue-app/files/src/views/generator/config.vue +348 -0
  333. package/templates/vue-app/files/src/views/generator/index.vue +143 -0
  334. package/templates/vue-app/files/src/views/generator/preview.vue +39 -0
  335. package/templates/vue-app/files/src/views/home.vue +80 -0
  336. package/templates/vue-app/files/src/views/indexManagement/index.vue +422 -0
  337. package/templates/vue-app/files/src/views/indexManagement/other.vue +286 -0
  338. package/templates/vue-app/files/src/views/institutionMonitor/components/LineChart.vue +191 -0
  339. package/templates/vue-app/files/src/views/institutionMonitor/index.scss +339 -0
  340. package/templates/vue-app/files/src/views/institutionMonitor/index.vue +1385 -0
  341. package/templates/vue-app/files/src/views/institutionMonitor/mixins/resize.js +57 -0
  342. package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/checkProjectCode.vue +267 -0
  343. package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/imageAbnormalMonitor.vue +361 -0
  344. package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/index.vue +686 -0
  345. package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/leakageAnomaly.vue +270 -0
  346. package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/moveMonitore.vue +114 -0
  347. package/templates/vue-app/files/src/views/institutionMonitor/monitorDetail/qualityMonitore.vue +338 -0
  348. package/templates/vue-app/files/src/views/institutionSet/cloudSet.vue +534 -0
  349. package/templates/vue-app/files/src/views/institutionSet/index.vue +2550 -0
  350. package/templates/vue-app/files/src/views/login.vue +243 -0
  351. package/templates/vue-app/files/src/views/qualityLogin.vue +280 -0
  352. package/templates/vue-app/files/src/views/selfStatistics/components/LineChart.vue +296 -0
  353. package/templates/vue-app/files/src/views/selfStatistics/hospitalDetail/index.vue +533 -0
  354. package/templates/vue-app/files/src/views/selfStatistics/index.scss +447 -0
  355. package/templates/vue-app/files/src/views/selfStatistics/index.vue +903 -0
  356. package/templates/vue-app/files/src/views/selfStatistics/mixins/resize.js +57 -0
  357. package/templates/vue-app/files/src/views/selfStatistics/monitorDetail/index.vue +285 -0
  358. package/templates/vue-app/files/src/views/selfStatistics/offlineDetail/index.vue +104 -0
  359. package/templates/vue-app/files/src/views/selfStatistics/selfActiveDetail/index.vue +104 -0
  360. package/templates/vue-app/files/src/views/selfStatistics/selfMonitorDetail/index.vue +420 -0
  361. package/templates/vue-app/files/src/views/selfStatistics/setWaterMark/setWaterMark.js +68 -0
  362. package/templates/vue-app/files/src/views/selfStatistics/setWaterMark/waterMark.vue +69 -0
  363. package/templates/vue-app/files/src/views/system/dept/index.vue +144 -0
  364. package/templates/vue-app/files/src/views/system/dict/dictDetail.vue +146 -0
  365. package/templates/vue-app/files/src/views/system/dict/index.vue +159 -0
  366. package/templates/vue-app/files/src/views/system/examModality/index.vue +174 -0
  367. package/templates/vue-app/files/src/views/system/examPart/index.vue +184 -0
  368. package/templates/vue-app/files/src/views/system/examProject/index.vue +321 -0
  369. package/templates/vue-app/files/src/views/system/examine/index.vue +66 -0
  370. package/templates/vue-app/files/src/views/system/job/index.vue +119 -0
  371. package/templates/vue-app/files/src/views/system/job/module/form.vue +72 -0
  372. package/templates/vue-app/files/src/views/system/job/module/header.vue +48 -0
  373. package/templates/vue-app/files/src/views/system/menu/index.vue +327 -0
  374. package/templates/vue-app/files/src/views/system/model/index.vue +285 -0
  375. package/templates/vue-app/files/src/views/system/role/index.vue +434 -0
  376. package/templates/vue-app/files/src/views/system/sysSet/index.vue +84 -0
  377. package/templates/vue-app/files/src/views/system/timing/index.vue +289 -0
  378. package/templates/vue-app/files/src/views/system/timing/log.vue +143 -0
  379. package/templates/vue-app/files/src/views/system/user/admin.vue +414 -0
  380. package/templates/vue-app/files/src/views/system/user/center/updateEmail.vue +146 -0
  381. package/templates/vue-app/files/src/views/system/user/center/updatePass.vue +168 -0
  382. package/templates/vue-app/files/src/views/system/user/center.vue +140 -0
  383. package/templates/vue-app/files/src/views/system/user/index.vue +972 -0
  384. package/templates/vue-app/files/src/views/systemSet/role/index.vue +314 -0
  385. package/templates/vue-app/files/src/views/systemSet/user/admin.vue +414 -0
  386. package/templates/vue-app/files/src/views/systemSet/user/center/updateEmail.vue +146 -0
  387. package/templates/vue-app/files/src/views/systemSet/user/center/updatePass.vue +115 -0
  388. package/templates/vue-app/files/src/views/systemSet/user/center.vue +351 -0
  389. package/templates/vue-app/files/src/views/systemSet/user/index.vue +928 -0
  390. package/templates/vue-app/files/src/views/tools/aliPay/config.vue +102 -0
  391. package/templates/vue-app/files/src/views/tools/aliPay/index.vue +48 -0
  392. package/templates/vue-app/files/src/views/tools/aliPay/toPay.vue +91 -0
  393. package/templates/vue-app/files/src/views/tools/email/config.vue +91 -0
  394. package/templates/vue-app/files/src/views/tools/email/index.vue +42 -0
  395. package/templates/vue-app/files/src/views/tools/email/send.vue +159 -0
  396. package/templates/vue-app/files/src/views/tools/storage/index.vue +35 -0
  397. package/templates/vue-app/files/src/views/tools/storage/local/index.vue +207 -0
  398. package/templates/vue-app/files/src/views/tools/storage/qiniu/form.vue +108 -0
  399. package/templates/vue-app/files/src/views/tools/storage/qiniu/index.vue +241 -0
  400. package/templates/vue-app/files/src/views/tools/swagger/index.vue +14 -0
  401. package/templates/vue-app/files/vue.config.js +173 -0
  402. package/templates/vue-app/template.json +30 -0
@@ -0,0 +1,192 @@
1
+ <template>
2
+ <div :class="className" :style="{ height: height, width: width }" />
3
+ </template>
4
+
5
+ <script>
6
+ import echarts from 'echarts';
7
+
8
+ require('echarts/theme/macarons'); // echarts theme
9
+ import { debounce } from '@/utils';
10
+
11
+ export default {
12
+ props: {
13
+ className: {
14
+ type: String,
15
+ default: 'chart',
16
+ },
17
+ width: {
18
+ type: String,
19
+ default: '100%',
20
+ },
21
+ height: {
22
+ type: String,
23
+ default: '300px',
24
+ },
25
+ },
26
+ data() {
27
+ return {
28
+ chart: null,
29
+ };
30
+ },
31
+ mounted() {
32
+ this.initChart();
33
+ this.__resizeHandler = debounce(() => {
34
+ if (this.chart) {
35
+ this.chart.resize();
36
+ }
37
+ }, 100);
38
+ window.addEventListener('resize', this.__resizeHandler);
39
+ },
40
+ beforeDestroy() {
41
+ if (!this.chart) {
42
+ return;
43
+ }
44
+ window.removeEventListener('resize', this.__resizeHandler);
45
+ this.chart.dispose();
46
+ this.chart = null;
47
+ },
48
+ methods: {
49
+ initChart() {
50
+ this.chart = echarts.init(this.$el, 'macarons');
51
+ const data = [
52
+ [
53
+ [28604, 77, 17096869, 'Australia', 1990],
54
+ [31163, 77.4, 27662440, 'Canada', 1990],
55
+ [1516, 68, 1154605773, 'China', 1990],
56
+ [13670, 74.7, 10582082, 'Cuba', 1990],
57
+ [28599, 75, 4986705, 'Finland', 1990],
58
+ [29476, 77.1, 56943299, 'France', 1990],
59
+ [31476, 75.4, 78958237, 'Germany', 1990],
60
+ [28666, 78.1, 254830, 'Iceland', 1990],
61
+ [1777, 57.7, 870601776, 'India', 1990],
62
+ [29550, 79.1, 122249285, 'Japan', 1990],
63
+ [2076, 67.9, 20194354, 'North Korea', 1990],
64
+ [12087, 72, 42972254, 'South Korea', 1990],
65
+ [24021, 75.4, 3397534, 'New Zealand', 1990],
66
+ [43296, 76.8, 4240375, 'Norway', 1990],
67
+ [10088, 70.8, 38195258, 'Poland', 1990],
68
+ [19349, 69.6, 147568552, 'Russia', 1990],
69
+ [10670, 67.3, 53994605, 'Turkey', 1990],
70
+ [26424, 75.7, 57110117, 'United Kingdom', 1990],
71
+ [37062, 75.4, 252847810, 'United States', 1990],
72
+ ],
73
+ [
74
+ [44056, 81.8, 23968973, 'Australia', 2015],
75
+ [43294, 81.7, 35939927, 'Canada', 2015],
76
+ [13334, 76.9, 1376048943, 'China', 2015],
77
+ [21291, 78.5, 11389562, 'Cuba', 2015],
78
+ [38923, 80.8, 5503457, 'Finland', 2015],
79
+ [37599, 81.9, 64395345, 'France', 2015],
80
+ [44053, 81.1, 80688545, 'Germany', 2015],
81
+ [42182, 82.8, 329425, 'Iceland', 2015],
82
+ [5903, 66.8, 1311050527, 'India', 2015],
83
+ [36162, 83.5, 126573481, 'Japan', 2015],
84
+ [1390, 71.4, 25155317, 'North Korea', 2015],
85
+ [34644, 80.7, 50293439, 'South Korea', 2015],
86
+ [34186, 80.6, 4528526, 'New Zealand', 2015],
87
+ [64304, 81.6, 5210967, 'Norway', 2015],
88
+ [24787, 77.3, 38611794, 'Poland', 2015],
89
+ [23038, 73.13, 143456918, 'Russia', 2015],
90
+ [19360, 76.5, 78665830, 'Turkey', 2015],
91
+ [38225, 81.4, 64715810, 'United Kingdom', 2015],
92
+ [53354, 79.1, 321773631, 'United States', 2015],
93
+ ],
94
+ ];
95
+ this.chart.setOption({
96
+ title: {
97
+ text: '1990 与 2015 年各国家人均寿命与 GDP',
98
+ },
99
+ legend: {
100
+ right: 10,
101
+ data: ['1990', '2015'],
102
+ },
103
+ xAxis: {
104
+ splitLine: {
105
+ lineStyle: {
106
+ type: 'dashed',
107
+ },
108
+ },
109
+ },
110
+ yAxis: {
111
+ splitLine: {
112
+ lineStyle: {
113
+ type: 'dashed',
114
+ },
115
+ },
116
+ scale: true,
117
+ },
118
+ series: [
119
+ {
120
+ name: '1990',
121
+ data: data[0],
122
+ type: 'scatter',
123
+ symbolSize: function (data) {
124
+ return Math.sqrt(data[2]) / 5e2;
125
+ },
126
+ label: {
127
+ emphasis: {
128
+ show: true,
129
+ formatter: function (param) {
130
+ return param.data[3];
131
+ },
132
+ position: 'top',
133
+ },
134
+ },
135
+ itemStyle: {
136
+ normal: {
137
+ shadowBlur: 10,
138
+ shadowColor: 'rgba(120, 36, 50, 0.5)',
139
+ shadowOffsetY: 5,
140
+ color: new echarts.graphic.RadialGradient(0.4, 0.3, 1, [
141
+ {
142
+ offset: 0,
143
+ color: 'rgb(251, 118, 123)',
144
+ },
145
+ {
146
+ offset: 1,
147
+ color: 'rgb(204, 46, 72)',
148
+ },
149
+ ]),
150
+ },
151
+ },
152
+ },
153
+ {
154
+ name: '2015',
155
+ data: data[1],
156
+ type: 'scatter',
157
+ symbolSize: function (data) {
158
+ return Math.sqrt(data[2]) / 5e2;
159
+ },
160
+ label: {
161
+ emphasis: {
162
+ show: true,
163
+ formatter: function (param) {
164
+ return param.data[3];
165
+ },
166
+ position: 'top',
167
+ },
168
+ },
169
+ itemStyle: {
170
+ normal: {
171
+ shadowBlur: 10,
172
+ shadowColor: 'rgba(25, 100, 150, 0.5)',
173
+ shadowOffsetY: 5,
174
+ color: new echarts.graphic.RadialGradient(0.4, 0.3, 1, [
175
+ {
176
+ offset: 0,
177
+ color: 'rgb(129, 227, 238)',
178
+ },
179
+ {
180
+ offset: 1,
181
+ color: 'rgb(25, 183, 207)',
182
+ },
183
+ ]),
184
+ },
185
+ },
186
+ },
187
+ ],
188
+ });
189
+ },
190
+ },
191
+ };
192
+ </script>
@@ -0,0 +1,127 @@
1
+ <template>
2
+ <div :class="className" :style="{ height: height, width: width }" />
3
+ </template>
4
+
5
+ <script>
6
+ import echarts from 'echarts';
7
+
8
+ require('echarts/theme/macarons'); // echarts theme
9
+ import { debounce } from '@/utils';
10
+
11
+ export default {
12
+ props: {
13
+ className: {
14
+ type: String,
15
+ default: 'chart',
16
+ },
17
+ width: {
18
+ type: String,
19
+ default: '100%',
20
+ },
21
+ height: {
22
+ type: String,
23
+ default: '300px',
24
+ },
25
+ },
26
+ data() {
27
+ return {
28
+ chart: null,
29
+ };
30
+ },
31
+ mounted() {
32
+ this.initChart();
33
+ this.__resizeHandler = debounce(() => {
34
+ if (this.chart) {
35
+ this.chart.resize();
36
+ }
37
+ }, 100);
38
+ window.addEventListener('resize', this.__resizeHandler);
39
+ },
40
+ beforeDestroy() {
41
+ if (!this.chart) {
42
+ return;
43
+ }
44
+ window.removeEventListener('resize', this.__resizeHandler);
45
+ this.chart.dispose();
46
+ this.chart = null;
47
+ },
48
+ methods: {
49
+ initChart() {
50
+ this.chart = echarts.init(this.$el, 'macarons');
51
+ const data = [
52
+ {
53
+ name: 'Grandpa',
54
+ children: [
55
+ {
56
+ name: 'Uncle Leo',
57
+ value: 15,
58
+ children: [
59
+ {
60
+ name: 'Cousin Jack',
61
+ value: 2,
62
+ },
63
+ {
64
+ name: 'Cousin Mary',
65
+ value: 5,
66
+ children: [
67
+ {
68
+ name: 'Jackson',
69
+ value: 2,
70
+ },
71
+ ],
72
+ },
73
+ {
74
+ name: 'Cousin Ben',
75
+ value: 4,
76
+ },
77
+ ],
78
+ },
79
+ {
80
+ name: 'Father',
81
+ value: 10,
82
+ children: [
83
+ {
84
+ name: 'Me',
85
+ value: 5,
86
+ },
87
+ {
88
+ name: 'Brother Peter',
89
+ value: 1,
90
+ },
91
+ ],
92
+ },
93
+ ],
94
+ },
95
+ {
96
+ name: 'Nancy',
97
+ children: [
98
+ {
99
+ name: 'Uncle Nike',
100
+ children: [
101
+ {
102
+ name: 'Cousin Betty',
103
+ value: 1,
104
+ },
105
+ {
106
+ name: 'Cousin Jenny',
107
+ value: 2,
108
+ },
109
+ ],
110
+ },
111
+ ],
112
+ },
113
+ ];
114
+ this.chart.setOption({
115
+ series: {
116
+ type: 'sunburst',
117
+ data: data,
118
+ radius: [0, '90%'],
119
+ label: {
120
+ rotate: 'radial',
121
+ },
122
+ },
123
+ });
124
+ },
125
+ },
126
+ };
127
+ </script>
@@ -0,0 +1,233 @@
1
+ <template>
2
+ <div :class="className" :style="{ height: height, width: width }" />
3
+ </template>
4
+
5
+ <script>
6
+ import echarts from 'echarts';
7
+
8
+ require('echarts/theme/macarons'); // echarts theme
9
+ import { debounce } from '@/utils';
10
+
11
+ export default {
12
+ props: {
13
+ className: {
14
+ type: String,
15
+ default: 'chart',
16
+ },
17
+ width: {
18
+ type: String,
19
+ default: '100%',
20
+ },
21
+ height: {
22
+ type: String,
23
+ default: '500px',
24
+ },
25
+ },
26
+ data() {
27
+ return {
28
+ chart: null,
29
+ };
30
+ },
31
+ mounted() {
32
+ this.initChart();
33
+ this.__resizeHandler = debounce(() => {
34
+ if (this.chart) {
35
+ this.chart.resize();
36
+ }
37
+ }, 100);
38
+ window.addEventListener('resize', this.__resizeHandler);
39
+ },
40
+ beforeDestroy() {
41
+ if (!this.chart) {
42
+ return;
43
+ }
44
+ window.removeEventListener('resize', this.__resizeHandler);
45
+ this.chart.dispose();
46
+ this.chart = null;
47
+ },
48
+ methods: {
49
+ initChart() {
50
+ this.chart = echarts.init(this.$el, 'macarons');
51
+
52
+ this.chart.setOption({
53
+ tooltip: {
54
+ trigger: 'axis',
55
+ axisPointer: {
56
+ type: 'line',
57
+ lineStyle: {
58
+ color: 'rgba(0,0,0,0.2)',
59
+ width: 1,
60
+ type: 'solid',
61
+ },
62
+ },
63
+ },
64
+
65
+ legend: {
66
+ data: ['DQ', 'TY', 'SS', 'QG', 'SY', 'DD'],
67
+ },
68
+
69
+ singleAxis: {
70
+ top: 50,
71
+ bottom: 50,
72
+ axisTick: {},
73
+ axisLabel: {},
74
+ type: 'time',
75
+ axisPointer: {
76
+ animation: true,
77
+ label: {
78
+ show: true,
79
+ },
80
+ },
81
+ splitLine: {
82
+ show: true,
83
+ lineStyle: {
84
+ type: 'dashed',
85
+ opacity: 0.2,
86
+ },
87
+ },
88
+ },
89
+
90
+ series: [
91
+ {
92
+ type: 'themeRiver',
93
+ itemStyle: {
94
+ emphasis: {
95
+ shadowBlur: 20,
96
+ shadowColor: 'rgba(0, 0, 0, 0.8)',
97
+ },
98
+ },
99
+ data: [
100
+ ['2015/11/08', 10, 'DQ'],
101
+ ['2015/11/09', 15, 'DQ'],
102
+ ['2015/11/10', 35, 'DQ'],
103
+ ['2015/11/11', 38, 'DQ'],
104
+ ['2015/11/12', 22, 'DQ'],
105
+ ['2015/11/13', 16, 'DQ'],
106
+ ['2015/11/14', 7, 'DQ'],
107
+ ['2015/11/15', 2, 'DQ'],
108
+ ['2015/11/16', 17, 'DQ'],
109
+ ['2015/11/17', 33, 'DQ'],
110
+ ['2015/11/18', 40, 'DQ'],
111
+ ['2015/11/19', 32, 'DQ'],
112
+ ['2015/11/20', 26, 'DQ'],
113
+ ['2015/11/21', 35, 'DQ'],
114
+ ['2015/11/22', 40, 'DQ'],
115
+ ['2015/11/23', 32, 'DQ'],
116
+ ['2015/11/24', 26, 'DQ'],
117
+ ['2015/11/25', 22, 'DQ'],
118
+ ['2015/11/26', 16, 'DQ'],
119
+ ['2015/11/27', 22, 'DQ'],
120
+ ['2015/11/28', 10, 'DQ'],
121
+ ['2015/11/08', 35, 'TY'],
122
+ ['2015/11/09', 36, 'TY'],
123
+ ['2015/11/10', 37, 'TY'],
124
+ ['2015/11/11', 22, 'TY'],
125
+ ['2015/11/12', 24, 'TY'],
126
+ ['2015/11/13', 26, 'TY'],
127
+ ['2015/11/14', 34, 'TY'],
128
+ ['2015/11/15', 21, 'TY'],
129
+ ['2015/11/16', 18, 'TY'],
130
+ ['2015/11/17', 45, 'TY'],
131
+ ['2015/11/18', 32, 'TY'],
132
+ ['2015/11/19', 35, 'TY'],
133
+ ['2015/11/20', 30, 'TY'],
134
+ ['2015/11/21', 28, 'TY'],
135
+ ['2015/11/22', 27, 'TY'],
136
+ ['2015/11/23', 26, 'TY'],
137
+ ['2015/11/24', 15, 'TY'],
138
+ ['2015/11/25', 30, 'TY'],
139
+ ['2015/11/26', 35, 'TY'],
140
+ ['2015/11/27', 42, 'TY'],
141
+ ['2015/11/28', 42, 'TY'],
142
+ ['2015/11/08', 21, 'SS'],
143
+ ['2015/11/09', 25, 'SS'],
144
+ ['2015/11/10', 27, 'SS'],
145
+ ['2015/11/11', 23, 'SS'],
146
+ ['2015/11/12', 24, 'SS'],
147
+ ['2015/11/13', 21, 'SS'],
148
+ ['2015/11/14', 35, 'SS'],
149
+ ['2015/11/15', 39, 'SS'],
150
+ ['2015/11/16', 40, 'SS'],
151
+ ['2015/11/17', 36, 'SS'],
152
+ ['2015/11/18', 33, 'SS'],
153
+ ['2015/11/19', 43, 'SS'],
154
+ ['2015/11/20', 40, 'SS'],
155
+ ['2015/11/21', 34, 'SS'],
156
+ ['2015/11/22', 28, 'SS'],
157
+ ['2015/11/23', 26, 'SS'],
158
+ ['2015/11/24', 37, 'SS'],
159
+ ['2015/11/25', 41, 'SS'],
160
+ ['2015/11/26', 46, 'SS'],
161
+ ['2015/11/27', 47, 'SS'],
162
+ ['2015/11/28', 41, 'SS'],
163
+ ['2015/11/08', 10, 'QG'],
164
+ ['2015/11/09', 15, 'QG'],
165
+ ['2015/11/10', 35, 'QG'],
166
+ ['2015/11/11', 38, 'QG'],
167
+ ['2015/11/12', 22, 'QG'],
168
+ ['2015/11/13', 16, 'QG'],
169
+ ['2015/11/14', 7, 'QG'],
170
+ ['2015/11/15', 2, 'QG'],
171
+ ['2015/11/16', 17, 'QG'],
172
+ ['2015/11/17', 33, 'QG'],
173
+ ['2015/11/18', 40, 'QG'],
174
+ ['2015/11/19', 32, 'QG'],
175
+ ['2015/11/20', 26, 'QG'],
176
+ ['2015/11/21', 35, 'QG'],
177
+ ['2015/11/22', 40, 'QG'],
178
+ ['2015/11/23', 32, 'QG'],
179
+ ['2015/11/24', 26, 'QG'],
180
+ ['2015/11/25', 22, 'QG'],
181
+ ['2015/11/26', 16, 'QG'],
182
+ ['2015/11/27', 22, 'QG'],
183
+ ['2015/11/28', 10, 'QG'],
184
+ ['2015/11/08', 10, 'SY'],
185
+ ['2015/11/09', 15, 'SY'],
186
+ ['2015/11/10', 35, 'SY'],
187
+ ['2015/11/11', 38, 'SY'],
188
+ ['2015/11/12', 22, 'SY'],
189
+ ['2015/11/13', 16, 'SY'],
190
+ ['2015/11/14', 7, 'SY'],
191
+ ['2015/11/15', 2, 'SY'],
192
+ ['2015/11/16', 17, 'SY'],
193
+ ['2015/11/17', 33, 'SY'],
194
+ ['2015/11/18', 40, 'SY'],
195
+ ['2015/11/19', 32, 'SY'],
196
+ ['2015/11/20', 26, 'SY'],
197
+ ['2015/11/21', 35, 'SY'],
198
+ ['2015/11/22', 4, 'SY'],
199
+ ['2015/11/23', 32, 'SY'],
200
+ ['2015/11/24', 26, 'SY'],
201
+ ['2015/11/25', 22, 'SY'],
202
+ ['2015/11/26', 16, 'SY'],
203
+ ['2015/11/27', 22, 'SY'],
204
+ ['2015/11/28', 10, 'SY'],
205
+ ['2015/11/08', 10, 'DD'],
206
+ ['2015/11/09', 15, 'DD'],
207
+ ['2015/11/10', 35, 'DD'],
208
+ ['2015/11/11', 38, 'DD'],
209
+ ['2015/11/12', 22, 'DD'],
210
+ ['2015/11/13', 16, 'DD'],
211
+ ['2015/11/14', 7, 'DD'],
212
+ ['2015/11/15', 2, 'DD'],
213
+ ['2015/11/16', 17, 'DD'],
214
+ ['2015/11/17', 33, 'DD'],
215
+ ['2015/11/18', 4, 'DD'],
216
+ ['2015/11/19', 32, 'DD'],
217
+ ['2015/11/20', 26, 'DD'],
218
+ ['2015/11/21', 35, 'DD'],
219
+ ['2015/11/22', 40, 'DD'],
220
+ ['2015/11/23', 32, 'DD'],
221
+ ['2015/11/24', 26, 'DD'],
222
+ ['2015/11/25', 22, 'DD'],
223
+ ['2015/11/26', 16, 'DD'],
224
+ ['2015/11/27', 22, 'DD'],
225
+ ['2015/11/28', 10, 'DD'],
226
+ ],
227
+ },
228
+ ],
229
+ });
230
+ },
231
+ },
232
+ };
233
+ </script>