address-book-shell 0.0.28 → 0.0.30
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 +9 -0
- package/lib/address-book-shell.common.js +655 -602
- package/lib/address-book-shell.umd.js +655 -602
- package/lib/address-book-shell.umd.min.js +1 -1
- package/package.json +1 -1
- package/packages/address-book/src/components/address-aside.vue +11 -2
- package/packages/address-book/src/components/address-content.vue +1 -1
- package/packages/address-book/src/components/address-group-item.vue +5 -3
- package/packages/address-book/src/components/address-updata.vue +7 -7
- package/packages/address-book/src/index.vue +141 -90
- package/src/api/address-list-api.js +2 -1
package/README.md
CHANGED
|
@@ -252,6 +252,14 @@ Vue.use(AddressBookShell, {
|
|
|
252
252
|
/>
|
|
253
253
|
```
|
|
254
254
|
|
|
255
|
+
#### defaultActiveMenu
|
|
256
|
+
自定义初始化时菜单默认选中项,值为部门id,即deptId。(例如: 'C1','D794')
|
|
257
|
+
```html
|
|
258
|
+
<address-book-shell
|
|
259
|
+
defaultActiveMenu='C1'
|
|
260
|
+
/>
|
|
261
|
+
```
|
|
262
|
+
|
|
255
263
|
|
|
256
264
|
|
|
257
265
|
### 属性总览
|
|
@@ -274,6 +282,7 @@ Vue.use(AddressBookShell, {
|
|
|
274
282
|
| robotsList | 机器人数据,不传或传[],不会显示机器人模块 | Array | - | [] |
|
|
275
283
|
| loginUserinfo | cas登录返回的用户信息(必传) | Object | - | {} |
|
|
276
284
|
| searchStatus | 搜索框权限控制 | String | '1':搜索全部;'2':仅内部;'3':仅合作方 | 长江e家默认'1',web默认'2' |
|
|
285
|
+
| defaultActiveMenu | 菜单默认选中项 | String | - | |
|
|
277
286
|
|
|
278
287
|
|
|
279
288
|
|