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

Skip to content

Commit 23235f3

Browse files
committed
Merge branch 'dev'
2 parents c6e9ee7 + 8b9aca0 commit 23235f3

29 files changed

+1506
-1321
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
node_modules/
33
dist/
44
npm-debug.log
5+
example.html

README.md

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
# manage-system #
1+
# vue-manage-system #
22
基于Vue.js 2.x系列 + Element UI 的后台管理系统解决方案。[线上地址](http://blog.gdfengshuo.com/example/work/)
33

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

66
[更新日志](https://github.com/lin-xin/vue-manage-system/releases)
77

8-
## 捐赠
8+
## 赞赏
9+
请作者喝杯咖啡吧!
10+
911
![微信扫一扫](http://blog.gdfengshuo.com/images/weixin.jpg)
1012

1113
## 前言 ##
@@ -28,6 +30,8 @@
2830
- [x] 列表拖拽排序
2931
- [x] 权限测试
3032
- [x] 404 / 403
33+
- [x] 三级菜单
34+
- [x] 自定义图标
3135

3236

3337
## 目录结构介绍 ##
@@ -50,6 +54,7 @@
5054
| |-- BaseTable.vue // 基础表格
5155
| |-- DashBoard.vue // 系统首页
5256
| |-- DragList.vue // 拖拽列表组件
57+
| |-- Icon.vue // 自定义图标组件
5358
| |-- Login.vue // 登录
5459
| |-- Markdown.vue // markdown组件
5560
| |-- Premission.vue // 权限测试组件
@@ -87,13 +92,12 @@
8792
vue.js封装sChart.js的图表组件。访问地址:[vue-schart](https://github.com/linxin/vue-schart)
8893
<p><a href="https://www.npmjs.com/package/vue-schart"><img src="https://img.shields.io/npm/dm/vue-schart.svg" alt="Downloads"></a></p>
8994

90-
```JavaScript
95+
```html
9196
<template>
9297
<div>
93-
<schart :canvasId="canvasId"
98+
<schart class="wrapper"
99+
:canvasId="canvasId"
94100
:type="type"
95-
:width="width"
96-
:height="height"
97101
:data="data"
98102
:options="options"
99103
></schart>
@@ -107,8 +111,6 @@ vue.js封装sChart.js的图表组件。访问地址:[vue-schart](https://githu
107111
return {
108112
canvasId: 'myCanvas', // canvas的id
109113
type: 'bar', // 图表类型
110-
width: 500,
111-
height: 400,
112114
data: [
113115
{name: '2014', value: 1342},
114116
{name: '2015', value: 2123},
@@ -125,6 +127,12 @@ vue.js封装sChart.js的图表组件。访问地址:[vue-schart](https://githu
125127
}
126128
}
127129
</script>
130+
<style>
131+
.wrapper{
132+
width: 7rem;
133+
height: 5rem;
134+
}
135+
</style>
128136
```
129137

130138
### element-ui ###

README_EN.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# manage-system #
1+
# vue-manage-system #
22
The web management system solution based on Vue2 and Element-UI。[live demo](http://blog.gdfengshuo.com/example/work/)
33

44
## Donation
@@ -22,6 +22,8 @@ The scheme as a set of multi-function background frame templates, suitable for m
2222
- [x] List drag sort
2323
- [x] Permission
2424
- [x] 404 / 403
25+
- [x] Three level menu
26+
- [x] Custom icon
2527

2628

2729
## Directory structure ##

build/utils.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ exports.cssLoaders = function (options) {
4747
if (options.extract) {
4848
return ExtractTextPlugin.extract({
4949
use: loaders,
50-
fallback: 'vue-style-loader'
50+
fallback: 'vue-style-loader',
51+
publicPath: '../../'
5152
})
5253
} else {
5354
return ['vue-style-loader'].concat(loaders)

build/webpack.dll.conf.js

Lines changed: 0 additions & 29 deletions
This file was deleted.

index.html

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,11 @@
22
<html>
33
<head>
44
<meta charset="utf-8">
5-
<title>vue-manage-system | 基于Vue的后台管理系统</title>
5+
<title>vue-manage-system</title>
66
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no">
7-
<meta name="keywords" content="vue, vue-manage-system, manage-system, 后台管理系统, element" />
8-
<meta name="description" content="基于Vue2 + Element UI 的后台管理系统解决方案" />
7+
<link rel="stylesheet" href="http://at.alicdn.com/t/font_830376_qzecyukz0s.css">
98
</head>
109
<body>
1110
<div id="app"></div>
12-
<!--<script src="./static/js/vendor.dll.js"></script>-->
13-
<!-- <script>
14-
var _hmt = _hmt || [];
15-
(function() {
16-
var hm = document.createElement("script");
17-
hm.src = "https://hm.baidu.com/hm.js?b455f7e1c6ca6e239edaccf0e6aa11fb";
18-
var s = document.getElementsByTagName("script")[0];
19-
s.parentNode.insertBefore(hm, s);
20-
})();
21-
</script> -->
22-
2311
</body>
2412
</html>

0 commit comments

Comments
 (0)