fix 79966

This commit is contained in:
赵霄
2023-12-27 11:56:21 +08:00
parent a45d812398
commit b138dd4a5c
5 changed files with 24 additions and 16 deletions
@@ -4,13 +4,13 @@
:width="width"
:visible="visible"
:maskClosable="false"
:ok-text="null"
:cancel-text="$t('cancel')"
@ok="handleCancel"
@cancel="handleCancel">
<contact-table :data-source="dataSource" :need-row-selection="false" :loading="loading" disabled/>
<contact-table :data-source="dataSource" :need-row-selection="false" :loading="loading" disabled />
<template slot="footer">
<a-button @click="handleCancel">{{ $t('close') }}</a-button>
</template>
</j-modal>
</template>
@@ -4,12 +4,13 @@
:width="width"
:visible="visible"
:maskClosable="false"
:ok-text="null"
:cancel-text="$t('cancel')"
@ok="handleCancel"
@cancel="handleCancel">
<group-table :data-source="dataSource" :need-row-selection="false" :loading="loading" disabled />
<template slot="footer">
<a-button @click="handleCancel">{{ $t('close') }}</a-button>
</template>
</j-modal>
</template>
@@ -5,9 +5,6 @@
:visible="visible"
:maskClosable="false"
:confirmLoading="confirmLoading"
:ok-text="$t('preservation')"
:cancel-text="$t('cancel')"
@ok="handleOk"
@cancel="handleCancel">
<a-form :form="form">
<!--参会日期-->
@@ -48,6 +45,14 @@
<file-echo :file-ids="model.meetingData" />
</a-form-item>
</a-form>
<template slot="footer">
<a-button @click="handleCancel" v-if="disabled">{{ $t('close') }}</a-button>
<template v-else>
<a-button @click="handleCancel">{{ $t('cancel') }}</a-button>
<a-button type="primary" @click="handleOk">{{ $t('preservation') }}</a-button>
</template>
</template>
</j-modal>
</template>
@@ -4,12 +4,13 @@
:width="width"
:visible="visible"
:maskClosable="false"
:ok-text="null"
:cancel-text="$t('cancel')"
@ok="handleCancel"
@cancel="handleCancel">
<meeting-table :data-source="dataSource" :need-row-selection="false" :loading="loading" disabled />
<template slot="footer">
<a-button @click="handleCancel">{{ $t('close') }}</a-button>
</template>
</j-modal>
</template>
@@ -4,12 +4,13 @@
:width="width"
:visible="visible"
:maskClosable="false"
:ok-text="null"
:cancel-text="$t('cancel')"
@ok="handleCancel"
@cancel="handleCancel">
<payment-table :data-source="dataSource" :need-row-selection="false" :loading="loading" disabled />
<template slot="footer">
<a-button @click="handleCancel">{{ $t('close') }}</a-button>
</template>
</j-modal>
</template>