|
@@ -4,7 +4,7 @@
|
|
|
* @Autor: XuTongZhang
|
|
|
* @Date: 2020-07-28 16:24:44
|
|
|
* @LastEditors : yuanrunwei
|
|
|
- * @LastEditTime : 2021-04-08 17:19:06
|
|
|
+ * @LastEditTime : 2021-04-29 16:38:18
|
|
|
-->
|
|
|
<template>
|
|
|
<div class="indexPage">
|
|
@@ -23,12 +23,12 @@
|
|
|
</el-form-item>
|
|
|
<el-form-item :label="state!==2?$t('message.selectTheRequiredFormItem'):$t('message.selectedFormItem')" prop="checkList">
|
|
|
<div v-if="state!==2">{{$t('message.longFormMessage')}}</div>
|
|
|
- <div v-if="state!==2" style="font-size:12px;color:#999;">姓名,性别,学历,联系电话,邮箱地址默认为已勾选项!</div>
|
|
|
+ <div v-if="state!==2&&companyType===0" style="font-size:12px;color:#999;">姓名,性别,学历,联系电话,邮箱地址默认为已勾选项!</div>
|
|
|
<el-checkbox v-if="state!==2" :indeterminate="isIndeterminate" v-model="checkAll" @change="handleCheckAllChange">{{$t('button.selectAll')}}</el-checkbox>
|
|
|
<div v-if="state!==2" style="margin: 15px 0;"></div>
|
|
|
<el-checkbox-group v-if="state!==2" v-model="form.checkList" @change="handleCheckedCitiesChange">
|
|
|
- <div v-for="item in formConfigList.filter(item => item.id !== 1 && item.type !== 2 && item.type !== 9 && item.type !== 11 && item.type !== 12)" :key="item.id">
|
|
|
- <el-checkbox :label="item.id">{{item.configName + ' ' + ( [0, 11, 12, 17, 19].includes(item.type) ? $t('info.singleLineInputBox') : item.type === 1 ? $t('info.multiLineInputBox') :item.type === 8 ? $t('info.upload') : $t('info.dropDownSelectionBox'))}}</el-checkbox>
|
|
|
+ <div v-for="item in formConfigList" :key="item.id">
|
|
|
+ <el-checkbox :label="item.id" :disabled="companyType===0&&[ 1, 2, 20, 4, 5 ].indexOf(item.id)>-1">{{item.configName + ' ' + ( [0, 11, 12, 17, 19].includes(item.type) ? $t('info.singleLineInputBox') : item.type === 1 ? $t('info.multiLineInputBox') :item.type === 8 ? $t('info.upload') : $t('info.dropDownSelectionBox'))}}</el-checkbox>
|
|
|
</div>
|
|
|
</el-checkbox-group>
|
|
|
<div v-else>
|
|
@@ -118,6 +118,7 @@ export default {
|
|
|
}
|
|
|
return {
|
|
|
tableList: [],
|
|
|
+ companyType: JSON.parse(sessionStorage.getItem('info')).companyType,
|
|
|
educationList: [{ name: this.$t('info.juniorCollege') }, { name: this.$t('info.undergraduate') }, { name: this.$t('info.masterSDegree') }, { name: this.$t('info.phD') }, { name: this.$t('info.other') }],
|
|
|
experienceList: [{ name: '1年以内工作经验' }, { name: '1-3年工作经验' }, { name: '3-5年工作经验' }, { name: '5-10年工作经验' }, { name: '10年以上工作经验' }],
|
|
|
dialogFormVisible: false,
|
|
@@ -243,6 +244,7 @@ export default {
|
|
|
this.open()
|
|
|
this.info = {}
|
|
|
this.state = 0
|
|
|
+ this.companyType === 0 && this.form.checkList.push(...[1, 2, 20, 4, 5])
|
|
|
},
|
|
|
getDetails (row) {
|
|
|
let reqdata = {
|
|
@@ -256,6 +258,8 @@ export default {
|
|
|
this.open()
|
|
|
this.form = res.object
|
|
|
this.$set(this.form, 'checkList', JSON.parse(res.object.formConfig).map(item => item.id))
|
|
|
+ this.companyType === 0 && this.form.checkList.push(...[1, 2, 20, 4, 5])
|
|
|
+ this.form.checkList = Array.from(new Set(this.form.checkList))
|
|
|
})
|
|
|
},
|
|
|
details (row) {
|
|
@@ -300,10 +304,6 @@ export default {
|
|
|
})
|
|
|
if (!a) return
|
|
|
let array = []
|
|
|
- this.formConfigList.forEach(item => {
|
|
|
- (item.id === 1 || item.type === 2 || item.type === 9 || item.type === 11 || item.type === 12) &&
|
|
|
- array.push(item)
|
|
|
- })
|
|
|
this.form.checkList.forEach(item => {
|
|
|
array.push(this.formConfigList.find(i => i.id === item))
|
|
|
})
|
|
@@ -337,6 +337,8 @@ export default {
|
|
|
},
|
|
|
handleCheckAllChange (val) {
|
|
|
this.$set(this.form, 'checkList', val ? this.formConfigList.map(item => item.id) : [])
|
|
|
+ this.companyType === 0 && this.form.checkList.push(...[1, 2, 20, 4, 5])
|
|
|
+ this.form.checkList = Array.from(new Set(this.form.checkList))
|
|
|
this.isIndeterminate = false
|
|
|
},
|
|
|
handleCheckedCitiesChange (value) {
|