fix: merge bug

This commit is contained in:
马登山
2025-10-14 10:59:48 +08:00
parent 07aa4df414
commit e988b174eb
2 changed files with 0 additions and 14 deletions
-9
View File
@@ -60,13 +60,6 @@ import type { FormItemRule, FormInst } from 'naive-ui';
import { NButton, NForm, NFormItem, NInput } from 'naive-ui';
import { ref, watch } from 'vue';
import { useI18n } from 'vue-i18n';
const { t } = useI18n();
const formRef = ref(null);
import { NButton, NForm, NFormItem, NInput } from 'naive-ui';
import { ref } from 'vue';
import { useI18n } from 'vue-i18n';
const { getEventTargetArnList } = useEventTarget();
const { putBucketNotifications, listBucketNotifications } = useBucket({});
const { t } = useI18n();
@@ -307,8 +300,6 @@ const handleCancel = () => {
// 重置表单验证状态
formRef.value?.restoreValidation();
};
visible.value = false;
};
// 获取arn列表
const arnList = ref<Array<{ label: string; value: string }>>([]);
-5
View File
@@ -204,9 +204,6 @@ const bucketList = computed(() => {
}));
});
const bucketName = ref<string>(bucketList.value.length > 0 ? (bucketList.value[0]?.value ?? '') : '');
const pageData = ref([]);
const bucketName = ref<string>(bucketList.value.length > 0 ? (bucketList.value[0]?.value ?? '') : '');
const loading = ref<boolean>(false);
const pageData = ref<NotificationItem[]>([]);
@@ -298,8 +295,6 @@ const newRef = ref();
const handleNew = () => {
newRef.value.open();
};
newRef.value.open();
};
const refresh = async () => {
if (!bucketName.value) {