leadal-auth 0.0.31 → 0.0.33
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -7
- package/lib/leadal-auth.common.js +2060 -10016
- package/lib/leadal-auth.css +1 -1
- package/lib/leadal-auth.umd.js +1853 -9809
- package/lib/leadal-auth.umd.min.js +9 -24
- package/package.json +6 -2
- package/lib/img/img-camera.f5578f07.png +0 -0
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
- 👥 **用户管理** - 完整的用户增删改查功能
|
|
9
9
|
- 🔐 **权限管理** - 支持多种认证方式(人脸、指纹、身份卡)
|
|
10
10
|
- 📊 **分页查询** - 高效的用户数据分页展示
|
|
11
|
-
- 🎨 **现代化UI** - 基于 Element UI 的美观界面
|
|
11
|
+
- 🎨 **现代化 UI** - 基于 Element UI 的美观界面
|
|
12
12
|
- 📦 **组件化** - 可独立使用的 Vue 组件
|
|
13
13
|
|
|
14
14
|
## 🚀 快速开始
|
|
@@ -22,9 +22,9 @@ npm install leadal-auth
|
|
|
22
22
|
### 基本使用
|
|
23
23
|
|
|
24
24
|
```javascript
|
|
25
|
-
import Vue from
|
|
26
|
-
import LeadalAuth from
|
|
27
|
-
import
|
|
25
|
+
import Vue from "vue";
|
|
26
|
+
import LeadalAuth from "leadal-auth";
|
|
27
|
+
import "leadal-auth/lib/leadal-auth.css"; // 引入样式文件(必需)
|
|
28
28
|
|
|
29
29
|
Vue.use(LeadalAuth, {
|
|
30
30
|
baseUrl: "http://dftdm.netiler.com",
|
|
@@ -51,12 +51,16 @@ Vue.use(LeadalAuth, {
|
|
|
51
51
|
|
|
52
52
|
```vue
|
|
53
53
|
<template>
|
|
54
|
-
<div
|
|
54
|
+
<div
|
|
55
|
+
style="height: calc(100vh - 108px);padding: 12px;box-sizing: border-box;"
|
|
56
|
+
>
|
|
55
57
|
<auth-manage> </auth-manage>
|
|
56
58
|
</div>
|
|
57
59
|
</template>
|
|
58
60
|
```
|
|
59
61
|
|
|
62
|
+
0.0.31 更新 log
|
|
63
|
+
新增已调离列表、调离功能、导出调离用户与机构用户、新增机构树图标。
|
|
60
64
|
|
|
61
|
-
0.0.
|
|
62
|
-
|
|
65
|
+
0.0.32 更新 log
|
|
66
|
+
修复 span 全局使用污染其他项目代码,部分样式做了隔离
|