Merge remote-tracking branch 'yudao/dev' into dev
commit
5b3f1b7ea0
|
|
@ -37,7 +37,7 @@ export function useUploadFileRule() {
|
||||||
{ label: 'pdf', value: 'pdf' },
|
{ label: 'pdf', value: 'pdf' },
|
||||||
],
|
],
|
||||||
props: {
|
props: {
|
||||||
multiple: true,
|
mode: 'multiple',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -47,7 +47,7 @@ export function useUploadImageRule() {
|
||||||
{ label: 'image/x-icon', value: 'image/x-icon' },
|
{ label: 'image/x-icon', value: 'image/x-icon' },
|
||||||
],
|
],
|
||||||
props: {
|
props: {
|
||||||
multiple: false,
|
mode: 'multiple',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
|
|
@ -47,7 +47,7 @@ export function useUploadImagesRule() {
|
||||||
{ label: 'image/x-icon', value: 'image/x-icon' },
|
{ label: 'image/x-icon', value: 'image/x-icon' },
|
||||||
],
|
],
|
||||||
props: {
|
props: {
|
||||||
multiple: true,
|
mode: 'multiple',
|
||||||
maxNumber: 5,
|
maxNumber: 5,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -351,11 +351,6 @@ defineExpose({ initData, validate });
|
||||||
<Checkbox v-model:checked="modelData.allowCancelRunningProcess">
|
<Checkbox v-model:checked="modelData.allowCancelRunningProcess">
|
||||||
允许撤销审批中的申请
|
允许撤销审批中的申请
|
||||||
</Checkbox>
|
</Checkbox>
|
||||||
<div class="ml-6">
|
|
||||||
<TypographyText type="warning">
|
|
||||||
第一个审批节点通过后,提交人仍可撤销申请
|
|
||||||
</TypographyText>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</FormItem>
|
</FormItem>
|
||||||
<FormItem class="mb-5" label="审批人权限">
|
<FormItem class="mb-5" label="审批人权限">
|
||||||
|
|
|
||||||
|
|
@ -47,7 +47,7 @@ export function useUploadImageRule() {
|
||||||
{ label: 'image/x-icon', value: 'image/x-icon' },
|
{ label: 'image/x-icon', value: 'image/x-icon' },
|
||||||
],
|
],
|
||||||
props: {
|
props: {
|
||||||
multiple: false,
|
multiple: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue