@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.
@@ -370,6 +370,8 @@ const getProcessStatusTheme = (status) => {
370
370
  // 获取流程状态文本
371
371
  const getProcessStatusText = (status) => {
372
372
  const statusMap = {
373
+ 'REJECT': '已拒绝',
374
+ 'APPROVED': "已通过",
373
375
  'ACTIVE': '进行中',
374
376
  'COMPLETED': '已完成',
375
377
  'SUSPENDED': '已暂停'
@@ -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
  />