diff --git a/src/store/modules/permission.ts b/src/store/modules/permission.ts index 16b984aa..2a0a1727 100644 --- a/src/store/modules/permission.ts +++ b/src/store/modules/permission.ts @@ -236,7 +236,6 @@ export const usePermissionStore = defineStore('app-permission', { routeList = routeList.filter(routeRemoveIgnoreFilter) routeList = flatMultiLevelRoutes(routeList) routes = [PAGE_NOT_FOUND_ROUTE, dashboard, ...routeList, about] - console.info(routes) break } diff --git a/src/utils/http/axios/index.ts b/src/utils/http/axios/index.ts index c4794df1..c2e2891f 100644 --- a/src/utils/http/axios/index.ts +++ b/src/utils/http/axios/index.ts @@ -60,7 +60,6 @@ const transform: AxiosTransform = { } // 这里 code,result,message为 后台统一的字段,需要在 types.ts内修改为项目自己的接口返回格式 const { code, data: result, msg } = data - console.info(result) // 这里逻辑可以根据项目进行修改 const hasSuccess = data && Reflect.has(data, 'code') && code === ResultEnum.SUCCESS if (hasSuccess) { diff --git a/src/views/pay/app/index.vue b/src/views/pay/app/index.vue index 9dae0e3b..b84183a0 100644 --- a/src/views/pay/app/index.vue +++ b/src/views/pay/app/index.vue @@ -248,7 +248,6 @@ async function handleDelete(record: Recordable) { } function openChannel(record: Recordable, payCode: string, type: string, isUpdate: boolean) { - console.info(record) openChannelModal(true, { record, payCode, type, isUpdate }) } diff --git a/src/views/system/area/AreaModal.vue b/src/views/system/area/AreaModal.vue index b6fdd9a1..cc1befb8 100644 --- a/src/views/system/area/AreaModal.vue +++ b/src/views/system/area/AreaModal.vue @@ -28,7 +28,6 @@ async function handleSubmit() { try { const values = await validate() setModalProps({ confirmLoading: true }) - console.info(values) const res = await getAreaByIp(values.ip) if (res) { values.result = res diff --git a/src/views/system/dict/DictData.vue b/src/views/system/dict/DictData.vue index 983605a2..3c29170b 100644 --- a/src/views/system/dict/DictData.vue +++ b/src/views/system/dict/DictData.vue @@ -94,7 +94,6 @@ async function handleDelete(record: Recordable) { watch( () => props.searchInfo, (val) => { - console.info(val) val && reload() }, { deep: true } diff --git a/src/views/system/mail/template/index.vue b/src/views/system/mail/template/index.vue index 07f8524c..af9520ce 100644 --- a/src/views/system/mail/template/index.vue +++ b/src/views/system/mail/template/index.vue @@ -80,7 +80,6 @@ function handleCreate() { } function handleSend(record: Recordable) { - console.info(record) openSenModal(true, record) }