客户组
This commit is contained in:
@ -3,8 +3,13 @@
|
||||
ref="systemFormRef"
|
||||
:formProps="data.formDataProps"
|
||||
:formModel="{}"
|
||||
:isWorkFlow="props.fromPage!=FromPageType.MENU"
|
||||
/>
|
||||
:isWorkFlow="props.fromPage!=FromPageType.MENU">
|
||||
<template #pid="{ formModel }">
|
||||
<FormItem label="上级ID" :label-col="{ span: 7, offset: 0 }" labelAlign="right" name="pid">
|
||||
{{ formModel.pid == '0' ? '' : formModel.pid }}
|
||||
</FormItem>
|
||||
</template>
|
||||
</SimpleForm>
|
||||
</template>
|
||||
<script lang="ts" setup>
|
||||
import { reactive, ref,onBeforeMount,onMounted } from 'vue';
|
||||
@ -20,6 +25,8 @@
|
||||
import { changeWorkFlowForm, changeSchemaDisabled } from '/@/hooks/web/useWorkFlowForm';
|
||||
import { WorkFlowFormParams } from '/@/model/workflow/bpmnConfig';
|
||||
import { useRouter } from 'vue-router';
|
||||
import { Form, Col, Row, Tabs, TabPane, Divider } from 'ant-design-vue';
|
||||
const FormItem = Form.Item;
|
||||
|
||||
const { filterFormSchemaAuth } = usePermission();
|
||||
const { mergeFormSchemas,mergeFormEventConfigs } = useFormConfig();
|
||||
|
||||
@ -316,10 +316,10 @@ export const formProps: FormProps = {
|
||||
key: 'ed8d105c346a4306bf6502ecca668328',
|
||||
field: 'pid',
|
||||
label: '上级ID',
|
||||
type: 'input',
|
||||
component: 'Input',
|
||||
type: 'slot',
|
||||
colProps: { span: 8 },
|
||||
defaultValue: '',
|
||||
slotName: 'pid',
|
||||
componentProps: {
|
||||
width: '100%',
|
||||
span: '',
|
||||
|
||||
Reference in New Issue
Block a user