fix: 修复Typos

This commit is contained in:
wangdan-fit2cloud 2024-09-02 15:59:59 +08:00 committed by wangdan-fit2cloud
parent 78aa24460a
commit ca66fc99e5

View File

@ -1,8 +1,8 @@
<template>
<el-drawer v-model="dubugVisible" size="60%" :append-to-body="true">
<el-drawer v-model="debugVisible" size="60%" :append-to-body="true">
<template #header>
<div class="flex align-center" style="margin-left: -8px">
<el-button class="cursor mr-4" link @click.prevent="dubugVisible = false">
<el-button class="cursor mr-4" link @click.prevent="debugVisible = false">
<el-icon :size="20">
<Back />
</el-icon>
@ -72,7 +72,7 @@ import type { FormInstance } from 'element-plus'
const FormRef = ref()
const loading = ref(false)
const dubugVisible = ref(false)
const debugVisible = ref(false)
const showResult = ref(false)
const isSuccess = ref(false)
const result = ref('')
@ -83,7 +83,7 @@ const form = ref<any>({
input_field_list: []
})
watch(dubugVisible, (bool) => {
watch(debugVisible, (bool) => {
if (!bool) {
showResult.value = false
isSuccess.value = false
@ -140,7 +140,7 @@ const open = (data: any) => {
}
form.value.code = data.code
form.value.input_field_list = data.input_field_list
dubugVisible.value = true
debugVisible.value = true
}
defineExpose({