@ebiz/designer-components 0.1.12 → 0.1.13
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/dist/designer-components.css +1 -1
- package/dist/index.mjs +11057 -11011
- package/package.json +1 -1
- package/src/components/EbizApproval.vue +74 -17
- package/src/components/EbizEmployeeSelector.vue +310 -336
- package/src/components/EbizSApprovalProcess.vue +2 -0
- package/src/views/EbizApprovalDemo.vue +11 -0
|
@@ -8,6 +8,17 @@
|
|
|
8
8
|
v-model:approverList="approverList"
|
|
9
9
|
v-model:ccList="ccList"
|
|
10
10
|
key="approval-1"
|
|
11
|
+
type="limited"
|
|
12
|
+
:limitedMap="[{
|
|
13
|
+
label: '部门主管',
|
|
14
|
+
value: 'MANAGER'
|
|
15
|
+
},{
|
|
16
|
+
label: '部门经理',
|
|
17
|
+
value: 'DIRECTOR'
|
|
18
|
+
},{
|
|
19
|
+
label: '部门总监',
|
|
20
|
+
value: 'INSPECTOR_GENERAL'
|
|
21
|
+
}]"
|
|
11
22
|
:required="true"
|
|
12
23
|
@change="handleChange"
|
|
13
24
|
/>
|