Skip to content

Commit b9a4402

Browse files
committedApr 13, 2024
大版本更新
1 parent daaf393 commit b9a4402

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+7046
-5144
lines changed
 

‎.gitignore

+23-23
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
.DS_Store
2-
node_modules
3-
/dist
4-
5-
6-
# local env files
7-
.env.local
8-
.env.*.local
9-
10-
# Log files
11-
npm-debug.log*
12-
yarn-debug.log*
13-
yarn-error.log*
14-
pnpm-debug.log*
15-
16-
# Editor directories and files
17-
.idea
18-
.vscode
19-
*.suo
20-
*.ntvs*
21-
*.njsproj
22-
*.sln
23-
*.sw?
1+
.DS_Store
2+
node_modules
3+
/dist
4+
5+
6+
# local env files
7+
.env.local
8+
.env.*.local
9+
10+
# Log files
11+
npm-debug.log*
12+
yarn-debug.log*
13+
yarn-error.log*
14+
pnpm-debug.log*
15+
16+
# Editor directories and files
17+
.idea
18+
.vscode
19+
*.suo
20+
*.ntvs*
21+
*.njsproj
22+
*.sln
23+
*.sw?

‎README.md

+13-71
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,10 @@
11
# vue-manage-system
22

3-
<a href="https://github.com/vuejs/vue">
4-
<img src="https://img.shields.io/badge/vue-3.1.2-brightgreen.svg" alt="vue">
5-
</a>
6-
<a href="https://github.com/vuejs/pinia">
7-
<img src="https://img.shields.io/badge/pinia-2.0.14-brightgreen.svg" alt="pinia">
8-
</a>
9-
<a href="https://github.com/lin-xin/vue-manage-system/blob/master/LICENSE">
10-
<img src="https://img.shields.io/github/license/mashape/apistatus.svg" alt="license">
11-
</a>
123
<a href="https://github.com/lin-xin/vue-manage-system/releases">
134
<img src="https://img.shields.io/github/release/lin-xin/vue-manage-system.svg" alt="GitHub release">
145
</a>
15-
<a href="https://lin-xin.gitee.io/example/work/#/donate">
16-
<img src="https://img.shields.io/badge/%24-donate-ff69b4.svg" alt="donate">
6+
<a href="https://github.com/lin-xin/vue-manage-system/blob/master/LICENSE">
7+
<img src="https://img.shields.io/github/license/mashape/apistatus.svg" alt="license">
178
</a>
189

1910
基于 Vue3 + pinia + Element Plus 的后台管理系统解决方案。[线上地址](https://lin-xin.gitee.io/example/work/)
@@ -28,7 +19,7 @@
2819

2920
[<img src="https://static.bestqa.net/logo/bestqa_haowen.png" width="220" height="100">](https://www.bestqa.net/home/index.html)
3021

31-
专业问卷服务,一对一客服,按需定制
22+
专业问卷服务,一对一客服,按需定制
3223

3324
## 支持作者
3425

@@ -46,21 +37,20 @@
4637
- [x] vite 3
4738
- [x] pinia
4839
- [x] typescript
49-
- [x] 登录/注销
40+
- [x] 登录/注册
5041
- [x] Dashboard
51-
- [x] 表格
52-
- [x] Tab 选项卡
53-
- [x] 表单
42+
- [x] 表格/表单
5443
- [x] 图表 :bar_chart:
55-
- [x] 富文本/markdown编辑器
44+
- [x] 富文本/markdown 编辑器
5645
- [x] 图片拖拽/裁剪上传
5746
- [x] 权限管理
5847
- [x] 三级菜单
5948
- [x] 自定义图标
60-
49+
- [x] 主题切换
6150

6251
## 安装步骤
63-
> 因为使用vite3,node版本需要 14.18+
52+
53+
> 因为使用 vite3,node 版本需要 14.18+
6454
6555
```
6656
git clone https://github.com/lin-xin/vue-manage-system.git // 把模板下载到本地
@@ -74,64 +64,16 @@ npm run dev
7464
npm run build
7565
```
7666

77-
## 组件使用说明与演示
78-
79-
### vue-schart
80-
81-
vue.js 封装 sChart.js 的图表组件。访问地址:[vue-schart](https://github.com/lin-xin/vue-schart#/)
82-
83-
<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>
84-
85-
```html
86-
<template>
87-
<div>
88-
<schart class="wrapper" canvasId="myCanvas" :options="options"></schart>
89-
</div>
90-
</template>
91-
92-
<script setup lang="ts">
93-
import { ref } from 'vue';
94-
import Schart from "vue-schart"; // 导入Schart组件
95-
const options = ref({
96-
type: "bar",
97-
title: {
98-
text: "最近一周各品类销售图",
99-
},
100-
labels: ["周一", "周二", "周三", "周四", "周五"],
101-
datasets: [
102-
{
103-
label: "家电",
104-
data: [234, 278, 270, 190, 230],
105-
},
106-
{
107-
label: "百货",
108-
data: [164, 178, 190, 135, 160],
109-
},
110-
{
111-
label: "食品",
112-
data: [144, 198, 150, 235, 120],
113-
},
114-
],
115-
})
116-
</script>
117-
<style>
118-
.wrapper {
119-
width: 7rem;
120-
height: 5rem;
121-
}
122-
</style>
123-
```
124-
12567
## 项目截图
12668

127-
### 登录
128-
129-
![Image text](https://github.com/lin-xin/manage-system/raw/master/screenshots/wms3.png)
130-
13169
### 首页
13270

13371
![Image text](https://github.com/lin-xin/manage-system/raw/master/screenshots/wms1.png)
13472

73+
### 登录
74+
75+
![Image text](https://github.com/lin-xin/manage-system/raw/master/screenshots/wms3.png)
76+
13577
## License
13678

13779
[MIT](https://github.com/lin-xin/vue-manage-system/blob/master/LICENSE)

0 commit comments

Comments
 (0)
Failed to load comments.