123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551 |
- <template>
- <div>
- <div class="description-title">
- <span>基本信息</span>
- </div>
- <el-form :model="form" :rules="rules" ref="ruleForm" label-width="0px">
- <div class="description-view">
- <table class="description-table">
- <tbody>
- <tr class="description-tr">
- <th class="description-label">姓名</th>
- <td class="description-content">
- <el-form-item prop="realName">
- <el-input v-model="form.realName" size="mini" placeholder="请输入姓名"/>
- </el-form-item>
- </td>
- <th class="description-label">手机号</th>
- <td class="description-content">
- <el-form-item prop="mobileNo">
- <el-input size="mini" v-model="form.mobileNo" placeholder="请输入手机号"/>
- </el-form-item>
- </td>
- <th class="description-label">微信号</th>
- <td class="description-content">
- <el-form-item prop="wechatNo">
- <el-input size="mini" v-model="form.wechatNo" placeholder="请输入微信号"/>
- </el-form-item>
- </td>
- </tr>
- <tr class="description-tr" v-for="(item, index) in educations" :key="index">
- <th class="description-label desc-item">
- <span class="close">
- <i v-if="index === 0" @click="addEducation" class="el-icon-circle-plus-outline"/>
- <i v-else @click="removeEducation(index)" class="el-icon-remove-outline"/>
- </span>学历</th>
- <td class="description-content">
- <el-form-item prop="level">
- <el-input v-model="educations[index].level" size="mini" placeholder="请输入学历"/>
- </el-form-item>
- </td>
- <th class="description-label">学校</th>
- <td class="description-content">
- <el-form-item prop="school">
- <el-input size="mini" v-model="educations[index].school" placeholder="请输入学校"/>
- </el-form-item>
- </td>
- <th class="description-label">毕业时间</th>
- <td class="description-content">
- <el-form-item prop="year">
- <el-date-picker
- type="month"
- placeholder="请选择毕业时间"
- size="mini"
- v-model="educations[index].year"
- />
- </el-form-item>
- </td>
- </tr>
- <tr class="description-tr">
- <th class="description-label">所在城市</th>
- <td class="description-content">
- <el-form-item prop="liveCity">
- <el-input size="mini" v-model.trim="form.liveCity" placeholder="请输入所在城市"/>
- </el-form-item>
- </td>
- <th class="description-label">工作意向</th>
- <td class="description-content">
- <el-form-item prop="intentionCity">
- <el-input size="mini" v-model.trim="form.intentionCity" placeholder="请输入工作意向"/>
- </el-form-item>
- </td>
- <th class="description-label">声部</th>
- <td class="description-content">
- <el-form-item prop="subjectId">
- <el-select
- v-model.trim="form.subjectId"
- clearable
- filterable
- size="mini"
- placeholder='请选择声部'
- >
- <el-option-group v-for="group in subjectList"
- :key="group.label"
- :label="group.label">
- <el-option v-for="item in group.options"
- :key="item.value"
- :label="item.label"
- :value="item.value">
- </el-option>
- </el-option-group>
- </el-select>
- </el-form-item>
- </td>
- </tr>
- <tr class="description-tr">
- <th class="description-label">是否经过评估</th>
- <td class="description-content">
- <el-form-item prop="isInterviewed">
- <el-select size="mini" v-model.trim="form.isInterviewed"
- clearable
- filterable
- placeholder="请选择是否经过评估">
- <el-option label="是"
- :value="true"></el-option>
- <el-option label="否"
- :value="false"></el-option>
- </el-select>
- </el-form-item>
- </td>
- <th class="description-label">其他综合情况</th>
- <td class="description-content" colspan="3">
- <el-form-item prop="otherComment">
- <el-input size="mini" v-model.trim="form.otherComment" placeholder="请输入其他综合情况"/>
- </el-form-item>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- <div class="description-title" style="margin-top: 20px">
- <span>在职信息</span>
- </div>
- <div class="description-view">
- <table class="description-table">
- <tbody>
- <tr class="description-tr">
- <th class="description-label">入职日期</th>
- <td class="description-content">
- <el-form-item prop="entryDate">
- <el-date-picker
- type="date"
- placeholder="选择入职日期"
- size="mini"
- v-model="form.entryDate"
- />
- </el-form-item>
- </td>
- <th class="description-label">职位</th>
- <td class="description-content">
- <el-form-item prop="position">
- <el-select v-model.trim="form.position"
- clearable
- filterable
- size="mini"
- placeholder="请选择职位">
- <el-option label="指导老师"
- value="ADVISER"></el-option>
- <el-option label="教务老师"
- value="ACADEMIC"></el-option>
- <el-option label="乐队指导"
- value="TEACHING"></el-option>
- </el-select>
- </el-form-item>
- </td>
- <th class="description-label">分部</th>
- <td class="description-content">
- <el-form-item prop="organId">
- <el-select v-model.trim="form.organId"
- placeholder='请选择分部'
- clearable
- filterable
- size="mini"
- >
- <el-option v-for='(item,index) in organList'
- :key="index"
- :value="item.id"
- :label="item.name"
- >
- </el-option>
- </el-select>
- </el-form-item>
- </td>
- </tr>
- <tr class="description-tr">
- <th class="description-label">员工类型</th>
- <td class="description-content">
- <el-form-item prop="jobNature">
- <el-select size="mini" v-model.trim="form.jobNature"
- clearable
- filterable
- placeholder="请选择员工类型">
- <el-option label="全职"
- value="FULL_TIME"></el-option>
- <el-option label="兼职"
- value="PART_TIME"></el-option>
- <el-option label="临时"
- value="TEMPORARY"></el-option>
- </el-select>
- </el-form-item>
- </td>
- <th class="description-label">员工状态</th>
- <td class="description-content">
- <el-form-item prop="isProbationPeriod">
- <el-select size="mini" v-model.trim="form.isProbationPeriod"
- clearable
- filterable
- placeholder="请选择员工状态">
- <el-option label="正式"
- :value="true"></el-option>
- <el-option label="试用"
- :value="false"></el-option>
- </el-select>
- </el-form-item>
- </td>
- <th class="description-label">离职日期</th>
- <td class="description-content">
- <el-form-item prop="resignationDate">
- <el-date-picker
- type="date"
- placeholder="选择离职日期"
- size="mini"
- v-model="form.resignationDate"
- />
- </el-form-item>
- </td>
- </tr>
- <tr class="description-tr">
- <th class="description-label">证件号码</th>
- <td class="description-content" colspan="5">
- <el-form-item prop="idCard">
- <el-input size="mini" v-model="form.idCard" placeholder="请输入证件号码"/>
- </el-form-item>
- </td>
- </tr>
- <tr class="description-tr">
- <th class="description-label">年龄</th>
- <td class="description-content">
- <el-form-item prop="age">
- <el-input v-model="form.age" size="mini" placeholder="请输入年龄"/>
- </el-form-item>
- </td>
- <th class="description-label">性别</th>
- <td class="description-content" colspan="3">
- <el-form-item prop="gender">
- <el-select size="mini" v-model.trim="form.gender"
- clearable
- filterable
- placeholder="请选择性别">
- <el-option label="男"
- :value="true"></el-option>
- <el-option label="女"
- :value="false"></el-option>
- </el-select>
- </el-form-item>
- </td>
- </tr>
- <tr class="description-tr">
- <th class="description-label">开户行</th>
- <td class="description-content">
- <el-form-item prop="bankAddress">
- <el-input size="mini" v-model="form.bankAddress" placeholder="请输入开户行"/>
- </el-form-item>
- </td>
- <th class="description-label">银行卡号</th>
- <td class="description-content" colspan="3">
- <el-form-item prop="bankCardNo">
- <el-input size="mini" v-model="form.bankCardNo" placeholder="请输入银行卡号"/>
- </el-form-item>
- </td>
- </tr>
- <tr class="description-tr">
- <th class="description-label">紧急联系人姓名</th>
- <td class="description-content">
- <el-form-item prop="emergencyContactName">
- <el-input size="mini" v-model.trim="form.emergencyContactName" placeholder="请输入紧急联系人姓名"/>
- </el-form-item>
- </td>
- <th class="description-label">紧急联系人关系</th>
- <td class="description-content">
- <el-form-item prop="emergencyContactRelation">
- <el-input size="mini" v-model.trim="form.emergencyContactRelation" placeholder="请输入紧急联系人关系"/>
- </el-form-item>
- </td>
- <th class="description-label">紧急联系人电话</th>
- <td class="description-content">
- <el-form-item prop="emergencyContactPhone">
- <el-input size="mini" v-model.trim="form.emergencyContactPhone" placeholder="请输入紧急联系人电话"/>
- </el-form-item>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- </el-form>
- <span class="dialog-footer">
- <el-button @click="close('ruleForm')">取 消</el-button>
- <el-button type="primary" class="main-button" @click="onTypeSubmit('ruleForm')">确 定</el-button>
- </span>
- </div>
- </template>
- <script>
- // import Vue from 'vue'
- import { employeeCreate, employeeUpdate } from '@/api/appTenant'
- import Descriptions from '@/components/Descriptions'
- // Vue.use(Descriptions)
- export default {
- name: 'hrform',
- props: ['detail', 'subjectList', 'organList', 'close'],
- components: {
- descriptions: Descriptions
- },
- data() {
- return {
- realName: '',
- form: {
- age: '',
- bankAddress: '',
- bankCardNo: '',
- birthdate: '',
- educationalBackground: '',
- emergencyContactName: '',
- emergencyContactPhone: '',
- emergencyContactRelation: '',
- entryDate: '',
- gender: true,
- idCard: '',
- intentionCity: '',
- isInterviewed: true,
- isProbationPeriod: true,
- jobNature: '',
- liveCity: '',
- mobileNo: '',
- otherComment: '',
- position: '',
- realName: '',
- resignationDate: '',
- subjectId: '',
- wechatNo: '',
- organId: '',
- },
- rules: {
- age: [
- { required: true, message: '请输入年龄', trigger: 'blur' },
- ],
- bankAddress: [
- { required: true, message: '请输入开户行', trigger: 'blur' },
- ],
- bankCardNo: [
- { required: true, message: '请输入卡号', trigger: 'blur' },
- ],
- birthdate: [
- { required: true, message: '请输入生日', trigger: 'blur' },
- ],
- // bankAddress: [
- // { required: true, message: '请输入年龄', trigger: 'blur' },
- // ],
- emergencyContactName: [
- { required: true, message: '请输入紧急联系人姓名', trigger: 'blur' },
- ],
- emergencyContactPhone: [
- { required: true, message: '请输入紧急联系人电话', trigger: 'blur' },
- ],
- emergencyContactRelation: [
- { required: true, message: '请输入紧急联系人关系', trigger: 'blur' },
- ],
- entryDate: [
- { required: true, message: '请输入入职日期', trigger: 'blur' },
- ],
- gender: [
- { required: true, message: '请选择性别', trigger: 'blur' },
- ],
- idCard: [
- { required: true, message: '请输入证件号码', trigger: 'blur' },
- ],
- intentionCity: [
- { required: true, message: '请输入工作意向', trigger: 'blur' },
- ],
- isInterviewed: [
- { required: true, message: '请选择是否经过评估', trigger: 'blur' },
- ],
- isProbationPeriod: [
- { required: true, message: '请选择员工状态', trigger: 'blur' },
- ],
- jobNature: [
- { required: true, message: '请选择员工类型', trigger: 'blur' },
- ],
- liveCity: [
- { required: true, message: '请输入所在城市', trigger: 'blur' },
- ],
- mobileNo: [
- { required: true, message: '请输入手机号', trigger: 'blur' },
- ],
- otherComment: [
- { required: true, message: '请输入其他综合情况', trigger: 'blur' },
- ],
- position: [
- { required: true, message: '请输入职位', trigger: 'blur' },
- ],
- realName: [
- { required: true, message: '请输入姓名', trigger: 'blur' },
- ],
- resignationDate: [
- { required: true, message: '请选择离职日期', trigger: 'blur' },
- ],
- subjectId: [
- { required: true, message: '请选择声部', trigger: 'blur' },
- ],
- organId: [
- { required: true, message: '请选择分部', trigger: 'blur' },
- ],
- wechatNo: [
- { required: true, message: '请输入微信号', trigger: 'blur' },
- ],
- level: [
- { required: true, message: '请输入学历', trigger: 'blur' },
- ],
- school: [
- { required: true, message: '请输入学校', trigger: 'blur' },
- ],
- year: [
- { required: true, message: '请选择毕业时间', trigger: 'blur' },
- ],
- },
- educations: [{level: '', school: '', year: ''}]
- }
- },
- watch: {
- detail() {
- this.updateData()
- },
- },
- mounted() {
- this.updateData()
- },
- methods: {
- updateData() {
- if (this.detail) {
- this.form = Object.assign({}, this.detail)
- try {
- this.educations = JSON.parse(this.detail.educationalBackground)
- if (!this.educations.length) {
- this.educations = [{level: '', school: '', year: ''}]
- }
- } catch (error) {}
- } else {
- this.educations = [{level: '', school: '', year: ''}]
- }
- },
- addEducation() {
- this.educations = [...this.educations, {level: '', school: '', year: ''}]
- },
- removeEducation(index) {
- this.educations[index] = null
- this.educations = this.educations.filter(item => !!item)
- },
- onTypeSubmit() {
- this.$refs['ruleForm'].validate(valid => {
- if (valid) {
- const { $message } = this
- this.form.educationalBackground = JSON.stringify(this.educations)
- if (this.detail) {
- employeeUpdate(Object.assign({id: this.detail.id}, this.form))
- .then(res => {
- if (res.code === 200) {
- $message.success('修改成功')
- this.close('ruleForm')
- }
- })
- } else {
- employeeCreate(this.form)
- .then(res => {
- if (res.code === 200) {
- $message.success('创建成功')
- this.close('ruleForm')
- }
- })
- }
- }
- })
- }
- }
- }
- </script>
- <style lang="less" scoped>
- .desc-item{
- position: relative;
- .close{
- position: absolute;
- left: 10px;
- cursor: pointer;
- }
- }
- .main-button{
- background-color: #14928a;
- border-color: #14928a;
- }
- .dialog-footer{
- display: block;
- text-align: right;
- margin-top: 20px;
- }
- .description-title {
- margin-bottom: 20px;
- color: rgba(0,0,0,.85);
- font-weight: 700;
- font-size: 16px;
- line-height: 1.5;
- }
- .description-view {
- width: 100%;
- border: 1px solid #e8e8e8;
- }
- .description-view .description-table {
- width: 100%;
- /* border: 1px solid #e8e8e8; */
- border-collapse: collapse;
- table-layout: fixed;
- }
- .description-view .description-tr {
- border-bottom: 1px solid #e8e8e8;
- width: 100%;
- }
- .description-view .description-tr:last-child {
- border-bottom: none;
- }
- .description-view .description-label {
- border-right: 1px solid #e8e8e8;
- background-color: #fafafa;
- color: rgba(0, 0, 0, 0.85);
- font-weight: 400;
- font-size: 14px;
- line-height: 22px;
- /* margin-right: 8px; */
- padding: 12px 16px;
- white-space: nowrap;
- display: table-cell;
- }
- .description-view .description-label:after {
- content: ""; /** content: ":" */
- margin: 0 8px 0 2px;
- position: relative;
- top: -0.5px;
- }
- .description-view .description-content {
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- border-right: 1px solid #e8e8e8;
- font-size: 14px;
- line-height: 1.5;
- padding: 12px 16px;
- padding-bottom: 0;
- color: rgba(0, 0, 0, 0.65);
- display: table-cell;
- }
- .description-tr .description-content:last-child {
- border-right: none;
- }
- </style>
|