update: 去掉console.log

This commit is contained in:
admin 2024-07-25 14:30:20 +08:00
parent a32a81616b
commit d5fed6e7ff
2 changed files with 0 additions and 2 deletions

View File

@ -474,7 +474,6 @@ const handleDelete = (e: any) => {
};
const filesRef = ref();
const handleUpload = () => {
// console.log(event.tempFilePaths)
return filesRef.value[0].filesList.map((item: any, index: number) => {
if (item.fileID) {
return;

View File

@ -279,7 +279,6 @@ export function isTwoDecimalPlaces(num: any) {
const str = num.toString().replace(/[-]+/g, "");
// 分割整数部分和小数部分
const parts = str.split(".");
console.log(parts);
// 如果小数点后有两位数字返回true
return parts.length === 2 && parts[1].length > 2;
}