Commit b302b1b14b1ca1ec8210961f6f22ce9f07edbb40

Authored by ww
1 parent fabfe9f6

chore: drop console

... ... @@ -90,7 +90,6 @@
90 90 };
91 91
92 92 const handleOpenTbDeviceDetail = (data: { id: string; tbDeviceId: string }) => {
93   - console.log('component enter');
94 93 emit('openTbDeviceDetail', data);
95 94 };
96 95 return {
... ...
... ... @@ -69,12 +69,10 @@
69 69
70 70 const handleGetTbDeviceId = async (record) => {
71 71 try {
72   - // console.log(record);
73 72 const res = await getTbDeviceId(record.tbDeviceId);
74 73 if (res && res.id) {
75 74 emit('openTbDeviceDetail', { id: res.id, tbDeviceId: res.tbDeviceId });
76 75 }
77   - // console.log(res);
78 76 } catch (error) {}
79 77 };
80 78 return {
... ...
... ... @@ -325,7 +325,6 @@
325 325 };
326 326
327 327 const handleOpenTbDeviceDetail = (data: { id: string; tbDeviceId: string }) => {
328   - console.log('enter');
329 328 openTbDeviceDrawer(true, data);
330 329 };
331 330
... ...