|
@@ -23,11 +23,11 @@
|
|
|
</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" 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.id !== 25 && item.type !== 2 && item.type !== 9 && item.type !== 11 && item.type !== 12)" :key="item.id">
|
|
|
+ <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>
|
|
|
</el-checkbox-group>
|
|
@@ -279,7 +279,7 @@ export default {
|
|
|
if (!a) return
|
|
|
let array = []
|
|
|
this.formConfigList.forEach(item => {
|
|
|
- (item.id === 1 || item.id === 25 || item.type === 2 || item.type === 9 || item.type === 11 || item.type === 12) &&
|
|
|
+ (item.id === 1 || item.type === 2 || item.type === 9 || item.type === 11 || item.type === 12) &&
|
|
|
array.push(item)
|
|
|
})
|
|
|
this.form.checkList.forEach(item => {
|