address-book-shell 0.0.25 → 0.0.26
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 +0 -8
- package/lib/address-book-shell.common.js +275 -263
- package/lib/address-book-shell.umd.js +279 -267
- package/lib/address-book-shell.umd.min.js +1 -1
- package/package.json +1 -1
- package/packages/address-book/src/components/address-content.vue +4 -0
- package/packages/address-book/src/components/address-updata.vue +5 -9
- package/packages/address-book/src/index.vue +25 -8
- package/src/api/address-list-api.js +5 -0
package/README.md
CHANGED
|
@@ -252,13 +252,6 @@ Vue.use(AddressBookShell, {
|
|
|
252
252
|
/>
|
|
253
253
|
```
|
|
254
254
|
|
|
255
|
-
#### nameImport
|
|
256
|
-
是否开启地址本的名单导入功能,开启后开放名单导入按钮。
|
|
257
|
-
``` html
|
|
258
|
-
<address-book-shell
|
|
259
|
-
nameImport
|
|
260
|
-
/>
|
|
261
|
-
```
|
|
262
255
|
|
|
263
256
|
|
|
264
257
|
### 属性总览
|
|
@@ -281,7 +274,6 @@ Vue.use(AddressBookShell, {
|
|
|
281
274
|
| robotsList | 机器人数据,不传或传[],不会显示机器人模块 | Array | - | [] |
|
|
282
275
|
| loginUserinfo | cas登录返回的用户信息(必传) | Object | - | {} |
|
|
283
276
|
| searchStatus | 搜索框权限控制 | String | '1':搜索全部;'2':仅内部;'3':仅合作方 | 长江e家默认'1',web默认'2' |
|
|
284
|
-
| nameImport | 是否开启名单导入功能 | Boolean | - | false |
|
|
285
277
|
|
|
286
278
|
|
|
287
279
|
|