el-form表单按回车键后页面刷新并且URL上面多了一个问号

当表单中只有一个输入框的时候,输入数据按下回车键,页面会刷新,并在url上面多出一个问号,导致页面错误。

el-form表单按回车键后页面刷新并且URL上面多了一个问号_第1张图片
在这里插入图片描述

解决方案:

在el-form上面加上@submit.native.prevent
原因分析: form 元素中只有一个输入框时,在该输入框中按下回车默认是提交该表单。我们需要阻止这一默认行为。

<el-dialog
    class="unilumin-dialog"
    :title="isAddDepartment ? '新增部门' : '编辑部门'"
    :visible.sync="DepartmentDialogVisible"
    width="30%"
    :close-on-click-modal='false'>
    <div class="dialog-content">
      <el-form ref="DepartmentForm" :model="DepartmentForm" :rules="DepartmentFormRules" label-width="80px" @submit.native.prevent>
          <el-form-item class="block-item" label="名称" prop="name">
              <el-input v-model="DepartmentForm.name" size="small"></el-input>
          </el-form-item>
      </el-form>
    </div>
    <span slot="footer" class="dialog-footer">
        <el-button type="default" @click="cancel" size="medium" plain>取 消</el-button>
        <el-button type="success" @click="submitForm('DepartmentForm')" size="medium">确 定</el-button>
    </span>
</el-dialog>

你可能感兴趣的:(JavaScript,Vue,vue,javascript)