style: 移除l部分无用的log输出

This commit is contained in:
TsMask
2025-01-15 21:07:17 +08:00
parent 96acbc0919
commit 74b55423d5
5 changed files with 16 additions and 11 deletions

View File

@@ -129,7 +129,7 @@ async function fnGetList(reload: boolean = false) {
const res = await listAllNeInfo({ bandStatus: true });
tableState.data = res.data;
} catch (error) {
console.log(error);
console.error(error);
tableState.data = [];
}
tableState.loading = false;

View File

@@ -125,7 +125,6 @@ let tableColumns = ref<ColumnsType>([
width: 150,
customRender(opt) {
const record = opt.value;
console.log(opt);
if (record.state === 'OFF') {
return record.offTime || '-';
}

View File

@@ -438,7 +438,6 @@ function fnModalCancel() {
* 选择性能指标,填充进当前计算公式的值
*/
function fnSelectPer(s: any, option: any) {
console.log(option);
modalState.from.expression += `'${option.label}'`;
}

View File

@@ -532,7 +532,7 @@ function fnModalVisibleByVive(id: string | number) {
/**对话框tab查看 */
function fnViveTab(action: any) {
console.log('fnViveTab', action);
// console.log('fnViveTab', action);
if (modalState.viewFrom.action === action) return;
modalState.viewFrom.action = action;
modalState.viewFrom.content = '';