README.md 10.5 KB
Newer Older
L
lin-xin 已提交
1
# manage-system #
L
lin-xin 已提交
2
基于Vue.js 2.x系列 + Element UI 的后台管理系统解决方案。[线上地址](http://work.omwteam.com/)
L
lin-xin 已提交
3

L
lin-xin 已提交
4
[English document](https://github.com/lin-xin/manage-system/blob/master/README_EN.md)
L
lin-xin 已提交
5

L
lin-xin 已提交
6
## 前言 ##
L
lin-xin 已提交
7
之前在公司用了Vue + Element组件库做了个后台管理系统,基本很多组件可以直接引用组件库的,但是也有一些需求无法满足。像图片裁剪上传、富文本编辑器、图表等这些在后台管理系统中很常见的功能,就需要引用其他的组件才能完成。从寻找组件,到使用组件的过程中,遇到了很多问题,也积累了宝贵的经验。所以我就把开发这个后台管理系统的经验,总结成这个后台管理系统解决方案。
L
lin-xin 已提交
8

L
lin-xin 已提交
9
该方案作为一套多功能的后台框架模板,适用于绝大部分的后台管理系统(Web Management System)开发。基于vue.js,使用vue-cli脚手架快速生成项目目录,引用Element UI组件库,方便开发快速简洁好看的组件。分离颜色样式,支持手动切换主题色,而且很方便使用自定义主题色。
L
lin-xin 已提交
10

L
lin-xin 已提交
11 12 13 14 15
## 功能 ##
- [x] Element UI
- [x] 登录/注销
- [x] 表格
- [x] 表单
L
lin-xin 已提交
16
- [x] 图表 :bar_chart:
L
lin-xin 已提交
17 18 19
- [x] 富文本编辑器
- [x] markdown编辑器
- [x] 图片拖拽/裁剪上传
L
lin-xin 已提交
20
- [x] 支持切换主题色 :sparkles:
L
lin-xin 已提交
21
- [x] 列表拖拽排序
L
lin-xin 已提交
22 23


L
lin-xin 已提交
24
## 目录结构介绍 ##
L
lin-xin 已提交
25

L
lin-xin 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
	|-- build                            // webpack配置文件
	|-- config                           // 项目打包路径
	|-- src                              // 源码目录
	|   |-- components                   // 组件
	|       |-- common                   // 公共组件
	|           |-- Header.vue           // 公共头部
	|           |-- Home.vue           	 // 公共路由入口
	|           |-- Sidebar.vue          // 公共左边栏
	|		|-- page                   	 // 主要路由页面
	|           |-- BaseCharts.vue       // 基础图表
	|           |-- BaseForm.vue         // 基础表单
	|           |-- BaseTable.vue        // 基础表格
	|           |-- Login.vue          	 // 登录
	|           |-- Markdown.vue         // markdown组件
	|           |-- Readme.vue           // 自述组件
	|           |-- Upload.vue           // 图片上传
	|           |-- VueEditor.vue        // 富文本编辑器
	|           |-- VueTable.vue         // vue表格组件
	|   |-- App.vue                      // 页面入口文件
	|   |-- main.js                      // 程序入口文件,加载各种公共组件
	|-- .babelrc                         // ES6语法编译配置
	|-- .editorconfig                    // 代码编写规格
	|-- .gitignore                       // 忽略的文件
	|-- index.html                       // 入口html文件
	|-- package.json                     // 项目及工具的依赖配置文件
	|-- README.md                        // 说明


L
lin-xin 已提交
54
## 安装步骤 ##
L
lin-xin 已提交
55

L
lin-xin 已提交
56 57 58
	git clone https://github.com/lin-xin/manage-system.git      // 把模板下载到本地
	cd manage-system    // 进入模板目录
	npm install         // 安装项目依赖,等待安装完成之后
L
lin-xin 已提交
59 60 61 62 63 64 65 66 67 68

## 本地开发 ##

	// 开启服务器,浏览器访问 http://localhost:8080
	npm run dev

## 构建生产 ##

	// 执行构建命令,生成的dist文件夹放在服务器下即可访问
	npm run build
L
lin-xin 已提交
69

L
lin-xin 已提交
70
## 组件使用说明与演示 ##
L
lin-xin 已提交
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90

### element-ui ###
一套基于vue.js2.0的桌面组件库。访问地址:[element](http://element.eleme.io/#/zh-CN/component/layout)

### vue-datasource ###
一个用于动态创建表格的vue.js服务端组件。访问地址:[vue-datasource](https://github.com/coderdiaz/vue-datasource)

```JavaScript
<template>
	<div>
		<datasource language="en" :table-data="information.data"
	        :columns="columns"
	        :pagination="information.pagination"
	        :actions="actions"
	        v-on:change="changePage"
	        v-on:searching="onSearch"></datasource>
	</div>
</template>

<script>
L
lin-xin 已提交
91
	import Datasource from 'vue-datasource';    // 导入quillEditor组件
L
lin-xin 已提交
92 93 94 95
    export default {
        data: function(){
            return {
                information: {
L
lin-xin 已提交
96
	                pagination: {...},  // 页码配置
L
lin-xin 已提交
97 98
	                data: [...]
	            },
L
lin-xin 已提交
99 100
	            columns: [...],     // 列名配置
	            actions: [...]      // 功能配置
L
lin-xin 已提交
101 102 103
            }
        },
        components: {
L
lin-xin 已提交
104
            Datasource
L
lin-xin 已提交
105 106 107 108 109 110 111 112 113 114
        },
	    methods: {
	        changePage(values) {...},
	        onSearch(searchQuery) {...}
	    }
	}
</script>
```


L
lin-xin 已提交
115 116 117
### Vue-Quill-Editor ###
基于Quill、适用于Vue2的富文本编辑器。访问地址:[vue-quill-editor](https://github.com/surmon-china/vue-quill-editor)

L
lin-xin 已提交
118 119 120 121 122 123 124 125
```JavaScript
<template>
	<div>
		<quill-editor ref="myTextEditor" v-model="content" :config="editorOption"></quill-editor>
	</div>
</template>

<script>
L
lin-xin 已提交
126
	import { quillEditor } from 'vue-quill-editor';     // 导入quillEditor组件
L
lin-xin 已提交
127 128 129
    export default {
        data: function(){
            return {
L
lin-xin 已提交
130 131
                content: '',        // 编辑器的内容
                editorOption: {     // 编辑器的配置
L
lin-xin 已提交
132 133 134 135 136
                    // something config
                }
            }
        },
        components: {
L
lin-xin 已提交
137
            quillEditor
L
lin-xin 已提交
138 139 140 141
        }
	}
</script>
```
L
lin-xin 已提交
142 143 144 145

### Vue-SimpleMDE ###
Vue.js的Markdown Editor组件。访问地址:[Vue-SimpleMDE](https://github.com/F-loat/vue-simplemde)

L
lin-xin 已提交
146 147 148 149 150 151 152 153
```JavaScript
<template>
    <div>
        <markdown-editor v-model="content" :configs="configs" ref="markdownEditor"></markdown-editor>
    </div>
</template>

<script>
L
lin-xin 已提交
154
    import { markdownEditor } from 'vue-simplemde';     // 导入markdownEditor组件
L
lin-xin 已提交
155 156 157
    export default {
        data: function(){
            return {
L
lin-xin 已提交
158 159 160 161
                content:'',             // markdown编辑器内容
                configs: {              // markdown编辑器配置参数
                    status: false,      // 禁用底部状态栏
                    initialValue: 'Hello BBK',      // 设置初始值
L
lin-xin 已提交
162
                    renderingConfig: {
L
lin-xin 已提交
163 164
                        codeSyntaxHighlighting: true,       // 开启代码高亮
                        highlightingTheme: 'atom-one-light'     // 自定义代码高亮主题
L
lin-xin 已提交
165 166 167 168 169 170 171 172 173 174
                    }
                }
            }
        },
        components: {
            markdownEditor									// 声明组件markdownEditor
        }
    }
</script>
```
L
lin-xin 已提交
175 176 177 178 179 180

### Vue-Core-Image-Upload ###
一款轻量级的vue上传插件,支持裁剪。访问地址:[Vue-Core-Image-Upload](https://github.com/Vanthink-UED/vue-core-image-upload)

```JavaScript

L
lin-xin 已提交
181 182
<template>
    <div>
L
lin-xin 已提交
183
		<img :src="src">                // 用于显示上传的图片
L
lin-xin 已提交
184
        <vue-core-image-upload :class="['pure-button','pure-button-primary','js-btn-crop']"
L
lin-xin 已提交
185
           :crop="true"	                // 是否裁剪
L
lin-xin 已提交
186
           text="上传图片"
L
lin-xin 已提交
187 188 189
           url=""                       // 上传路径
           extensions="png,gif,jpeg,jpg"        // 限制文件类型
           @:imageuploaded="imageuploaded">     // 监听图片上传完成事件
L
lin-xin 已提交
190 191 192 193 194
		</vue-core-image-upload>
    </div>
</template>

<script>
L
lin-xin 已提交
195
    import VueCoreImageUpload  from 'vue-core-image-upload';    // 导入VueCoreImageUpload组件
L
lin-xin 已提交
196 197 198
    export default {
        data: function(){
            return {
L
lin-xin 已提交
199
                src:'../img/1.jpg'      // 默认显示图片地址
L
lin-xin 已提交
200 201 202
            }
        },
        components: {
L
lin-xin 已提交
203
            VueCoreImageUpload          // 声明组件VueCoreImageUpload
L
lin-xin 已提交
204 205
        },
        methods:{
L
lin-xin 已提交
206
            imageuploaded(res) {        // 定义上传完成执行的方法
L
lin-xin 已提交
207 208 209 210 211
                console.log(res)
            }
        }
    }
</script>
L
lin-xin 已提交
212 213 214

```

L
lin-xin 已提交
215 216
### vue-schart ###
vue.js封装sChart.js的图表组件。访问地址:[vue-schart](https://github.com/linxin/vue-schart)
L
lin-xin 已提交
217

L
lin-xin 已提交
218 219 220
```JavaScript
<template>
    <div>
L
lin-xin 已提交
221 222 223 224 225 226 227
        <schart :canvasId="canvasId"
				:type="type"
				:width="width"
				:height="height"
				:data="data"
				:options="options"
		></schart>
L
lin-xin 已提交
228 229 230 231
    </div>
</template>
	
<script>
L
lin-xin 已提交
232
    import Schart from 'vue-schart';        // 导入Schart组件
L
lin-xin 已提交
233 234 235
    export default {
        data: function(){
            return {
L
lin-xin 已提交
236 237 238 239 240 241 242 243 244 245 246 247 248
                canvasId: 'myCanvas',       // canvas的id
                type: 'bar',                // 图表类型
                width: 500,
                height: 400,
                data: [
                    {name: '2014', value: 1342},
                    {name: '2015', value: 2123},
                    {name: '2016', value: 1654},
                    {name: '2017', value: 1795},
                ],
                options: {                  // 图表可选参数
                    title: 'Total sales of stores in recent years'
                }
L
lin-xin 已提交
249 250 251
            }
        },
        components: {
L
lin-xin 已提交
252
            Schart
L
lin-xin 已提交
253 254 255 256
        }
    }
</script>
```
L
lin-xin 已提交
257

L
lin-xin 已提交
258
## 其他注意事项 ##
L
lin-xin 已提交
259
### 一、如果我不想用到上面的某些组件呢,那我怎么在模板中删除掉不影响到其他功能呢? ###
L
lin-xin 已提交
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283

举个栗子,我不想用 vue-datasource 这个组件,那我需要分四步走。

第一步:删除该组件的路由,在目录 src/router/index.js 中,找到引入改组件的路由,删除下面这段代码。

```JavaScript
{
    path: '/vuetable',
    component: resolve => require(['../components/page/VueTable.vue'], resolve)     // vue-datasource组件
},
```

第二步:删除引入该组件的文件。在目录 src/components/page/ 删除 VueTable.vue 文件。

第三步:删除该页面的入口。在目录 src/components/common/Sidebar.vue 中,找到该入口,删除下面这段代码。
	
```HTML
<el-menu-item index="vuetable">Vue表格组件</el-menu-item>
```

第四步:卸载该组件。执行以下命令:
	
	npm un vue-datasource -S

L
lin-xin 已提交
284 285
完成。

L
lin-xin 已提交
286
### 二、如何切换主题色呢? ###
L
lin-xin 已提交
287

L
lin-xin 已提交
288
第一步:打开 src/main.js 文件,找到引入 element 样式的地方,换成浅绿色主题。
L
lin-xin 已提交
289 290 291 292 293 294

```javascript
import 'element-ui/lib/theme-default/index.css';    // 默认主题
// import '../static/css/theme-green/index.css';       // 浅绿色主题
```

L
lin-xin 已提交
295
第二步:打开 src/App.vue 文件,找到 style 标签引入样式的地方,切换成浅绿色主题。
L
lin-xin 已提交
296 297 298 299 300 301

```javascript
@import "../static/css/main.css";
@import "../static/css/color-dark.css";     /*深色主题*/
/*@import "../static/css/theme-green/color-green.css";   !*浅绿色主题*!*/
```
L
lin-xin 已提交
302

L
lin-xin 已提交
303 304 305 306 307
第三步:打开 src/components/common/Sidebar.vue 文件,找到 el-menu 标签,把 theme="dark" 去掉即可。

## 项目截图 ##
### 默认皮肤 ###

L
lin-xin 已提交
308
![Image text](https://github.com/lin-xin/manage-system/raw/master/screenshots/wms1.png)
L
lin-xin 已提交
309 310 311

### 浅绿色皮肤 ###

L
lin-xin 已提交
312
![Image text](https://github.com/lin-xin/manage-system/raw/master/screenshots/wms2.png)