diff --git a/src/plugins/http-fetch.ts b/src/plugins/http-fetch.ts index e1205c68..df9da37b 100644 --- a/src/plugins/http-fetch.ts +++ b/src/plugins/http-fetch.ts @@ -187,7 +187,6 @@ function beforeRequest(options: OptionsType): OptionsType | Promise { const separator = options.url.includes('?') ? '&' : '?'; // 请求加密 if (options.crypto) { - debugger; const data = encryptAES(JSON.stringify(paramStr), APP_DATA_API_KEY); options.url += `${separator}data=${encodeURIComponent(data)}`; } else { diff --git a/src/views/configManage/softwareManage/index.vue b/src/views/configManage/softwareManage/index.vue index 0ec309e4..d9867444 100644 --- a/src/views/configManage/softwareManage/index.vue +++ b/src/views/configManage/softwareManage/index.vue @@ -425,8 +425,6 @@ function fnGetList(pageNum?: number) { (queryParams.pageNum - 1) * tablePagination.pageSize && queryParams.pageNum !== 1 ) { - debugger; - tableState.loading = false; fnGetList(queryParams.pageNum - 1); } diff --git a/src/views/neUser/sub/index.vue b/src/views/neUser/sub/index.vue index a220d3bb..0b14e595 100644 --- a/src/views/neUser/sub/index.vue +++ b/src/views/neUser/sub/index.vue @@ -838,7 +838,6 @@ function fnRecordExport(type: string = 'txt') { let content = ''; if (type == 'txt') { for (const row of rows) { - debugger; const epsDat = [ row.epsFlag, row.epsOdb, diff --git a/src/views/system/log/login/index.vue b/src/views/system/log/login/index.vue index aaf15eee..b64e33f7 100644 --- a/src/views/system/log/login/index.vue +++ b/src/views/system/log/login/index.vue @@ -193,7 +193,6 @@ function fnTableSelectedRows( _: (string | number)[], rows: Record[] ) { - //debugger tableState.selectedRowKeys = rows.map(item => item.loginId); // 针对单个登录账号解锁 if (rows.length === 1) {