Commit 50f4e654 authored by 王启林's avatar 王启林
parents 692d181d c95526da
...@@ -4,36 +4,83 @@ ...@@ -4,36 +4,83 @@
:title="title" :title="title"
:visible.sync="open" :visible.sync="open"
:direction="direction" :direction="direction"
size="50%"> size="50%"
<el-form ref="form" :model="form" :rules="rules" label-width="120px" style="padding:20px"> >
<el-form
ref="form"
:model="form"
:rules="rules"
label-width="120px"
style="padding:20px"
>
<el-row> <el-row>
<Field v-if="from == 'job'" label="分组" prop="groupId" v-model="form.groupId" <Field
:enumData="dict.group" type="select" placeholder="请选择分组"/> v-if="from == 'job'"
label="分组"
prop="groupId"
v-model="form.groupId"
:enumData="dict.group"
type="select"
placeholder="请选择分组"
/>
<Field label="分组名称" prop="groupName" v-model="form.groupName" placeholder="请输入分组名称" :maxLength="10" v-if="from == 'group'"/> <Field
label="分组名称"
prop="groupName"
v-model="form.groupName"
placeholder="请输入分组名称"
:maxLength="10"
v-if="from == 'group'"
/>
<Field label="职位编码" prop="jobCode" :maxLength="10" v-model="form.jobCode" placeholder="请输入职位编码" v-if="from == 'job'"/> <Field
<Field label="职位名称" prop="jobName" :maxLength="10" v-model="form.jobName" placeholder="请输入职位名称" v-if="from == 'job'" /> label="职位编码"
prop="jobCode"
:maxLength="10"
v-model="form.jobCode"
placeholder="请输入职位编码"
v-if="from == 'job'"
/>
<Field
label="职位名称"
prop="jobName"
:maxLength="10"
v-model="form.jobName"
placeholder="请输入职位名称"
v-if="from == 'job'"
/>
<Field label="类型" disabled prop="type" v-model="form.type" type="select" :enumData="dict.type" placeholder="请选择类型"/> <Field
<Field label="备注" prop="remark" :maxLength="50" v-model="form.remark" type="textarea" placeholder="请输入备注"/> label="类型"
disabled
prop="type"
v-model="form.type"
type="select"
:enumData="dict.type"
placeholder="请选择类型"
/>
<Field
label="备注"
prop="remark"
:maxLength="50"
v-model="form.remark"
type="textarea"
placeholder="请输入备注"
/>
</el-row> </el-row>
<form-buttons @submit='submitForm' noCancelBtn /> <form-buttons @submit="submitForm" noCancelBtn />
</el-form> </el-form>
</el-drawer> </el-drawer>
</template> </template>
<script> <script>
import form from "@/assets/mixins/formdialog"; import form from "@/assets/mixins/formdialog";
export default { export default {
name: "JobDetail", name: "JobDetail",
mixins: [form], mixins: [form],
components: { components: {},
},
created() { created() {
this.changePath("job") this.changePath("job");
}, },
data() { data() {
return { return {
...@@ -43,48 +90,46 @@ ...@@ -43,48 +90,46 @@
title: "职位信息", title: "职位信息",
// 是否显示弹出层 // 是否显示弹出层
open: false, open: false,
direction:"rtl", direction: "rtl",
toString:[ toString: [],
], toDate: [],
toDate:[
],
// 表单校验 // 表单校验
rules: { rules: {
groupId: [{ required: true, message: "请选择分组", trigger: "change" }],
}, },
from:'' from: "",
}; };
}, },
methods: { methods: {
/** 编辑 */ /** 编辑 */
edit(from,row) { edit(from, row) {
this.reset() this.reset();
this.query = { id: row.id }; this.query = { id: row.id };
this.urls.currUrl ="job/edit"; this.urls.currUrl = "job/edit";
this.getData(); this.getData();
this.pageInfo.type="edit" this.pageInfo.type = "edit";
this.from = from this.from = from;
this.title = from === 'group'?"修改分组信息":'修改职位信息'; this.title = from === "group" ? "修改分组信息" : "修改职位信息";
}, },
/** 新增 */ /** 新增 */
add(row) { add(row) {
console.log(row,'添加') console.log(row, "添加");
this.from = row this.from = row;
this.title = row === 'group'?"新增分组信息":'新增职位信息'; this.title = row === "group" ? "新增分组信息" : "新增职位信息";
this.reset() this.reset();
this.urls.currUrl = "job/add"; this.urls.currUrl = "job/add";
this.getData(); this.getData();
this.pageInfo.type="add" this.pageInfo.type = "add";
}, },
/** 查看*/ /** 查看*/
view(row) { view(row) {
this.reset() this.reset();
this.query = { id: row.id }; this.query = { id: row.id };
this.urls.currUrl ="job/view"; this.urls.currUrl = "job/view";
this.getData(); this.getData();
this.pageInfo.type="view" this.pageInfo.type = "view";
this.title = "职位信息详细"; this.title = "职位信息详细";
}, },
/**取消按钮 */ /**取消按钮 */
...@@ -93,12 +138,11 @@ ...@@ -93,12 +138,11 @@
}, },
/**获取数据后弹框 */ /**获取数据后弹框 */
afterRender(data) { afterRender(data) {
// 固定新增类型 // 固定新增类型
if(this.from == 'group'){ if (this.from == "group") {
this.form.type = '1' this.form.type = "1";
}else{ } else {
this.form.type = '2' this.form.type = "2";
} }
this.open = true; this.open = true;
}, },
...@@ -110,11 +154,11 @@ ...@@ -110,11 +154,11 @@
// 表单重置 // 表单重置
reset() { reset() {
this.form = { this.form = {
groupId : null, groupId: null,
groupName : "", groupName: "",
jobCode : "", jobCode: "",
jobName : "", jobName: "",
remark : "", remark: "",
}; };
this.resetForm("form"); this.resetForm("form");
}, },
...@@ -124,5 +168,5 @@ ...@@ -124,5 +168,5 @@
} }
}, },
}, },
}; };
</script> </script>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment