@sy-common/organize-select-help 1.0.0-beta.3 → 1.0.0-beta.35
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/package.json +3 -2
- package/readme.md +26 -0
- package/src/index.vue +1692 -183
- package/src/organize-tree.vue +362 -95
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sy-common/organize-select-help",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.35",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"author": "lambo",
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
"registry": "https://registry.npmjs.org/"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
|
-
"@lambo-design/core": "^4.7.1-beta.140"
|
|
13
|
+
"@lambo-design/core": "^4.7.1-beta.140",
|
|
14
|
+
"@sy-common/core": "^1.0.0-beta.39"
|
|
14
15
|
},
|
|
15
16
|
"scripts": {
|
|
16
17
|
"release": "pnpm release-beta && git push --follow-tags && pnpm re-publish",
|
package/readme.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
data:{
|
|
2
|
+
//组织节点
|
|
3
|
+
orgList:{
|
|
4
|
+
includeLevel:true/false,//是否包含下级组织节点
|
|
5
|
+
orgUnitId:id, //组织id
|
|
6
|
+
orgNodeName:''//组织名称
|
|
7
|
+
},
|
|
8
|
+
//岗位节点
|
|
9
|
+
postList:{
|
|
10
|
+
includeLevel:true/false,//是否包含下级组织节点
|
|
11
|
+
orgUnitId:id, //组织id
|
|
12
|
+
orgNodeName:''//组织名称
|
|
13
|
+
positionId:''//岗位
|
|
14
|
+
positionName:''//岗位名称
|
|
15
|
+
},
|
|
16
|
+
人员节点
|
|
17
|
+
staffList:{
|
|
18
|
+
name:'名称’//名称
|
|
19
|
+
orgNodeName:‘’//
|
|
20
|
+
id:''//id
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
v-model双向绑定是否显示帮助框
|