Compare commits

..

No commits in common. "933140aff2f0737ae1bfdcddabcc498c77edf8b3" and "0d1197c80f33a7f840bc1691575ca980a3fcaa0c" have entirely different histories.

2 changed files with 11 additions and 17 deletions

View File

@ -451,6 +451,6 @@
}
.my-form-viewer {
overflow: auto;
height: calc( 100vh - 350px);
height: 70vh;
}
</style>

View File

@ -95,16 +95,15 @@
:model="formData"
size="small"
labelAlign="left"
:label-col="2"
:wrapper-col="22"
:label-col="labelCol"
:wrapper-col="wrapperCol"
>
<!-- <a-form-item :label="auditNameVal" /> -->
<a-form-item :label="auditNameVal">
<a-form-item :label="auditNameVal" />
<a-form-item label="">
<a-textarea
v-model:value="formData.des"
placeholder="请输入"
:auto-size="{ minRows: 2, maxRows: 8 }"
:auto-size="{ minRows: 5, maxRows: 8 }"
/>
</a-form-item>
<a-form-item label="" class="l-task-btns">
@ -118,7 +117,7 @@
>
</a-form-item>
</a-form>
<!-- <auditInfo :data="designerData.userLogs" /> -->
<auditInfo :data="designerData.userLogs" />
</div>
</a-tab-pane>
</a-tabs>
@ -213,8 +212,8 @@
const flowContent = ref('');
const flowViewer = ref({});
const formRef = ref();
const labelCol = { span:1 };
const wrapperCol = { span: 22 };
const labelCol = { span: 7 };
const wrapperCol = { span: 24 };
const infoOpen = ref(true);
const formVisble = ref(false);
const formUrlVisble = ref(false);
@ -237,16 +236,11 @@
});
const footerStyle = ref({
height:"220px",
width:"100%",
height:"440px",
overFlow:"auto",
color: '#fff',
backgroundColor: '#ffffff',
zIndex:"9999999999",
padding:"0px 100px",
position:"fixed",
bottom:"0px",
left:"0px"
})
if (props.type == 4) {
rules.value = {};
@ -893,7 +887,7 @@
height:0px!important;
}
::v-deep .ant-layout-footer{
padding:0px 20px!important;
padding:0px !important;
overflow: auto!important;
}