Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e0b844f

Browse files
authored
Merge pull request lin-xin#167 from lin-xin/dev
更新文档
2 parents 481c039 + f5c8515 commit e0b844f

File tree

3 files changed

+22
-39
lines changed

3 files changed

+22
-39
lines changed

README.md

Lines changed: 20 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
# vue-manage-system #
2-
基于Vue.js 2.x系列 + Element UI 的后台管理系统解决方案。[线上地址](http://blog.gdfengshuo.com/example/work/)
2+
基于Vue.js + Element UI 的后台管理系统解决方案。[线上地址](http://blog.gdfengshuo.com/example/work/)
3+
(本项目基于vue-cli3构建,如果是vue-cli2的请下载[旧版本V3.2.0](https://github.com/lin-xin/vue-manage-system/releases/tag/V3.2.0))
34

45
[English document](https://github.com/lin-xin/manage-system/blob/master/README_EN.md)
56

6-
[更新日志](https://github.com/lin-xin/vue-manage-system/releases)
7+
## 项目截图 ##
8+
### 登录
9+
![Image text](https://github.com/lin-xin/manage-system/raw/master/screenshots/wms3.png)
10+
11+
### 默认皮肤 ###
12+
![Image text](https://github.com/lin-xin/manage-system/raw/master/screenshots/wms1.png)
13+
14+
### 浅绿色皮肤 ###
15+
![Image text](https://github.com/lin-xin/manage-system/raw/master/screenshots/wms2.png)
716

817
## 赞赏
918
请作者喝杯咖啡吧!(微信号:linxin_20)
@@ -36,21 +45,17 @@
3645
- [x] 可拖拽弹窗
3746

3847
## 安装步骤 ##
48+
```
49+
git clone https://github.com/lin-xin/vue-manage-system.git // 把模板下载到本地
50+
cd vue-manage-system // 进入模板目录
51+
npm install // 安装项目依赖,等待安装完成之后,安装失败可用 cnpm 或 yarn
3952
40-
git clone https://github.com/lin-xin/vue-manage-system.git // 把模板下载到本地
41-
cd vue-manage-system // 进入模板目录
42-
npm install // 安装项目依赖,等待安装完成之后,安装失败可用 cnpm 或 yarn
43-
44-
## 本地开发 ##
45-
46-
// 开启服务器,浏览器访问 http://localhost:8080
47-
npm run serve
48-
49-
## 构建生产 ##
50-
51-
// 执行构建命令,生成的dist文件夹放在服务器下即可访问
52-
npm run build
53+
// 开启服务器,浏览器访问 http://localhost:8080
54+
npm run serve
5355
56+
// 执行构建命令,生成的dist文件夹放在服务器下即可访问
57+
npm run build
58+
```
5459
## 组件使用说明与演示 ##
5560

5661
### vue-schart ###
@@ -100,20 +105,6 @@ vue.js封装sChart.js的图表组件。访问地址:[vue-schart](https://githu
100105
</style>
101106
```
102107

103-
### element-ui ###
104-
一套基于vue.js2.0的桌面组件库。访问地址:[element](http://element.eleme.io/#/zh-CN/component/layout)
105-
106-
### Vue-Quill-Editor ###
107-
基于Quill、适用于Vue2的富文本编辑器。访问地址:[vue-quill-editor](https://github.com/surmon-china/vue-quill-editor)
108-
109-
(IE10及以下不支持)
110-
111-
### mavonEditor ###
112-
基于Vue的markdown编辑器。访问地址:[mavonEditor](https://github.com/hinesboy/mavonEditor)
113-
114-
### vue-cropperjs ###
115-
一个封装了 cropperjs 的 Vue 组件,用于裁剪图片。访问地址:[vue-cropperjs](https://github.com/Agontuk/vue-cropperjs)
116-
117108
## 其他注意事项 ##
118109
### 一、如果我不想用到上面的某些组件呢,那我怎么在模板中删除掉不影响到其他功能呢? ###
119110

@@ -164,12 +155,3 @@ import 'element-ui/lib/theme-default/index.css'; // 默认主题
164155
```
165156

166157
第三步:打开 src/components/common/Sidebar.vue 文件,找到 el-menu 标签,把 background-color/text-color/active-text-color 属性去掉即可。
167-
168-
## 项目截图 ##
169-
### 默认皮肤 ###
170-
171-
![Image text](https://github.com/lin-xin/manage-system/raw/master/screenshots/wms1.png)
172-
173-
### 浅绿色皮肤 ###
174-
175-
![Image text](https://github.com/lin-xin/manage-system/raw/master/screenshots/wms2.png)

public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no">
7-
<link rel="stylesheet" href="http://at.alicdn.com/t/font_830376_qzecyukz0s.css">
7+
<link rel="stylesheet" href="//at.alicdn.com/t/font_830376_qzecyukz0s.css">
88
<title>vue-manage-system</title>
99
</head>
1010
<body>

src/components/common/Tags.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@
102102
this.$router.push('/');
103103
}
104104
this.tagsList.splice(i, 1);
105+
break;
105106
}
106107
}
107108
})

0 commit comments

Comments
 (0)