客户组

This commit is contained in:
‘huanghaiixia’
2025-12-16 17:30:03 +08:00
parent e5a9545c55
commit 1eee4dcd60
15 changed files with 1708 additions and 49 deletions

View File

@ -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();

View File

@ -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: '',