zetan-cli-dev-template-vue-element-admin 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (303) hide show
  1. package/package.json +8 -0
  2. package/template/.editorconfig +14 -0
  3. package/template/.env.development +5 -0
  4. package/template/.env.production +6 -0
  5. package/template/.env.staging +8 -0
  6. package/template/.eslintignore +4 -0
  7. package/template/.eslintrc.js +198 -0
  8. package/template/.travis.yml +5 -0
  9. package/template/LICENSE +21 -0
  10. package/template/README.es.md +228 -0
  11. package/template/README.ja.md +224 -0
  12. package/template/README.md +250 -0
  13. package/template/README.zh-CN.md +273 -0
  14. package/template/babel.config.js +14 -0
  15. package/template/build/index.js +35 -0
  16. package/template/jest.config.js +24 -0
  17. package/template/jsconfig.json +9 -0
  18. package/template/mock/article.js +116 -0
  19. package/template/mock/index.js +60 -0
  20. package/template/mock/mock-server.js +81 -0
  21. package/template/mock/remote-search.js +51 -0
  22. package/template/mock/role/index.js +98 -0
  23. package/template/mock/role/routes.js +530 -0
  24. package/template/mock/user.js +84 -0
  25. package/template/mock/utils.js +48 -0
  26. package/template/package.json +111 -0
  27. package/template/plop-templates/component/index.hbs +26 -0
  28. package/template/plop-templates/component/prompt.js +55 -0
  29. package/template/plop-templates/store/index.hbs +16 -0
  30. package/template/plop-templates/store/prompt.js +62 -0
  31. package/template/plop-templates/utils.js +2 -0
  32. package/template/plop-templates/view/index.hbs +26 -0
  33. package/template/plop-templates/view/prompt.js +55 -0
  34. package/template/plopfile.js +9 -0
  35. package/template/postcss.config.js +5 -0
  36. package/template/public/favicon.ico +0 -0
  37. package/template/public/index.html +15 -0
  38. package/template/src/App.vue +11 -0
  39. package/template/src/api/article.js +41 -0
  40. package/template/src/api/qiniu.js +8 -0
  41. package/template/src/api/remote-search.js +17 -0
  42. package/template/src/api/role.js +38 -0
  43. package/template/src/api/user.js +24 -0
  44. package/template/src/assets/401_images/401.gif +0 -0
  45. package/template/src/assets/404_images/404.png +0 -0
  46. package/template/src/assets/404_images/404_cloud.png +0 -0
  47. package/template/src/assets/custom-theme/fonts/element-icons.ttf +0 -0
  48. package/template/src/assets/custom-theme/fonts/element-icons.woff +0 -0
  49. package/template/src/assets/custom-theme/index.css +1 -0
  50. package/template/src/components/BackToTop/index.vue +111 -0
  51. package/template/src/components/Breadcrumb/index.vue +82 -0
  52. package/template/src/components/Charts/Keyboard.vue +155 -0
  53. package/template/src/components/Charts/LineMarker.vue +227 -0
  54. package/template/src/components/Charts/MixChart.vue +271 -0
  55. package/template/src/components/Charts/mixins/resize.js +56 -0
  56. package/template/src/components/DndList/index.vue +166 -0
  57. package/template/src/components/DragSelect/index.vue +65 -0
  58. package/template/src/components/Dropzone/index.vue +297 -0
  59. package/template/src/components/ErrorLog/index.vue +78 -0
  60. package/template/src/components/GithubCorner/index.vue +54 -0
  61. package/template/src/components/Hamburger/index.vue +44 -0
  62. package/template/src/components/HeaderSearch/index.vue +180 -0
  63. package/template/src/components/ImageCropper/index.vue +1779 -0
  64. package/template/src/components/ImageCropper/utils/data2blob.js +19 -0
  65. package/template/src/components/ImageCropper/utils/effectRipple.js +39 -0
  66. package/template/src/components/ImageCropper/utils/language.js +232 -0
  67. package/template/src/components/ImageCropper/utils/mimes.js +7 -0
  68. package/template/src/components/JsonEditor/index.vue +77 -0
  69. package/template/src/components/Kanban/index.vue +99 -0
  70. package/template/src/components/MDinput/index.vue +360 -0
  71. package/template/src/components/MarkdownEditor/default-options.js +31 -0
  72. package/template/src/components/MarkdownEditor/index.vue +118 -0
  73. package/template/src/components/Pagination/index.vue +101 -0
  74. package/template/src/components/PanThumb/index.vue +142 -0
  75. package/template/src/components/RightPanel/index.vue +145 -0
  76. package/template/src/components/Screenfull/index.vue +60 -0
  77. package/template/src/components/Share/DropdownMenu.vue +103 -0
  78. package/template/src/components/SizeSelect/index.vue +57 -0
  79. package/template/src/components/Sticky/index.vue +91 -0
  80. package/template/src/components/SvgIcon/index.vue +62 -0
  81. package/template/src/components/TextHoverEffect/Mallki.vue +113 -0
  82. package/template/src/components/ThemePicker/index.vue +175 -0
  83. package/template/src/components/Tinymce/components/EditorImage.vue +111 -0
  84. package/template/src/components/Tinymce/dynamicLoadScript.js +59 -0
  85. package/template/src/components/Tinymce/index.vue +247 -0
  86. package/template/src/components/Tinymce/plugins.js +7 -0
  87. package/template/src/components/Tinymce/toolbar.js +6 -0
  88. package/template/src/components/Upload/SingleImage.vue +134 -0
  89. package/template/src/components/Upload/SingleImage2.vue +130 -0
  90. package/template/src/components/Upload/SingleImage3.vue +157 -0
  91. package/template/src/components/UploadExcel/index.vue +138 -0
  92. package/template/src/directive/clipboard/clipboard.js +49 -0
  93. package/template/src/directive/clipboard/index.js +13 -0
  94. package/template/src/directive/el-drag-dialog/drag.js +77 -0
  95. package/template/src/directive/el-drag-dialog/index.js +13 -0
  96. package/template/src/directive/el-table/adaptive.js +41 -0
  97. package/template/src/directive/el-table/index.js +13 -0
  98. package/template/src/directive/permission/index.js +13 -0
  99. package/template/src/directive/permission/permission.js +31 -0
  100. package/template/src/directive/sticky.js +91 -0
  101. package/template/src/directive/waves/index.js +13 -0
  102. package/template/src/directive/waves/waves.css +26 -0
  103. package/template/src/directive/waves/waves.js +72 -0
  104. package/template/src/filters/index.js +68 -0
  105. package/template/src/icons/index.js +9 -0
  106. package/template/src/icons/svg/404.svg +1 -0
  107. package/template/src/icons/svg/bug.svg +1 -0
  108. package/template/src/icons/svg/chart.svg +1 -0
  109. package/template/src/icons/svg/clipboard.svg +1 -0
  110. package/template/src/icons/svg/component.svg +1 -0
  111. package/template/src/icons/svg/dashboard.svg +1 -0
  112. package/template/src/icons/svg/documentation.svg +1 -0
  113. package/template/src/icons/svg/drag.svg +1 -0
  114. package/template/src/icons/svg/edit.svg +1 -0
  115. package/template/src/icons/svg/education.svg +1 -0
  116. package/template/src/icons/svg/email.svg +1 -0
  117. package/template/src/icons/svg/example.svg +1 -0
  118. package/template/src/icons/svg/excel.svg +1 -0
  119. package/template/src/icons/svg/exit-fullscreen.svg +1 -0
  120. package/template/src/icons/svg/eye-open.svg +1 -0
  121. package/template/src/icons/svg/eye.svg +1 -0
  122. package/template/src/icons/svg/form.svg +1 -0
  123. package/template/src/icons/svg/fullscreen.svg +1 -0
  124. package/template/src/icons/svg/guide.svg +1 -0
  125. package/template/src/icons/svg/icon.svg +1 -0
  126. package/template/src/icons/svg/international.svg +1 -0
  127. package/template/src/icons/svg/language.svg +1 -0
  128. package/template/src/icons/svg/link.svg +1 -0
  129. package/template/src/icons/svg/list.svg +1 -0
  130. package/template/src/icons/svg/lock.svg +1 -0
  131. package/template/src/icons/svg/message.svg +1 -0
  132. package/template/src/icons/svg/money.svg +1 -0
  133. package/template/src/icons/svg/nested.svg +1 -0
  134. package/template/src/icons/svg/password.svg +1 -0
  135. package/template/src/icons/svg/pdf.svg +1 -0
  136. package/template/src/icons/svg/people.svg +1 -0
  137. package/template/src/icons/svg/peoples.svg +1 -0
  138. package/template/src/icons/svg/qq.svg +1 -0
  139. package/template/src/icons/svg/search.svg +1 -0
  140. package/template/src/icons/svg/shopping.svg +1 -0
  141. package/template/src/icons/svg/size.svg +1 -0
  142. package/template/src/icons/svg/skill.svg +1 -0
  143. package/template/src/icons/svg/star.svg +1 -0
  144. package/template/src/icons/svg/tab.svg +1 -0
  145. package/template/src/icons/svg/table.svg +1 -0
  146. package/template/src/icons/svg/theme.svg +1 -0
  147. package/template/src/icons/svg/tree-table.svg +1 -0
  148. package/template/src/icons/svg/tree.svg +1 -0
  149. package/template/src/icons/svg/user.svg +1 -0
  150. package/template/src/icons/svg/wechat.svg +1 -0
  151. package/template/src/icons/svg/zip.svg +1 -0
  152. package/template/src/icons/svgo.yml +22 -0
  153. package/template/src/layout/components/AppMain.vue +57 -0
  154. package/template/src/layout/components/Navbar.vue +167 -0
  155. package/template/src/layout/components/Settings/index.vue +108 -0
  156. package/template/src/layout/components/Sidebar/FixiOSBug.js +26 -0
  157. package/template/src/layout/components/Sidebar/Item.vue +41 -0
  158. package/template/src/layout/components/Sidebar/Link.vue +43 -0
  159. package/template/src/layout/components/Sidebar/Logo.vue +82 -0
  160. package/template/src/layout/components/Sidebar/SidebarItem.vue +95 -0
  161. package/template/src/layout/components/Sidebar/index.vue +54 -0
  162. package/template/src/layout/components/TagsView/ScrollPane.vue +94 -0
  163. package/template/src/layout/components/TagsView/index.vue +292 -0
  164. package/template/src/layout/components/index.js +5 -0
  165. package/template/src/layout/index.vue +102 -0
  166. package/template/src/layout/mixin/ResizeHandler.js +45 -0
  167. package/template/src/main.js +53 -0
  168. package/template/src/permission.js +74 -0
  169. package/template/src/router/index.js +404 -0
  170. package/template/src/router/modules/charts.js +36 -0
  171. package/template/src/router/modules/components.js +102 -0
  172. package/template/src/router/modules/nested.js +66 -0
  173. package/template/src/router/modules/table.js +41 -0
  174. package/template/src/settings.js +35 -0
  175. package/template/src/store/getters.js +15 -0
  176. package/template/src/store/index.js +25 -0
  177. package/template/src/store/modules/app.js +56 -0
  178. package/template/src/store/modules/errorLog.js +28 -0
  179. package/template/src/store/modules/permission.js +69 -0
  180. package/template/src/store/modules/settings.js +35 -0
  181. package/template/src/store/modules/tagsView.js +160 -0
  182. package/template/src/store/modules/user.js +131 -0
  183. package/template/src/styles/btn.scss +99 -0
  184. package/template/src/styles/element-ui.scss +84 -0
  185. package/template/src/styles/element-variables.scss +31 -0
  186. package/template/src/styles/index.scss +191 -0
  187. package/template/src/styles/mixin.scss +66 -0
  188. package/template/src/styles/sidebar.scss +226 -0
  189. package/template/src/styles/transition.scss +48 -0
  190. package/template/src/styles/variables.scss +35 -0
  191. package/template/src/utils/auth.js +15 -0
  192. package/template/src/utils/clipboard.js +32 -0
  193. package/template/src/utils/error-log.js +35 -0
  194. package/template/src/utils/get-page-title.js +10 -0
  195. package/template/src/utils/index.js +357 -0
  196. package/template/src/utils/open-window.js +25 -0
  197. package/template/src/utils/permission.js +21 -0
  198. package/template/src/utils/request.js +85 -0
  199. package/template/src/utils/scroll-to.js +58 -0
  200. package/template/src/utils/validate.js +87 -0
  201. package/template/src/vendor/Export2Excel.js +220 -0
  202. package/template/src/vendor/Export2Zip.js +24 -0
  203. package/template/src/views/charts/keyboard.vue +23 -0
  204. package/template/src/views/charts/line.vue +23 -0
  205. package/template/src/views/charts/mix-chart.vue +23 -0
  206. package/template/src/views/clipboard/index.vue +49 -0
  207. package/template/src/views/components-demo/avatar-upload.vue +61 -0
  208. package/template/src/views/components-demo/back-to-top.vue +154 -0
  209. package/template/src/views/components-demo/count-to.vue +218 -0
  210. package/template/src/views/components-demo/dnd-list.vue +39 -0
  211. package/template/src/views/components-demo/drag-dialog.vue +61 -0
  212. package/template/src/views/components-demo/drag-kanban.vue +66 -0
  213. package/template/src/views/components-demo/drag-select.vue +43 -0
  214. package/template/src/views/components-demo/dropzone.vue +31 -0
  215. package/template/src/views/components-demo/json-editor.vue +36 -0
  216. package/template/src/views/components-demo/markdown.vue +101 -0
  217. package/template/src/views/components-demo/mixin.vue +169 -0
  218. package/template/src/views/components-demo/split-pane.vue +67 -0
  219. package/template/src/views/components-demo/sticky.vue +135 -0
  220. package/template/src/views/components-demo/tinymce.vue +36 -0
  221. package/template/src/views/dashboard/admin/components/BarChart.vue +102 -0
  222. package/template/src/views/dashboard/admin/components/BoxCard.vue +118 -0
  223. package/template/src/views/dashboard/admin/components/LineChart.vue +135 -0
  224. package/template/src/views/dashboard/admin/components/PanelGroup.vue +181 -0
  225. package/template/src/views/dashboard/admin/components/PieChart.vue +79 -0
  226. package/template/src/views/dashboard/admin/components/RaddarChart.vue +116 -0
  227. package/template/src/views/dashboard/admin/components/TodoList/Todo.vue +81 -0
  228. package/template/src/views/dashboard/admin/components/TodoList/index.scss +320 -0
  229. package/template/src/views/dashboard/admin/components/TodoList/index.vue +127 -0
  230. package/template/src/views/dashboard/admin/components/TransactionTable.vue +55 -0
  231. package/template/src/views/dashboard/admin/components/mixins/resize.js +55 -0
  232. package/template/src/views/dashboard/admin/index.vue +124 -0
  233. package/template/src/views/dashboard/editor/index.vue +74 -0
  234. package/template/src/views/dashboard/index.vue +31 -0
  235. package/template/src/views/documentation/index.vue +57 -0
  236. package/template/src/views/error-log/components/ErrorTestA.vue +13 -0
  237. package/template/src/views/error-log/components/ErrorTestB.vue +11 -0
  238. package/template/src/views/error-log/index.vue +32 -0
  239. package/template/src/views/error-page/401.vue +99 -0
  240. package/template/src/views/error-page/404.vue +228 -0
  241. package/template/src/views/example/components/ArticleDetail.vue +289 -0
  242. package/template/src/views/example/components/Dropdown/Comment.vue +41 -0
  243. package/template/src/views/example/components/Dropdown/Platform.vue +46 -0
  244. package/template/src/views/example/components/Dropdown/SourceUrl.vue +38 -0
  245. package/template/src/views/example/components/Dropdown/index.js +3 -0
  246. package/template/src/views/example/components/Warning.vue +13 -0
  247. package/template/src/views/example/create.vue +13 -0
  248. package/template/src/views/example/edit.vue +13 -0
  249. package/template/src/views/example/list.vue +112 -0
  250. package/template/src/views/excel/components/AutoWidthOption.vue +34 -0
  251. package/template/src/views/excel/components/BookTypeOption.vue +39 -0
  252. package/template/src/views/excel/components/FilenameOption.vue +27 -0
  253. package/template/src/views/excel/export-excel.vue +116 -0
  254. package/template/src/views/excel/merge-header.vue +101 -0
  255. package/template/src/views/excel/select-excel.vue +107 -0
  256. package/template/src/views/excel/upload-excel.vue +42 -0
  257. package/template/src/views/guide/index.vue +36 -0
  258. package/template/src/views/guide/steps.js +53 -0
  259. package/template/src/views/icons/element-icons.js +3 -0
  260. package/template/src/views/icons/index.vue +101 -0
  261. package/template/src/views/icons/svg-icons.js +10 -0
  262. package/template/src/views/login/auth-redirect.vue +15 -0
  263. package/template/src/views/login/components/SocialSignin.vue +72 -0
  264. package/template/src/views/login/index.vue +324 -0
  265. package/template/src/views/nested/menu1/index.vue +7 -0
  266. package/template/src/views/nested/menu1/menu1-1/index.vue +7 -0
  267. package/template/src/views/nested/menu1/menu1-2/index.vue +7 -0
  268. package/template/src/views/nested/menu1/menu1-2/menu1-2-1/index.vue +5 -0
  269. package/template/src/views/nested/menu1/menu1-2/menu1-2-2/index.vue +5 -0
  270. package/template/src/views/nested/menu1/menu1-3/index.vue +5 -0
  271. package/template/src/views/nested/menu2/index.vue +5 -0
  272. package/template/src/views/pdf/content.js +58 -0
  273. package/template/src/views/pdf/download.vue +201 -0
  274. package/template/src/views/pdf/index.vue +13 -0
  275. package/template/src/views/permission/components/SwitchRoles.vue +32 -0
  276. package/template/src/views/permission/directive.vue +111 -0
  277. package/template/src/views/permission/page.vue +19 -0
  278. package/template/src/views/permission/role.vue +270 -0
  279. package/template/src/views/profile/components/Account.vue +38 -0
  280. package/template/src/views/profile/components/Activity.vue +185 -0
  281. package/template/src/views/profile/components/Timeline.vue +43 -0
  282. package/template/src/views/profile/components/UserCard.vue +134 -0
  283. package/template/src/views/profile/index.vue +68 -0
  284. package/template/src/views/qiniu/upload.vue +41 -0
  285. package/template/src/views/redirect/index.vue +12 -0
  286. package/template/src/views/tab/components/TabPane.vue +103 -0
  287. package/template/src/views/tab/index.vue +57 -0
  288. package/template/src/views/table/complex-table.vue +379 -0
  289. package/template/src/views/table/drag-table.vue +153 -0
  290. package/template/src/views/table/dynamic-table/components/FixedThead.vue +62 -0
  291. package/template/src/views/table/dynamic-table/components/UnfixedThead.vue +50 -0
  292. package/template/src/views/table/dynamic-table/index.vue +24 -0
  293. package/template/src/views/table/inline-edit-table.vue +149 -0
  294. package/template/src/views/theme/index.vue +120 -0
  295. package/template/src/views/zip/index.vue +77 -0
  296. package/template/tests/unit/.eslintrc.js +5 -0
  297. package/template/tests/unit/components/Hamburger.spec.js +18 -0
  298. package/template/tests/unit/components/SvgIcon.spec.js +22 -0
  299. package/template/tests/unit/utils/formatTime.spec.js +29 -0
  300. package/template/tests/unit/utils/param2Obj.spec.js +14 -0
  301. package/template/tests/unit/utils/parseTime.spec.js +37 -0
  302. package/template/tests/unit/utils/validate.spec.js +28 -0
  303. package/template/vue.config.js +124 -0
