修改边距

This commit is contained in:
yangjun 2025-08-27 13:56:19 +08:00
parent e55e6efab6
commit d06145e113
2 changed files with 5 additions and 5 deletions

View File

@ -422,7 +422,7 @@
</a-drawer> --> </a-drawer> -->
<!-- 差异比对 --> <!-- 差异比对 -->
<a-drawer title="差异比对" width="80vw" :open="compareListOpen" @close="onCompareListClose" <a-drawer title="差异比对" width="80vw" :open="compareListOpen" @close="onCompareListClose"
:footer-style="{ textAlign: 'right' }" :bodyStyle="{ padding: '14px' }"> :footer-style="{ textAlign: 'right' }" :bodyStyle="{ padding: '0' }">
<template #footer> <template #footer>
<a-button type="primary" @click="onCompareListClose" style="margin-right: 10px;">关闭</a-button> <a-button type="primary" @click="onCompareListClose" style="margin-right: 10px;">关闭</a-button>
</template> </template>
@ -432,7 +432,7 @@
<!-- 批量新增 --> <!-- 批量新增 -->
<a-drawer title="批量新增" width="80vw" :open="batchAddOpen" @close="onBatchAddClose" <a-drawer title="批量新增" width="80vw" :open="batchAddOpen" @close="onBatchAddClose"
:footer-style="{ textAlign: 'right' }" :bodyStyle="{ padding: '14px' }"> :footer-style="{ textAlign: 'right' }" :bodyStyle="{ padding: '0' }">
<template #footer> <template #footer>
<a-button type="primary" @click="onBatchAddClose" style="margin-right: 10px;">关闭</a-button> <a-button type="primary" @click="onBatchAddClose" style="margin-right: 10px;">关闭</a-button>
<a-button type="primary" @click="onBatchAddSubmit">确认</a-button> <a-button type="primary" @click="onBatchAddSubmit">确认</a-button>
@ -442,7 +442,7 @@
<!-- 停用指令 --> <!-- 停用指令 -->
<a-drawer title="停用指令" width="85vw" :open="abnormalListOpen" @close="onAbnormalListClose" <a-drawer title="停用指令" width="85vw" :open="abnormalListOpen" @close="onAbnormalListClose"
:footer-style="{ textAlign: 'right' }" :bodyStyle="{ padding: '14px' }"> :footer-style="{ textAlign: 'right' }" :bodyStyle="{ padding: '0' }">
<template #footer> <template #footer>
<a-button type="primary" @click="onAbnormalListClose" style="margin-right: 10px;">关闭</a-button> <a-button type="primary" @click="onAbnormalListClose" style="margin-right: 10px;">关闭</a-button>
</template> </template>
@ -451,7 +451,7 @@
<!-- 差异指令 --> <!-- 差异指令 -->
<a-drawer v-model:visible="newDirectiveVisible" title="差异指令" width="85vw" :footer-style="{ textAlign: 'right' }" <a-drawer v-model:visible="newDirectiveVisible" title="差异指令" width="85vw" :footer-style="{ textAlign: 'right' }"
:bodyStyle="{ height: '80vh', display: 'flex', flexDirection: 'column', overflow: 'auto' }" :bodyStyle="{ height: '80vh', display: 'flex', padding: '0', flexDirection: 'column', overflow: 'auto' }"
wrapClassName="org-list-modal" @cancel="handleCancelNewDirective"> wrapClassName="org-list-modal" @cancel="handleCancelNewDirective">
<template #footer> <template #footer>
<a-button @click="handleCancelNewDirective" type="primary">关闭</a-button> <a-button @click="handleCancelNewDirective" type="primary">关闭</a-button>

View File

@ -17,7 +17,7 @@
</j-modal> --> </j-modal> -->
<a-drawer :title="title" width="80vw" v-model:visible="visible" :closable="true" <a-drawer :title="title" width="80vw" v-model:visible="visible" :closable="true"
:footer-style="{ textAlign: 'right' }" @close="handleCancel" :footer-style="{ textAlign: 'right' }" @close="handleCancel"
:bodyStyle="{ background: 'linear-gradient(135deg, #f1f7ff 0%, #f1f7ff 100%)' }"> :bodyStyle="{ background: 'linear-gradient(135deg, #f1f7ff 0%, #f1f7ff 100%)',padding: '14px' }">
<a-spin :spinning="loading"> <a-spin :spinning="loading">
<ConfigServiceDirectiveForm ref="registerForm" v-if="visible" @ok="submitCallback" :formDisabled="disableSubmit" <ConfigServiceDirectiveForm ref="registerForm" v-if="visible" @ok="submitCallback" :formDisabled="disableSubmit"
:formBpm="false" :mainOrgCode="mainOrgCode" :mediaApiAddress="mediaApiAddress" :opeType="opeType" :formBpm="false" :mainOrgCode="mainOrgCode" :mediaApiAddress="mediaApiAddress" :opeType="opeType"