del: 移除debugger标记
This commit is contained in:
@@ -187,7 +187,6 @@ function beforeRequest(options: OptionsType): OptionsType | Promise<any> {
|
|||||||
const separator = options.url.includes('?') ? '&' : '?';
|
const separator = options.url.includes('?') ? '&' : '?';
|
||||||
// 请求加密
|
// 请求加密
|
||||||
if (options.crypto) {
|
if (options.crypto) {
|
||||||
debugger;
|
|
||||||
const data = encryptAES(JSON.stringify(paramStr), APP_DATA_API_KEY);
|
const data = encryptAES(JSON.stringify(paramStr), APP_DATA_API_KEY);
|
||||||
options.url += `${separator}data=${encodeURIComponent(data)}`;
|
options.url += `${separator}data=${encodeURIComponent(data)}`;
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
@@ -425,8 +425,6 @@ function fnGetList(pageNum?: number) {
|
|||||||
(queryParams.pageNum - 1) * tablePagination.pageSize &&
|
(queryParams.pageNum - 1) * tablePagination.pageSize &&
|
||||||
queryParams.pageNum !== 1
|
queryParams.pageNum !== 1
|
||||||
) {
|
) {
|
||||||
debugger;
|
|
||||||
|
|
||||||
tableState.loading = false;
|
tableState.loading = false;
|
||||||
fnGetList(queryParams.pageNum - 1);
|
fnGetList(queryParams.pageNum - 1);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -838,7 +838,6 @@ function fnRecordExport(type: string = 'txt') {
|
|||||||
let content = '';
|
let content = '';
|
||||||
if (type == 'txt') {
|
if (type == 'txt') {
|
||||||
for (const row of rows) {
|
for (const row of rows) {
|
||||||
debugger;
|
|
||||||
const epsDat = [
|
const epsDat = [
|
||||||
row.epsFlag,
|
row.epsFlag,
|
||||||
row.epsOdb,
|
row.epsOdb,
|
||||||
|
|||||||
@@ -193,7 +193,6 @@ function fnTableSelectedRows(
|
|||||||
_: (string | number)[],
|
_: (string | number)[],
|
||||||
rows: Record<string, string>[]
|
rows: Record<string, string>[]
|
||||||
) {
|
) {
|
||||||
//debugger
|
|
||||||
tableState.selectedRowKeys = rows.map(item => item.loginId);
|
tableState.selectedRowKeys = rows.map(item => item.loginId);
|
||||||
// 针对单个登录账号解锁
|
// 针对单个登录账号解锁
|
||||||
if (rows.length === 1) {
|
if (rows.length === 1) {
|
||||||
|
|||||||
Reference in New Issue
Block a user