Commit fdaba5cce1af0db9e542de628d24862e505e76b4

Authored by ww
1 parent 547ecf95

chore: drop console

... ... @@ -21,7 +21,6 @@ const validateValueRange = (_rule, value: Record<'min' | 'max', number>, _callba
21 21 };
22 22
23 23 const validateJSON = (_rule, value: ModelOfMatterParams[], _callback) => {
24   - console.log('validate json', value);
25 24 if (value.length) {
26 25 return Promise.resolve();
27 26 }
... ...
... ... @@ -34,7 +34,6 @@
34 34 let { width = 300, height = 150 } = unref(getOptions);
35 35 width = isNumber(width) ? (`${width}px` as unknown as number) : width;
36 36 height = isNumber(height) ? (`${height}px` as unknown as number) : height;
37   - console.log({ getOptions });
38 37 return { width, height } as CSSProperties;
39 38 });
40 39
... ...
... ... @@ -120,7 +120,6 @@
120 120 const index = unref(cameraList).findIndex((item) => item.id === record.id);
121 121 if (~index) unref(cameraList)[index].isTransform = true;
122 122 }
123   - console.log(unref(cameraList));
124 123 }
125 124 };
126 125
... ...