From 3548ba004c67af09ffc7197f79822e81bafcb952 Mon Sep 17 00:00:00 2001 From: xingyu Date: Wed, 24 May 2023 17:30:31 +0800 Subject: [PATCH] feat: remove console --- src/utils/dict.ts | 1 - src/views/system/notify/my/index.vue | 1 - src/views/system/notify/template/index.vue | 1 - 3 files changed, 3 deletions(-) diff --git a/src/utils/dict.ts b/src/utils/dict.ts index 7088efec..853d8bac 100644 --- a/src/utils/dict.ts +++ b/src/utils/dict.ts @@ -53,7 +53,6 @@ export function getDictOpts(dictType: string) { export function getDictOptions(dictType: string, valueType?: 'string' | 'number' | 'boolean') { const dictOption: DictDataType[] = [] const dictOptions: DictDataType[] = getDictDatas(dictType) - console.log(dictOptions) if (dictOptions && dictOptions.length > 0) { dictOptions.forEach((dict: DictDataType) => { dictOption.push({ diff --git a/src/views/system/notify/my/index.vue b/src/views/system/notify/my/index.vue index 072654ea..f4544169 100644 --- a/src/views/system/notify/my/index.vue +++ b/src/views/system/notify/my/index.vue @@ -117,7 +117,6 @@ async function handleUpdateAll() { } const handleInfo = (record: any) => { - console.log(JSON.stringify(record, Object.keys(record), 2)) openModal(true, record) } diff --git a/src/views/system/notify/template/index.vue b/src/views/system/notify/template/index.vue index d9a24dad..f429843e 100644 --- a/src/views/system/notify/template/index.vue +++ b/src/views/system/notify/template/index.vue @@ -85,7 +85,6 @@ function handleEdit(record: Recordable) { } function handleSend(record: Recordable) { - console.log(JSON.stringify(record, [...Object.keys(record)], 2)) openSendModal(true, record) }