@litianxiang/portal-ui 0.1.4 → 0.1.6
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 +3 -13
- package/dist/index.d.ts +0 -1
- package/dist/index.js +1784 -1974
- package/dist/portal-ui.css +1 -1
- package/dist/styles/element-ui.scss +3 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -290,19 +290,9 @@ import {
|
|
|
290
290
|
<BusiOutUser v-model="formData.outUser" />
|
|
291
291
|
```
|
|
292
292
|
|
|
293
|
-
22. **BusiUserDialog**
|
|
294
|
-
|
|
295
|
-
- 用途:人员选择弹窗组件。
|
|
296
|
-
- 适用场景:复杂筛选+批量选择人员。
|
|
297
|
-
- 示例:
|
|
298
|
-
|
|
299
|
-
```vue
|
|
300
|
-
<BusiUserDialog v-model="userDialogVisible" @confirm="handleUserConfirm" />
|
|
301
|
-
```
|
|
302
|
-
|
|
303
293
|
#### 文件预览组件
|
|
304
294
|
|
|
305
|
-
|
|
295
|
+
22. **BaseFilePreview**
|
|
306
296
|
|
|
307
297
|
- 用途:基础文件预览容器。
|
|
308
298
|
- 适用场景:单文件预览、附件详情预览。
|
|
@@ -312,7 +302,7 @@ import {
|
|
|
312
302
|
<BaseFilePreview :file-url="fileUrl" :file-name="fileName" />
|
|
313
303
|
```
|
|
314
304
|
|
|
315
|
-
|
|
305
|
+
23. **BusiFilePreview**
|
|
316
306
|
|
|
317
307
|
- 用途:业务场景文件预览组件(推荐)。
|
|
318
308
|
- 适用场景:流程单附件列表预览。
|
|
@@ -322,7 +312,7 @@ import {
|
|
|
322
312
|
<BusiFilePreview :files="attachmentList" />
|
|
323
313
|
```
|
|
324
314
|
|
|
325
|
-
|
|
315
|
+
24. **WorkflowFilePreview(兼容导出,已废弃)**
|
|
326
316
|
|
|
327
317
|
- 用途:历史命名兼容。
|
|
328
318
|
- 说明:已等价映射到 `BusiFilePreview`,新代码请直接使用 `BusiFilePreview`。
|
package/dist/index.d.ts
CHANGED
|
@@ -21,7 +21,6 @@ export { default as BaseApprovalRecord } from './components/control/busi/busi-ap
|
|
|
21
21
|
export { default as BaseUser } from './components/control/busi/busi-user.vue'
|
|
22
22
|
export { default as BusiDept } from './components/control/busi/busi-dept.vue'
|
|
23
23
|
export { default as BusiOutUser } from './components/control/busi/busi-outuser.vue'
|
|
24
|
-
export { default as BusiUserDialog } from './components/control/busi/busi-user-dialog.vue'
|
|
25
24
|
export { default as BusiFilePreview } from './components/control/busi/busi-file-preview.vue'
|
|
26
25
|
export { default as BusiWorkflowProcess } from './components/control/busi/busi-workflow-process.vue'
|
|
27
26
|
export { baseMessageBox } from './components/control/base/base-messagebox.vue'
|