address-book-shell 0.0.42 → 0.0.44
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 +5 -5
- package/lib/address-book-shell.common.js +201 -195
- package/lib/address-book-shell.umd.js +201 -195
- package/lib/address-book-shell.umd.min.js +1 -1
- package/package.json +1 -1
- package/packages/address-book/src/components/address-content.vue +6 -3
- package/packages/address-book/src/constants.js +3 -1
- package/packages/address-book/src/index.vue +6 -6
- package/packages/address-book/src/utils/util.js +3 -3
package/README.md
CHANGED
|
@@ -62,15 +62,15 @@ microserviceRequest是封装好的微服务请求方法,出于安全考虑,此
|
|
|
62
62
|
``` js
|
|
63
63
|
loginUserinfo: {
|
|
64
64
|
dept: "公司领导",
|
|
65
|
-
deptId: "
|
|
65
|
+
deptId: "xx",
|
|
66
66
|
email: "xxxx",
|
|
67
67
|
headImage: "xxxx",
|
|
68
68
|
hrId: "xxxx",
|
|
69
69
|
loginName: "xxxx",
|
|
70
70
|
phone: "12345678999",
|
|
71
71
|
post: "副总裁",
|
|
72
|
-
telNo: "
|
|
73
|
-
type:
|
|
72
|
+
telNo: "123456789",
|
|
73
|
+
type: Numver,
|
|
74
74
|
userName: "xx",
|
|
75
75
|
}
|
|
76
76
|
<address-book-shell
|
|
@@ -334,7 +334,7 @@ microserviceRequest是封装好的微服务请求方法,出于安全考虑,此
|
|
|
334
334
|
配置是否不允许选择领导,不配置或'0':默认有权限勾选领导;'1':禁止勾选领导;'query': 通过接口查询权限
|
|
335
335
|
|
|
336
336
|
```html
|
|
337
|
-
<!--
|
|
337
|
+
<!-- 通过接口查询是否有勾选行政及党务领导权限 -->
|
|
338
338
|
<address-book-shell
|
|
339
339
|
queryCannotChooseLeader='query'
|
|
340
340
|
/>
|
|
@@ -364,7 +364,7 @@ microserviceRequest是封装好的微服务请求方法,出于安全考虑,此
|
|
|
364
364
|
| searchStatus | 搜索框权限控制 | String | '1':搜索全部;'2':仅内部;'3':仅合作方 | 长江e家默认'1',web默认'2' |
|
|
365
365
|
| defaultActiveMenu | 菜单默认选中项 | String | - | |
|
|
366
366
|
| enableChangeConfirmation | 拉人超过5人 弹窗提示 | Boolean | - | false |
|
|
367
|
-
| queryCannotChooseLeader |
|
|
367
|
+
| queryCannotChooseLeader | 配置是否不允许选择行政及党务领导 | String | '0','1','query' | '0' |
|
|
368
368
|
|
|
369
369
|
### 组件事件
|
|
370
370
|
>
|