服装智能制造软件平台V3.0 http://182.92.169.222/hhxy/#/user/login
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

215 lines
8.2 KiB

<template>
<a-modal
:title="title"
:width="modalWidth"
:visible="visible"
:confirmLoading="confirmLoading"
@ok="handleOk"
@cancel="handleCancel"
cancelText="关闭"
>
<a-spin :spinning="confirmLoading">
<j-form-container :disabled="formDisabled">
<a-form-model ref="form" :model="model" :rules="validatorRules" slot="detail">
<a-row>
<a-col :span="12">
<a-form-model-item label="用户账号" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="nationality">
<a-input placeholder="请输入用户账号" v-model="model.username" :readOnly="!!model.id"/>
</a-form-model-item>
</a-col>
<a-col :span="12">
<a-form-model-item label="用户姓名" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="nationality">
<a-input placeholder="请输入用户姓名" v-model="model.realname" :readOnly="!!model.id" />
</a-form-model-item>
</a-col>
<a-col :span="12">
<a-form-model-item label="工号" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="nationality">
<a-input placeholder="请输入工号" v-model="model.workNo" :readOnly="!!model.id" />
</a-form-model-item>
</a-col>
<a-col :span="12">
<a-form-model-item label="生日" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-date-picker
style="width: 100%"
placeholder="请选择生日"
v-model="model.birthday"
:format="dateFormat"
:getCalendarContainer="node => node.parentNode"/>
</a-form-model-item>
</a-col>
<a-col :span="12">
<a-form-model-item label="性别" :labelCol="labelCol" :wrapperCol="wrapperCol">
<a-select v-model="model.sex" placeholder="请选择性别" :getPopupContainer= "(target) => target.parentNode">
<a-select-option :value="1">男</a-select-option>
<a-select-option :value="2">女</a-select-option>
</a-select>
</a-form-model-item>
</a-col>
<a-col :span="12">
<a-form-model-item label="邮箱" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="nationality">
<a-input placeholder="请输入邮箱" v-model="model.email" />
</a-form-model-item>
</a-col>
<a-col :span="12">
<a-form-model-item label="民族" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="nationality">
<j-search-select-tag v-model="model.nationality" dict="s_nation,nation,id" />
</a-form-model-item>
</a-col>
<a-col :span="12">
<a-form-model-item label="政治面貌" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="politicalStatus">
<j-dict-select-tag type="list" v-model="model.politicalStatus" dictCode="" placeholder="请选择政治面貌" />
</a-form-model-item>
</a-col>
<a-col :span="12">
<a-form-model-item label="专业" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="profession">
<a-input v-model="model.profession" placeholder="请输入专业" ></a-input>
</a-form-model-item>
</a-col>
<a-col :span="12">
<a-form-model-item label="学历" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="education">
<j-dict-select-tag type="list" v-model="model.education" dictCode="education" placeholder="请选择学历" />
</a-form-model-item>
</a-col>
<a-col :span="12">
<a-form-model-item label="学位" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="degree">
<j-dict-select-tag type="list" v-model="model.degree" dictCode="bachelor_science" placeholder="请选择学位" />
</a-form-model-item>
</a-col>
<a-col :span="12">
<a-form-model-item label="职称" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="professionalTitle">
<j-dict-select-tag type="list" v-model="model.professionalTitle" dictCode="professional_title" placeholder="请选择职称" />
</a-form-model-item>
</a-col>
<a-col :span="12">
<a-form-model-item label="联系人" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="contact">
<a-input v-model="model.contact" placeholder="请输入联系人" ></a-input>
</a-form-model-item>
</a-col>
<a-col :span="12">
<a-form-model-item label="紧急联系人" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="emergencyContact">
<a-input v-model="model.emergencyContact" placeholder="请输入紧急联系人" ></a-input>
</a-form-model-item>
</a-col>
<a-col :span="12">
<a-form-model-item label="参加工作时间" :labelCol="labelCol" :wrapperCol="wrapperCol" prop="joinWorkTime">
<j-date placeholder="请选择参加工作时间" v-model="model.joinWorkTime" style="width: 100%" />
</a-form-model-item>
</a-col>
</a-row>
</a-form-model>
</j-form-container>
</a-spin>
</a-modal>
</template>
<script>
import { httpAction, getAction } from '@/api/manage'
import { validateDuplicateValue } from '@/utils/util'
export default {
name: 'SeTeacherManageForm',
components: {
},
props: {
//表单禁用
disabled: {
type: Boolean,
default: false,
required: false
}
},
data () {
return {
title:"教师信息",
modalWidth:1200,
visible: false,
confirmLoading: false,
dateFormat:"YYYY-MM-DD",
model:{
},
validatorRules: {
contact: [
{ required: false},
{ pattern: /^1[3456789]\d{9}$/, message: '请输入正确的手机号码!'},
],
emergencyContact: [
{ required: false},
{ pattern: /^1[3456789]\d{9}$/, message: '请输入正确的手机号码!'},
],
},
labelCol: {
xs: { span: 12 },
sm: { span: 5 },
},
wrapperCol: {
xs: { span: 12 },
sm: { span: 16 },
},
url: {
show: "/teacherManage/seTeacherManage/show",
edit: "/teacherManage/seTeacherManage/edit",
queryById: "/teacherManage/seTeacherManage/queryById"
}
}
},
computed: {
formDisabled(){
return this.disabled
},
},
created () {
//备份model原始值
this.modelDefault = JSON.parse(JSON.stringify(this.model));
},
methods: {
show(id){
if(!id){
this.$message.warning("当前系统无登录用户!");
return
}else{
getAction(this.url.queryById, {"id": id}).then((res) => {
if (res.success) {
console.log(res.result)
this.model = Object.assign({}, res.result);
} else {
this.$message.error(res.message);
}
});
//this.form.resetFields();
this.visible = true;
}
},
handleOk () {
const that = this;
// 触发表单验证
this.$refs.form.validate(valid => {
if (valid) {
that.confirmLoading = true;
httpAction(this.url.edit,this.model,"put").then((res)=>{
if(res.success){
that.$message.success(res.result);
that.$emit('ok');
}else{
that.$message.warning(res.message);
}
}).finally(() => {
that.confirmLoading = false;
})
}
})
},
handleCancel () {
this.close()
},
close () {
this.$emit('close');
this.visible = false;
this.disableSubmit = false;
this.selectedRole = [];
},
}
}
</script>