修复编辑节点回车页面刷新
This commit is contained in:
parent
457ee06b87
commit
4687f01425
|
@ -7,12 +7,12 @@
|
|||
|
||||
<el-row type="flex" justify="center">
|
||||
<el-col :span="18">
|
||||
<el-form :model="form" :rules="rules" ref="nodeForm">
|
||||
<el-form :model="form" :rules="rules" ref="nodeForm" @submit.native.prevent>
|
||||
<el-form-item
|
||||
:label="$t('test_track.module.name')"
|
||||
:label-width="formLabelWidth"
|
||||
prop="name">
|
||||
<el-input v-model="form.name" autocomplete="off"></el-input>
|
||||
<el-input v-model="form.name"></el-input>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</el-col>
|
||||
|
|
|
@ -13,8 +13,6 @@
|
|||
@cancel="executorEditVisible = false"
|
||||
@confirm="saveExecutor"/>
|
||||
</template>
|
||||
|
||||
|
||||
</el-dialog>
|
||||
|
||||
</template>
|
||||
|
|
|
@ -2,7 +2,6 @@
|
|||
<div>
|
||||
|
||||
<el-drawer
|
||||
:before-close="handleClose"
|
||||
:visible.sync="showDialog"
|
||||
:with-header="false"
|
||||
:modal-append-to-body="false"
|
||||
|
|
Loading…
Reference in New Issue