fix: code lint warn

This commit is contained in:
xingyu4j
2025-04-24 17:56:02 +08:00
parent e702e4aba0
commit 29aa44c540
12 changed files with 32 additions and 23 deletions

View File

@@ -1,7 +1,10 @@
<script lang="ts" setup>
import type { SystemNotifyTemplateApi } from '#/api/system/notify/template';
import { computed, ref } from 'vue';
import { useVbenModal } from '@vben/common-ui';
import { message } from 'ant-design-vue';
import { useVbenForm } from '#/adapter/form';
@@ -11,7 +14,6 @@ import {
updateNotifyTemplate,
} from '#/api/system/notify/template';
import { $t } from '#/locales';
import { computed, ref } from 'vue';
import { useFormSchema } from '../data';

View File

@@ -1,13 +1,15 @@
<script lang="ts" setup>
import type { SystemNotifyTemplateApi } from '#/api/system/notify/template';
import { ref } from 'vue';
import { useVbenModal } from '@vben/common-ui';
import { message } from 'ant-design-vue';
import { useVbenForm } from '#/adapter/form';
import { sendNotify } from '#/api/system/notify/template';
import { $t } from '#/locales';
import { ref } from 'vue';
import { useSendNotifyFormSchema } from '../data';