fix: 模态框的footer底部按钮null会显示的处理
This commit is contained in:
@@ -84,7 +84,7 @@ function fnUpload(up: UploadRequestOption) {
|
|||||||
:keyboard="false"
|
:keyboard="false"
|
||||||
:mask-closable="false"
|
:mask-closable="false"
|
||||||
:confirm-loading="props.loading"
|
:confirm-loading="props.loading"
|
||||||
:footer="null"
|
:footer="false"
|
||||||
@cancel="fnModalClose"
|
@cancel="fnModalClose"
|
||||||
>
|
>
|
||||||
<a-space :size="8" direction="vertical" style="width: 100%">
|
<a-space :size="8" direction="vertical" style="width: 100%">
|
||||||
|
|||||||
@@ -210,7 +210,7 @@ watch(
|
|||||||
:keyboard="false"
|
:keyboard="false"
|
||||||
:mask-closable="false"
|
:mask-closable="false"
|
||||||
@cancel="fnModalCancel"
|
@cancel="fnModalCancel"
|
||||||
:footer="null"
|
:footer="false"
|
||||||
>
|
>
|
||||||
<!-- 表格搜索栏 -->
|
<!-- 表格搜索栏 -->
|
||||||
<a-form :model="queryParams" name="queryParams" layout="horizontal">
|
<a-form :model="queryParams" name="queryParams" layout="horizontal">
|
||||||
|
|||||||
@@ -1054,7 +1054,8 @@ onMounted(() => {
|
|||||||
:visible="modalState.helpShowView"
|
:visible="modalState.helpShowView"
|
||||||
:title="modalState.title"
|
:title="modalState.title"
|
||||||
:confirm-loading="modalState.confirmLoading"
|
:confirm-loading="modalState.confirmLoading"
|
||||||
:footer="null"
|
:body-style="{ padding: '0px' }"
|
||||||
|
:footer="false"
|
||||||
@cancel="fnModalCancel"
|
@cancel="fnModalCancel"
|
||||||
>
|
>
|
||||||
<a-table
|
<a-table
|
||||||
|
|||||||
@@ -826,6 +826,7 @@ onMounted(() => {
|
|||||||
<!-- 详情框 -->
|
<!-- 详情框 -->
|
||||||
<ProModal
|
<ProModal
|
||||||
:drag="true"
|
:drag="true"
|
||||||
|
:width="800"
|
||||||
:body-style="{ height: '520px', overflowY: 'scroll' }"
|
:body-style="{ height: '520px', overflowY: 'scroll' }"
|
||||||
:keyboard="false"
|
:keyboard="false"
|
||||||
:mask-closable="false"
|
:mask-closable="false"
|
||||||
|
|||||||
@@ -413,7 +413,7 @@ onMounted(() => {
|
|||||||
:visible="modalState.visibleByView"
|
:visible="modalState.visibleByView"
|
||||||
:title="modalState.title"
|
:title="modalState.title"
|
||||||
@cancel="fnModalCancel"
|
@cancel="fnModalCancel"
|
||||||
:footer="null"
|
:footer="false"
|
||||||
>
|
>
|
||||||
<a-form layout="horizontal" labelAlign="left" :labelWrap="false">
|
<a-form layout="horizontal" labelAlign="left" :labelWrap="false">
|
||||||
<a-row :gutter="8">
|
<a-row :gutter="8">
|
||||||
|
|||||||
@@ -539,7 +539,7 @@ onMounted(() => {
|
|||||||
:drag="true"
|
:drag="true"
|
||||||
:width="800"
|
:width="800"
|
||||||
:visible="modalState.visibleByView"
|
:visible="modalState.visibleByView"
|
||||||
:footer="null"
|
:footer="false"
|
||||||
:maskClosable="false"
|
:maskClosable="false"
|
||||||
:keyboard="false"
|
:keyboard="false"
|
||||||
:title="t('views.traceManage.pcap.textLogMsg')"
|
:title="t('views.traceManage.pcap.textLogMsg')"
|
||||||
|
|||||||
Reference in New Issue
Block a user