@@ -0,0 +1,271 @@
1
+ <template>
2
+ <div :id="id" :class="className" :style="{height:height,width:width}" />
3
+ </template>
4
+
5
+ <script>
6
+ import echarts from 'echarts'
7
+ import resize from './mixins/resize'
8
+
9
+ export default {
10
+ mixins: [resize],
11
+ props: {
12
+ className: {
13
+ type: String,
14
+ default: 'chart'
15
+ },
16
+ id: {
17
+ type: String,
18
+ default: 'chart'
19
+ },
20
+ width: {
21
+ type: String,
22
+ default: '200px'
23
+ },
24
+ height: {
25
+ type: String,
26
+ default: '200px'
27
+ }
28
+ },
29
+ data() {
30
+ return {
31
+ chart: null
32
+ }
33
+ },
34
+ mounted() {
35
+ this.initChart()
36
+ },
37
+ beforeDestroy() {
38
+ if (!this.chart) {
39
+ return
40
+ }
41
+ this.chart.dispose()
42
+ this.chart = null
43
+ },
44
+ methods: {
45
+ initChart() {
46
+ this.chart = echarts.init(document.getElementById(this.id))
47
+ const xData = (function() {
48
+ const data = []
49
+ for (let i = 1; i < 13; i++) {
50
+ data.push(i + 'month')
51
+ }
52
+ return data
53
+ }())
54
+ this.chart.setOption({
55
+ backgroundColor: '#344b58',
56
+ title: {
57
+ text: 'statistics',
58
+ x: '20',
59
+ top: '20',
60
+ textStyle: {
61
+ color: '#fff',
62
+ fontSize: '22'
63
+ },
64
+ subtextStyle: {
65
+ color: '#90979c',
66
+ fontSize: '16'
67
+ }
68
+ },
69
+ tooltip: {
70
+ trigger: 'axis',
71
+ axisPointer: {
72
+ textStyle: {
73
+ color: '#fff'
74
+ }
75
+ }
76
+ },
77
+ grid: {
78
+ left: '5%',
79
+ right: '5%',
80
+ borderWidth: 0,
81
+ top: 150,
82
+ bottom: 95,
83
+ textStyle: {
84
+ color: '#fff'
85
+ }
86
+ },
87
+ legend: {
88
+ x: '5%',
89
+ top: '10%',
90
+ textStyle: {
91
+ color: '#90979c'
92
+ },
93
+ data: ['female', 'male', 'average']
94
+ },
95
+ calculable: true,
96
+ xAxis: [{
97
+ type: 'category',
98
+ axisLine: {
99
+ lineStyle: {
100
+ color: '#90979c'
101
+ }
102
+ },
103
+ splitLine: {
104
+ show: false
105
+ },
106
+ axisTick: {
107
+ show: false
108
+ },
109
+ splitArea: {
110
+ show: false
111
+ },
112
+ axisLabel: {
113
+ interval: 0
114
+
115
+ },
116
+ data: xData
117
+ }],
118
+ yAxis: [{
119
+ type: 'value',
120
+ splitLine: {
121
+ show: false
122
+ },
123
+ axisLine: {
124
+ lineStyle: {
125
+ color: '#90979c'
126
+ }
127
+ },
128
+ axisTick: {
129
+ show: false
130
+ },
131
+ axisLabel: {
132
+ interval: 0
133
+ },
134
+ splitArea: {
135
+ show: false
136
+ }
137
+ }],
138
+ dataZoom: [{
139
+ show: true,
140
+ height: 30,
141
+ xAxisIndex: [
142
+ 0
143
+ ],
144
+ bottom: 30,
145
+ start: 10,
146
+ end: 80,
147
+ handleIcon: 'path://M306.1,413c0,2.2-1.8,4-4,4h-59.8c-2.2,0-4-1.8-4-4V200.8c0-2.2,1.8-4,4-4h59.8c2.2,0,4,1.8,4,4V413z',
148
+ handleSize: '110%',
149
+ handleStyle: {
150
+ color: '#d3dee5'
151
+
152
+ },
153
+ textStyle: {
154
+ color: '#fff' },
155
+ borderColor: '#90979c'
156
+
157
+ }, {
158
+ type: 'inside',
159
+ show: true,
160
+ height: 15,
161
+ start: 1,
162
+ end: 35
163
+ }],
164
+ series: [{
165
+ name: 'female',
166
+ type: 'bar',
167
+ stack: 'total',
168
+ barMaxWidth: 35,
169
+ barGap: '10%',
170
+ itemStyle: {
171
+ normal: {
172
+ color: 'rgba(255,144,128,1)',
173
+ label: {
174
+ show: true,
175
+ textStyle: {
176
+ color: '#fff'
177
+ },
178
+ position: 'insideTop',
179
+ formatter(p) {
180
+ return p.value > 0 ? p.value : ''
181
+ }
182
+ }
183
+ }
184
+ },
185
+ data: [
186
+ 709,
187
+ 1917,
188
+ 2455,
189
+ 2610,
190
+ 1719,
191
+ 1433,
192
+ 1544,
193
+ 3285,
194
+ 5208,
195
+ 3372,
196
+ 2484,
197
+ 4078
198
+ ]
199
+ },
200
+
201
+ {
202
+ name: 'male',
203
+ type: 'bar',
204
+ stack: 'total',
205
+ itemStyle: {
206
+ normal: {
207
+ color: 'rgba(0,191,183,1)',
208
+ barBorderRadius: 0,
209
+ label: {
210
+ show: true,
211
+ position: 'top',
212
+ formatter(p) {
213
+ return p.value > 0 ? p.value : ''
214
+ }
215
+ }
216
+ }
217
+ },
218
+ data: [
219
+ 327,
220
+ 1776,
221
+ 507,
222
+ 1200,
223
+ 800,
224
+ 482,
225
+ 204,
226
+ 1390,
227
+ 1001,
228
+ 951,
229
+ 381,
230
+ 220
231
+ ]
232
+ }, {
233
+ name: 'average',
234
+ type: 'line',
235
+ stack: 'total',
236
+ symbolSize: 10,
237
+ symbol: 'circle',
238
+ itemStyle: {
239
+ normal: {
240
+ color: 'rgba(252,230,48,1)',
241
+ barBorderRadius: 0,
242
+ label: {
243
+ show: true,
244
+ position: 'top',
245
+ formatter(p) {
246
+ return p.value > 0 ? p.value : ''
247
+ }
248
+ }
249
+ }
250
+ },
251
+ data: [
252
+ 1036,
253
+ 3693,
254
+ 2962,
255
+ 3810,
256
+ 2519,
257
+ 1915,
258
+ 1748,
259
+ 4675,
260
+ 6209,
261
+ 4323,
262
+ 2865,
263
+ 4298
264
+ ]
265
+ }
266
+ ]
267
+ })
268
+ }
269
+ }
270
+ }
271
+ </script>
@@ -0,0 +1,56 @@
1
+ import { debounce } from '@/utils'
2
+
3
+ export default {
4
+ data() {
5
+ return {
6
+ $_sidebarElm: null,
7
+ $_resizeHandler: null
8
+ }
9
+ },
10
+ mounted() {
11
+ this.initListener()
12
+ },
13
+ activated() {
14
+ if (!this.$_resizeHandler) {
15
+ // avoid duplication init
16
+ this.initListener()
17
+ }
18
+
19
+ // when keep-alive chart activated, auto resize
20
+ this.resize()
21
+ },
22
+ beforeDestroy() {
23
+ this.destroyListener()
24
+ },
25
+ deactivated() {
26
+ this.destroyListener()
27
+ },
28
+ methods: {
29
+ // use $_ for mixins properties
30
+ // https://vuejs.org/v2/style-guide/index.html#Private-property-names-essential
31
+ $_sidebarResizeHandler(e) {
32
+ if (e.propertyName === 'width') {
33
+ this.$_resizeHandler()
34
+ }
35
+ },
36
+ initListener() {
37
+ this.$_resizeHandler = debounce(() => {
38
+ this.resize()
39
+ }, 100)
40
+ window.addEventListener('resize', this.$_resizeHandler)
41
+
42
+ this.$_sidebarElm = document.getElementsByClassName('sidebar-container')[0]
43
+ this.$_sidebarElm && this.$_sidebarElm.addEventListener('transitionend', this.$_sidebarResizeHandler)
44
+ },
45
+ destroyListener() {
46
+ window.removeEventListener('resize', this.$_resizeHandler)
47
+ this.$_resizeHandler = null
48
+
49
+ this.$_sidebarElm && this.$_sidebarElm.removeEventListener('transitionend', this.$_sidebarResizeHandler)
50
+ },
51
+ resize() {
52
+ const { chart } = this
53
+ chart && chart.resize()
54
+ }
55
+ }
56
+ }
@@ -0,0 +1,166 @@
1
+ <template>
2
+ <div class="dndList">
3
+ <div :style="{width:width1}" class="dndList-list">
4
+ <h3>{{ list1Title }}</h3>
5
+ <draggable :set-data="setData" :list="list1" group="article" class="dragArea">
6
+ <div v-for="element in list1" :key="element.id" class="list-complete-item">
7
+ <div class="list-complete-item-handle">
8
+ {{ element.id }}[{{ element.author }}] {{ element.title }}
9
+ </div>
10
+ <div style="position:absolute;right:0px;">
11
+ <span style="float: right ;margin-top: -20px;margin-right:5px;" @click="deleteEle(element)">
12
+ <i style="color:#ff4949" class="el-icon-delete" />
13
+ </span>
14
+ </div>
15
+ </div>
16
+ </draggable>
17
+ </div>
18
+ <div :style="{width:width2}" class="dndList-list">
19
+ <h3>{{ list2Title }}</h3>
20
+ <draggable :list="list2" group="article" class="dragArea">
21
+ <div v-for="element in list2" :key="element.id" class="list-complete-item">
22
+ <div class="list-complete-item-handle2" @click="pushEle(element)">
23
+ {{ element.id }} [{{ element.author }}] {{ element.title }}
24
+ </div>
25
+ </div>
26
+ </draggable>
27
+ </div>
28
+ </div>
29
+ </template>
30
+
31
+ <script>
32
+ import draggable from 'vuedraggable'
33
+
34
+ export default {
35
+ name: 'DndList',
36
+ components: { draggable },
37
+ props: {
38
+ list1: {
39
+ type: Array,
40
+ default() {
41
+ return []
42
+ }
43
+ },
44
+ list2: {
45
+ type: Array,
46
+ default() {
47
+ return []
48
+ }
49
+ },
50
+ list1Title: {
51
+ type: String,
52
+ default: 'list1'
53
+ },
54
+ list2Title: {
55
+ type: String,
56
+ default: 'list2'
57
+ },
58
+ width1: {
59
+ type: String,
60
+ default: '48%'
61
+ },
62
+ width2: {
63
+ type: String,
64
+ default: '48%'
65
+ }
66
+ },
67
+ methods: {
68
+ isNotInList1(v) {
69
+ return this.list1.every(k => v.id !== k.id)
70
+ },
71
+ isNotInList2(v) {
72
+ return this.list2.every(k => v.id !== k.id)
73
+ },
74
+ deleteEle(ele) {
75
+ for (const item of this.list1) {
76
+ if (item.id === ele.id) {
77
+ const index = this.list1.indexOf(item)
78
+ this.list1.splice(index, 1)
79
+ break
80
+ }
81
+ }
82
+ if (this.isNotInList2(ele)) {
83
+ this.list2.unshift(ele)
84
+ }
85
+ },
86
+ pushEle(ele) {
87
+ for (const item of this.list2) {
88
+ if (item.id === ele.id) {
89
+ const index = this.list2.indexOf(item)
90
+ this.list2.splice(index, 1)
91
+ break
92
+ }
93
+ }
94
+ if (this.isNotInList1(ele)) {
95
+ this.list1.push(ele)
96
+ }
97
+ },
98
+ setData(dataTransfer) {
99
+ // to avoid Firefox bug
100
+ // Detail see : https://github.com/RubaXa/Sortable/issues/1012
101
+ dataTransfer.setData('Text', '')
102
+ }
103
+ }
104
+ }
105
+ </script>
106
+
107
+ <style lang="scss" scoped>
108
+ .dndList {
109
+ background: #fff;
110
+ padding-bottom: 40px;
111
+ &:after {
112
+ content: "";
113
+ display: table;
114
+ clear: both;
115
+ }
116
+ .dndList-list {
117
+ float: left;
118
+ padding-bottom: 30px;
119
+ &:first-of-type {
120
+ margin-right: 2%;
121
+ }
122
+ .dragArea {
123
+ margin-top: 15px;
124
+ min-height: 50px;
125
+ padding-bottom: 30px;
126
+ }
127
+ }
128
+ }
129
+
130
+ .list-complete-item {
131
+ cursor: pointer;
132
+ position: relative;
133
+ font-size: 14px;
134
+ padding: 5px 12px;
135
+ margin-top: 4px;
136
+ border: 1px solid #bfcbd9;
137
+ transition: all 1s;
138
+ }
139
+
140
+ .list-complete-item-handle {
141
+ overflow: hidden;
142
+ text-overflow: ellipsis;
143
+ white-space: nowrap;
144
+ margin-right: 50px;
145
+ }
146
+
147
+ .list-complete-item-handle2 {
148
+ overflow: hidden;
149
+ text-overflow: ellipsis;
150
+ white-space: nowrap;
151
+ margin-right: 20px;
152
+ }
153
+
154
+ .list-complete-item.sortable-chosen {
155
+ background: #4AB7BD;
156
+ }
157
+
158
+ .list-complete-item.sortable-ghost {
159
+ background: #30B08F;
160
+ }
161
+
162
+ .list-complete-enter,
163
+ .list-complete-leave-active {
164
+ opacity: 0;
165
+ }
166
+ </style>
@@ -0,0 +1,65 @@
1
+ <template>
2
+ <el-select ref="dragSelect" v-model="selectVal" v-bind="$attrs" class="drag-select" multiple v-on="$listeners">
3
+ <slot />
4
+ </el-select>
5
+ </template>
6
+
7
+ <script>
8
+ import Sortable from 'sortablejs'
9
+
10
+ export default {
11
+ name: 'DragSelect',
12
+ props: {
13
+ value: {
14
+ type: Array,
15
+ required: true
16
+ }
17
+ },
18
+ computed: {
19
+ selectVal: {
20
+ get() {
21
+ return [...this.value]
22
+ },
23
+ set(val) {
24
+ this.$emit('input', [...val])
25
+ }
26
+ }
27
+ },
28
+ mounted() {
29
+ this.setSort()
30
+ },
31
+ methods: {
32
+ setSort() {
33
+ const el = this.$refs.dragSelect.$el.querySelectorAll('.el-select__tags > span')[0]
34
+ this.sortable = Sortable.create(el, {
35
+ ghostClass: 'sortable-ghost', // Class name for the drop placeholder,
36
+ setData: function(dataTransfer) {
37
+ dataTransfer.setData('Text', '')
38
+ // to avoid Firefox bug
39
+ // Detail see : https://github.com/RubaXa/Sortable/issues/1012
40
+ },
41
+ onEnd: evt => {
42
+ const targetRow = this.value.splice(evt.oldIndex, 1)[0]
43
+ this.value.splice(evt.newIndex, 0, targetRow)
44
+ }
45
+ })
46
+ }
47
+ }
48
+ }
49
+ </script>
50
+
51
+ <style lang="scss" scoped>
52
+ .drag-select {
53
+ ::v-deep {
54
+ .sortable-ghost {
55
+ opacity: .8;
56
+ color: #fff !important;
57
+ background: #42b983 !important;
58
+ }
59
+
60
+ .el-tag {
61
+ cursor: pointer;
62
+ }
63
+ }
64
+ }
65
+ </style>