perf: handel should be handle

This commit is contained in:
fit2cloud-chenyw 2024-12-24 15:40:55 +08:00 committed by Craftsman
parent 2ccd374096
commit cfc2e0c51d
1 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@
class="w-full" class="w-full"
:option="options" :option="options"
:disabled="!hasAnyPermission(['PROJECT_BUG:READ+UPDATE']) || props.currentPlatform !== detailInfo.platform" :disabled="!hasAnyPermission(['PROJECT_BUG:READ+UPDATE']) || props.currentPlatform !== detailInfo.platform"
@change="handelFormCreateChange" @change="handleFormCreateChange"
/> />
<!-- 自定义字段结束 --> <!-- 自定义字段结束 -->
<div v-if="!props.isPlatformDefaultTemplate" class="baseItem"> <div v-if="!props.isPlatformDefaultTemplate" class="baseItem">
@ -173,7 +173,7 @@
} }
} }
const handelFormCreateChange = debounce(() => { const handleFormCreateChange = debounce(() => {
saveHandler(); saveHandler();
}, 300); }, 300);