master
飘泊客 11 months ago
parent 800f944b84
commit f191d10141

@ -1,12 +1,14 @@
<template> <template>
<div ref="refModel">
<a-modal <a-modal
:title="title" :title="title"
:visible="visible" :visible="visible"
:mask-closable="false" :mask-closable="false"
:centered="true" :centered="true"
:body-style="{ paddingBottom: '8px' }" :body-style="{ paddingBottom: '8px', paddingTop: '0px' }"
:confirm-loading="submitLoading" :confirm-loading="submitLoading"
:width="650" :width="650"
:get-container="() => $refs.refModel"
@cancel="handleClose" @cancel="handleClose"
> >
<a-tabs centered> <a-tabs centered>
@ -39,7 +41,11 @@
:label-col="{ sm: { span: 24 }, md: { span: 4 } }" :label-col="{ sm: { span: 24 }, md: { span: 4 } }"
:wrapper-col="{ sm: { span: 24 }, md: { span: 20 } }" :wrapper-col="{ sm: { span: 24 }, md: { span: 20 } }"
> >
<a-input v-model:value="formModel.comprehensiveAddress" placeholder="请输入" readonly /> <a-input
v-model:value="formModel.comprehensiveAddress"
placeholder="请输入"
readonly
/>
</a-form-item> </a-form-item>
</a-col> </a-col>
</a-row> </a-row>
@ -91,6 +97,7 @@
</div> </div>
</template> </template>
</a-modal> </a-modal>
</div>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
@ -106,6 +113,7 @@ import { doRequest } from '@/utils/axios/request'
import { getCustomDetails } from '@/api/geopoliticalCustomers' import { getCustomDetails } from '@/api/geopoliticalCustomers'
// //
import 'dayjs/locale/zh-cn' import 'dayjs/locale/zh-cn'
import { $ref } from 'vue/macros'
// import dayjs from 'dayjs' // import dayjs from 'dayjs'
const emits = defineEmits<{ const emits = defineEmits<{
(e: 'submit-success'): void (e: 'submit-success'): void
@ -334,7 +342,11 @@ defineExpose({
right: 3px; right: 3px;
font-size: 15px; font-size: 15px;
} }
//modal
::v-deep .ant-modal-header {
padding: 16px 24px 0px !important;
border-bottom: unset !important;
}
//a-tabs //a-tabs
::v-deep .ant-tabs-top > .ant-tabs-nav { ::v-deep .ant-tabs-top > .ant-tabs-nav {
margin: 0 0 25px 0; margin: 0 0 25px 0;

Loading…
Cancel
Save