调整服务指令包各弹窗宽度
This commit is contained in:
parent
1aa04d7d7b
commit
e86d302e74
|
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<j-modal :title="title" width="70vw" :visible="visible" @ok="handleOk"
|
||||
<j-modal :title="title" width="1000px" :visible="visible" @ok="handleOk"
|
||||
:okButtonProps="{ class: { 'jee-hidden': disableSubmit } }" @cancel="handleCancel" cancelText="关闭"
|
||||
:maskClosable="false">
|
||||
<ConfigServiceDirectiveForm ref="registerForm" v-if="visible" @ok="submitCallback" :formDisabled="disableSubmit"
|
||||
|
|
|
|||
|
|
@ -102,7 +102,7 @@ const formData = reactive<Record<string, any>>({
|
|||
const { createMessage } = useMessage();
|
||||
const labelCol = ref<any>({ xs: { span: 24 }, sm: { span: 5 } });
|
||||
const wrapperCol = ref<any>({ xs: { span: 24 }, sm: { span: 16 } });
|
||||
const labelCol2 = ref<any>({ xs: { span: 24 }, sm: { span: 3 } });
|
||||
const labelCol2 = ref<any>({ xs: { span: 24 }, sm: { span: 4 } });
|
||||
const wrapperCol2 = ref<any>({ xs: { span: 24 }, sm: { span: 21 } });
|
||||
const confirmLoading = ref<boolean>(false);
|
||||
//表单验证
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
<!-- <j-modal :title="title" :width="width" :maskClosable="false" :fullscreen="true" :visible="visible" @ok="handleOk" :okButtonProps="{ class: { 'jee-hidden': disableSubmit } }" @cancel="handleCancel" cancelText="关闭">
|
||||
<DirectivePackageForm ref="registerForm" @ok="submitCallback" :formDisabled="disableSubmit" :formBpm="false"></DirectivePackageForm>
|
||||
</j-modal> -->
|
||||
<a-drawer v-model:open="visible" v-if="visible" :title="title" width="80vw" :closable="false"
|
||||
<a-drawer v-model:open="visible" v-if="visible" :title="title" width="1200px" :closable="false"
|
||||
:footer-style="{ textAlign: 'right' }" @close="handleCancel" :bodyStyle="{ padding: '14px' }">
|
||||
<a-row>
|
||||
<a-col :span="24">
|
||||
|
|
@ -78,7 +78,7 @@
|
|||
</a-drawer>
|
||||
|
||||
<!-- 引用 -->
|
||||
<a-drawer v-model:open="directiveQuoteDrawer" title="引用服务指令包" width="80vw" :closable="false"
|
||||
<a-drawer v-model:open="directiveQuoteDrawer" title="引用服务指令包" width="1200px" :closable="false"
|
||||
:footer-style="{ textAlign: 'right' }" :body-style="{}">
|
||||
<PackageList ref="directivePackageListRef" :instructionTagId="registerForm.formData.instructionTagId">
|
||||
</PackageList>
|
||||
|
|
@ -159,7 +159,7 @@ function getImgPath(pathUrl) {
|
|||
* 新增
|
||||
*/
|
||||
function add() {
|
||||
title.value = '新增服务指令包';
|
||||
title.value = '新增';
|
||||
visible.value = true;
|
||||
selectedDirective.value = ''
|
||||
seletedRecord.value = { directives: [] }
|
||||
|
|
|
|||
|
|
@ -100,7 +100,7 @@ const labelCol = reactive({
|
|||
xs: 24,
|
||||
sm: 4,
|
||||
xl: 9,
|
||||
xxl: 5
|
||||
xxl: 6
|
||||
});
|
||||
const wrapperCol = reactive({
|
||||
xs: 24,
|
||||
|
|
|
|||
Loading…
Reference in New Issue