|
|
|
|
@ -1,5 +1,5 @@
|
|
|
|
|
<template>
|
|
|
|
|
<el-dialog :title="title" :visible.sync="dialogFormVisible" width="500px" :before-close="handleClose">
|
|
|
|
|
<el-dialog :title="title+'职务'" :visible.sync="dialogFormVisible" width="500px" :before-close="handleClose">
|
|
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
|
|
|
|
|
<el-form-item label="编码:" prop='postNum'>
|
|
|
|
|
<el-input ref="postNum" v-focus v-model="form.postNum" autocomplete="on" style="width:200px"></el-input>
|
|
|
|
|
@ -79,7 +79,7 @@ export default {
|
|
|
|
|
//返回方法
|
|
|
|
|
callbackFun(res) {
|
|
|
|
|
if (res.code == "000000") {
|
|
|
|
|
this.dialogFormVisible = false
|
|
|
|
|
this.dialogFormVisible = false;
|
|
|
|
|
this.$message.success({ message: this.title + "成功" });
|
|
|
|
|
this.$emit("editData");
|
|
|
|
|
this.close();
|
|
|
|
|
|