feat(组件): 弹窗样式调整
This commit is contained in:
parent
18139de912
commit
36a93d3681
|
@ -65,14 +65,19 @@
|
||||||
margin-top: 16px;
|
margin-top: 16px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.ms-modal-weak {
|
.ms-usemodal {
|
||||||
|
.arco-modal-body {
|
||||||
|
@apply p-0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.ms-usemodal-weak {
|
||||||
.arco-modal-footer {
|
.arco-modal-footer {
|
||||||
.arco-btn:first-child {
|
.arco-btn:first-child {
|
||||||
color: var(--color-text-1) !important;
|
color: var(--color-text-1) !important;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.ms-modal-warning {
|
.ms-usemodal-warning {
|
||||||
.arco-modal-title-icon {
|
.arco-modal-title-icon {
|
||||||
.arco-icon {
|
.arco-icon {
|
||||||
color: rgb(var(--danger-6));
|
color: rgb(var(--danger-6));
|
||||||
|
@ -93,12 +98,27 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.ms-modal-medium {
|
.ms-modal-medium {
|
||||||
width: 680px;
|
.arco-modal {
|
||||||
|
width: 680px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.ms-modal-large {
|
.ms-modal-large {
|
||||||
width: 960px;
|
.arco-modal {
|
||||||
|
width: 960px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.ms-modal-small {
|
.ms-modal-small {
|
||||||
|
.arco-modal {
|
||||||
|
width: 480px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.ms-usemodal-medium {
|
||||||
|
width: 680px;
|
||||||
|
}
|
||||||
|
.ms-usemodal-large {
|
||||||
|
width: 960px;
|
||||||
|
}
|
||||||
|
.ms-usemodal-small {
|
||||||
width: 480px;
|
width: 480px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -28,9 +28,9 @@ export default function useModal() {
|
||||||
simple: false,
|
simple: false,
|
||||||
...options,
|
...options,
|
||||||
titleAlign: 'start',
|
titleAlign: 'start',
|
||||||
modalClass: `ms-modal-${options.mode || 'default'} ms-modal-${options.size || 'small'} ms-modal-${
|
modalClass: `ms-usemodal ms-usemodal-${options.mode || 'default'} ms-usemodal-${
|
||||||
options.type
|
options.size || 'small'
|
||||||
}`,
|
} ms-usemodal-${options.type}`,
|
||||||
}),
|
}),
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -861,14 +861,14 @@
|
||||||
const importSuccessCount = ref(0);
|
const importSuccessCount = ref(0);
|
||||||
const importFailCount = ref(0);
|
const importFailCount = ref(0);
|
||||||
const importErrorFileUrl = ref('');
|
const importErrorFileUrl = ref('');
|
||||||
const importResult = ref<'success' | 'allFail' | 'fail'>('success');
|
const importResult = ref<'success' | 'allFail' | 'fail'>('allFail');
|
||||||
const importResultTitle = ref(t('system.user.importSuccessTitle'));
|
const importResultTitle = ref(t('system.user.importSuccessTitle'));
|
||||||
|
|
||||||
function showImportModal() {
|
function showImportModal() {
|
||||||
importVisible.value = true;
|
importVisible.value = true;
|
||||||
importFailCount.value = 0;
|
importFailCount.value = 0;
|
||||||
importSuccessCount.value = 0;
|
importSuccessCount.value = 0;
|
||||||
importResult.value = 'success';
|
importResult.value = 'allFail';
|
||||||
}
|
}
|
||||||
|
|
||||||
function cancelImport() {
|
function cancelImport() {
|
||||||
|
|
Loading…
Reference in New Issue